Code Block Syntax

Use triple tildes (~~~) or triple backticks (```) to wrap your code:

    ```bash
    ldmadmin status
    ```

or

    ~~~bash
    ldmadmin status
    ~~~

will result in a code block:

ldmadmin status

Code Block Language Label

The language you specify right after the opening triple tilde or backticks delimiter will be displayed at the top of the code block.

When You Don’t Use A Language Label

If you don’t specify a language for your code block:

    ```
    your code block content here
    ```

will result in the term PLAINTEXT will be shown for the code block:

your code block content here

How To Omit The Language Label

To omit a language label altogether, use the word none after the delimiter:

    ```none
    your code block content here
    ```

which will result in:

your code block content here