Closed masfour7 closed 10 months ago
I have commented "TableMd" at "markdown_component.dart" file because I have implemented the rendering logic of TableMd differently at "md_widget.dart" file. The syntax of rendering a table is little different than the official Markdown language. The syntax is given down bellow
| Name | Roll | | sohag | 1 |
This is the syntax of rendering a table. If you are rendering a table below some other component then you have to put at least a new line between the other component and the table component like:
# Put a new line then write the table syntax
| data 1| data 2| | data 3| data 4|
() also you have add at least two rows there
Here is the example image:
You're correct. Thank you @saminsohag
Hi, thanks for the package. Is there a reason you commented "TableMd" in the code? Table rendering is not working.