==== htmlTableToRowSet ====

^ Name			^ Type			^ Description ^
| html 			| STRING 		| The HTML document being converted.  | 
| nullable 		| BOOLEAN 		| When TRUE, empty elements of the returned JSON will be set as NULLs. |
| columnNames 		| ARRAY[] 		| A list of column names being used in the result.|
| matchColNames 	| BOOLEAN 		| Indicates to match the column names list by header names. The names must be represented using camel case convention, for example 'Column Name' should be specified as 'columnName'. \\ If set to TRUE then all fields in 'columnNames' list must exist. If set to FALSE then all columns can be listed without reference to column name in the header. \\ In this case NULL value can be used to omit specified name in the sequence. |
| RETURNS 		| RowSet 		| Returns a RowSet representation of a HTML document. |

=== Examples: ===

RowSet rs = htmlTableToRowSet(html); \\
RowSet rs = htmlTableToRowSet(html, true, ARRAY['firstName', 'lastName'], true); \\
