Snippets in tables #3325
-
Hi everyone. So, this works:
This doesn't:
Kevin |
Beta Was this translation helpful? Give feedback.
Answered by
facelessuser
Dec 9, 2021
Replies: 1 comment 2 replies
-
You're going to have to use raw HTML with a combination of the <table mardown="1">
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
<tr>
<td>Row1</td>
<td>
--8<-- "snips.txt"
</td>
</tr>
</table> |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
jimenezk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're going to have to use raw HTML with a combination of the
md_in_html
extension. Can't recall if you need to addmarkdown="1"
ontr
ortd
, so you'll have to try it out and see: