I'm trying to convert the below as a table in HTML.
Tables
| Option |
Description |
| data |
path to data files to supply the data that will be passed into templates. |
| engine |
engine to be used for processing templates. Handlebars is the default. |
| ext |
extension to be used for dest files. |
Unfortunately, my HTML output is generated as below when using CommonMark.CommonMarkConverter.Convert(...).
Tables
| Option | Description |
| ------ | ----------- |
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
I'm trying to convert the below as a table in HTML.
Tables
Unfortunately, my HTML output is generated as below when using CommonMark.CommonMarkConverter.Convert(...).
Tables
| Option | Description | | ------ | ----------- | | data | path to data files to supply the data that will be passed into templates. | | engine | engine to be used for processing templates. Handlebars is the default. | | ext | extension to be used for dest files. |