You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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-html
check.The text was updated successfully, but these errors were encountered: