Using html inside markdown

I have read that Hugo disables HTML inside markdown by default.

  1. I use a Table of Contents in my posts through a shortcode (since I want the table to appear in a specific place inside the MD file).
  2. Since I moved from WP>Jekyll before Hugo, the Jekyll Converter plugin converted some things into HTML instead of markdown such as blockquote (<blockquote></blockquote>) and some links (<a></a>). These are the only HTML items I use in my posts.

I am using this code to allow HTML to work inside markdown posts. Should I be worried about anything?

[markup.goldmark.renderer]
   unsafe = "true"

If you are in control of the content, no.

alright.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.