Ce contenu n'est pas disponible dans la langue sélectionnée.
17.2. Entering code and text with special characters
Special characters such as
*
, |
and #
, and HTML characters such as <</literal>, <literal>>
and &
can be escaped with \
:
You can write down equations like 2\*3\=6 and HTML tags like \<body\> using the escape character: \\.
You can write down equations like 2\*3\=6 and HTML tags
like \<body\> using the escape character: \\.
<p> You can write down equations like 2*3=6 and HTML tags like <body> using the escape character: \. </p>
<p>
You can write down equations like 2*3=6 and HTML tags
like <body> using the escape character: \.
</p>
And we can quote code blocks with backticks:
Since most monospace-formatted text is either code, or involves special characters, inline monospace formatting always escapes. So, you can write:
This is a |<tag attribute="value"/>| example.
This is a |<tag attribute="value"/>| example.
without escaping any of the characters inside the monospace bars. This also means that inline monospace text cannot be formatted in any other way.