README states that:
You can write attach inline HTML into Markdown and it will work! <span style="color: blue">Some text</span>
However, this results in the following HTML being produced:
<p><!-- raw HTML omitted -->Some text<!-- raw HTML omitted --></p>
This is because Goldmark (default Markdown renderer used by Hugo) has raw HTML disabled by default: https://gohugo.io/getting-started/configuration-markup/#rendererunsafe. Either this option should be enabled, or information about possibility of using HTML should be removed from README.
In case of the former, CI would also have to be modified, to skip MD033/no-inline-html check.
README states that:
However, this results in the following HTML being produced:
This is because Goldmark (default Markdown renderer used by Hugo) has raw HTML disabled by default: https://gohugo.io/getting-started/configuration-markup/#rendererunsafe. Either this option should be enabled, or information about possibility of using HTML should be removed from README.
In case of the former, CI would also have to be modified, to skip
MD033/no-inline-htmlcheck.