You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MDList block supports listing off blocks. But, if there is a need to allow multiple blocks for a single list item, there's no obvious way to do it. My current use case is to include a table under a bullet. The table feature might already be bugged, but there is no way right now to allow a paragraph and then a table to be included under a single bullet. I had to hack something together that looks like this:
snakemd.Raw(f"(12 points; 2 points each) True/False: for each of the following statements, indicate whether it is true or false by circling the appropriate value.\n\n{tf_table}")
In this example, tf_table is a table object. I also had to make use of the indent feature to make sure this nests under the bullet correctly. Definitely not ideal!
The text was updated successfully, but these errors were encountered:
The MDList block supports listing off blocks. But, if there is a need to allow multiple blocks for a single list item, there's no obvious way to do it. My current use case is to include a table under a bullet. The table feature might already be bugged, but there is no way right now to allow a paragraph and then a table to be included under a single bullet. I had to hack something together that looks like this:
In this example, tf_table is a table object. I also had to make use of the indent feature to make sure this nests under the bullet correctly. Definitely not ideal!
The text was updated successfully, but these errors were encountered: