Simple vanilla javascript datatable
npm install rdatatbhtml
`
#### Options
You can enter options in the second parameter
`html
`
#### Valid table syntax
`html
Head 1
Head 2
Head 3
data 1
data 2
data 3
`
$3
#### Property
| Property | Descriptions |
|--|--|
| `DataTableRaw` | Get table data in json format |
|` HeaderDataTable `|Get all column name|
|` RowDataTable`|Get data in row table|
|` DataToRender`|Get the data displayed in the table|
#### Methods
|Name Methods | Descriptions|
|--|--|
| ` DownloadCSV('FileName'); ` | Download table in csv format "default filename is Export" |
|` DownloadJSON('FileName');`|Download table in Json format "default filename is Export"|
|` sort('columnName'); `|Sort table by column asc and desc|
|`nextItem();`|Get next page data|
|` prevItem();``|Get previous page data|