How to disable automatic paragraphs tags in divs #13680
Unanswered
royfrancis
asked this question in
Q&A
Replies: 1 comment
-
|
This is Pandoc. echo "whatever" | quarto pandoc --from markdown --to html<p>whatever</p>If you don't want markdown to be enclosed in a paragraph, write raw HTML using the raw block. echo -e '```{=html}\nwhatever\n```' | quarto pandoc --from markdown --to htmlwhateverSee Markdown Basics - Raw Content. Alternatively, you can use Lua filter processing or post-render processing. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
Here is an example qmd:
Here is the HTML structure of the rendered div.
Why is quarto adding paragraph tags? Is it possible to disable this?
Beta Was this translation helpful? Give feedback.
All reactions