Packageorg.pranaframework.utils
Classpublic class HtmlUtils



Public Methods
 MethodDefined by
  
parseTables(html:String):String
[static] parseTables
Parses tables with the Parse class and outputs String fit for use as htmlText.
No support for nested tables.
Ignores errors thrown by Parse.
HtmlUtils
Public Constants
 ConstantDefined by
  BR : String = "<BR>"
[static] string used for newline (<BR> or \n work best)
HtmlUtils
  TAB : String = "<TAB>"
[static] string used for tab (<TAB> or \t work best)
HtmlUtils
Method detail
parseTables()method
public static function parseTables(html:String):String

parseTables
Parses tables with the Parse class and outputs String fit for use as htmlText.
No support for nested tables.
Ignores errors thrown by Parse.

Parameters
html:String — String with <table> notation

Returns
String — String with <TEXTFORMAT> notation
Constant detail
BRconstant
public static const BR:String = "<BR>"

string used for newline (<BR> or \n work best)

TABconstant 
public static const TAB:String = "<TAB>"

string used for tab (<TAB> or \t work best)