AsciiDoc source like a * a
is converted to HTML as normal text "a * a". If the asterisk is the first non-space character in the line, it starts a list (this is normal). However, I need to start a paragraph with literal asterisk. I tried the following to escape it:
`*`
*
(rendered inside<code>
)
\*
- \* (rendered as normal text but with backslash present)
+*+
*
(rendered inside<code>
)
pass::[*]
- error:
block macro cannot occur here: pass::[*]
- error:
'*'
- * (rendered inside
<em>
— the closest to what I need so far)
- * (rendered inside
How to specify an asterisk in the beginning of the line in AsciiDoc source so that it appears as normal text in the HTML output?