Markdown Toolbox Logo Markdown Toolbox
Home
Blog

How to indent without bullets in markdown

2024-09-23

To create visual indentation without using bullet points in Markdown, you have a few options:

  1. Use non-breaking spaces:

        Indented line using non-breaking spaces.
    

        Indented line using non-breaking spaces.

  2. Use blockquotes for larger indents:

    > Indented line using a blockquote.
    > > Double indented line.
    

    Indented line using a blockquote.

    Double indented line.

  3. For code blocks, use triple backticks or indentation:

    ```
        Indented code block using spaces.
    ```
    
        Indented code block using spaces.
    

Note: Simple spaces at the beginning of a line won't create visual indentation in most Markdown renderers, as they're typically ignored.