Escaping characters

Note

For information on how to characters in the new editor, see Formatting text.

  • To display markup characters, escape them by using a backslash (\) or tilde (~):

    \*: Asterisk
    ~+: Plus sign
    
    See the result

  • To escape all characters in a certain text fragment, enclose this fragment in double quotes (""):

    ""<tag>""
    
    See the result

  • If you want to display a backquote inside a source code fragment, enclose the code fragment in double backquotes (``):

    ``SELECT `id` FROM `table` ``
    
    See the result

  • All markup characters placed in the source code are escaped automatically:

        Formatting text:
    
        ```
        *Italics*
        **Bold**
        ```
    
    
    See the result

  • Any text in angle brackets (<...>) is handled as an HTML tag and is not explicitly displayed on the page. To display this text, you'll need to escape it, format it as a code snippet, or replace the opening angle bracket (<) with the &lt; code:

    &lt;tag>
    
    See the result