-
The markdown content is as follows | | Column1 | Column2 |
| ---- | ---------- | ---------- |
| Row1 | aa | bb<br />ff |
| Row2 | cc<br />dd | ee | The commands executed are as follows.
The result is as shown, |
Beta Was this translation helpful? Give feedback.
Answered by
jgm
Mar 2, 2024
Replies: 1 comment 4 replies
-
Yes, as documented. Raw HTML is treated as raw HTML and passed through to formats that accept raw HTML (e.g. HTML and Markdown). It is ignored in other formats (e.g. docx). |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could write a Lua filter that matches a RawInline element with format "html" and contents "
" and replaces it with a native pandoc LineBreak element. See the docs on lua filters.