-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Perhaps you could try Quarto's Callout Blocks: https://quarto.org/docs/authoring/callouts.html |
Beta Was this translation helpful? Give feedback.
-
You could use the list-table filter? |
Beta Was this translation helpful? Give feedback.
-
It would be easy to create a filter that makes a table from a BlockQuote. function BlockQuote(el)
return pandoc.utils.from_simple_table(
pandoc.SimpleTable( {}, {"AlignLeft"}, {1.0}, {}, {{el.content}} )
)
end Probably better to use a fenced Div with a class instead, if you might need block quotes for their original purposes sometimes.... |
Beta Was this translation helpful? Give feedback.
It would be easy to create a filter that makes a table from a BlockQuote.
Probably better to use a fenced Div with a class instead, if you might need block quotes for their original purposes sometimes....