# Markdown NetBox supports Markdown rendering for certain text fields. Some common examples are provided below. For a complete Markdown reference, please see [Markdownguide.org](https://www.markdownguide.org/basic-syntax/). ## Headings ```no-highlight # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 ```
` and `
` tags. ``` Paragraphs are rendered in HTML using `` and `
` tags. ```` ``` def my_func(foo, bar): # Do something return foo * bar ``` ```` ```no-highlight def my_func(foo, bar): # Do something return foo * bar ``` ## Tables Simple tables can be constructed using the pipe character (`|`) to denote columns, and hyphens (`-`) to denote the heading. Inline Markdown can be used to style text within columns. ```no-highlight | Heading 1 | Heading 2 | Heading 3 | |-----------|-----------|-----------| | Row 1 | Alpha | Red | | Row 2 | **Bravo** | Green | | Row 3 | Charlie | ~~Blue~~ | ``` | Heading 1 | Heading 2 | Heading 3 | |-----------|-----------|-----------| | _Row 1_ | Alpha | Red | | Row 2 | **Bravo** | Green | | Row 3 | Charlie | ~~Blue~~ | Colons can be used to align text to the left or right side of a column. ```no-highlight | Left-aligned | Centered | Right-aligned | |:-------------|:--------:|--------------:| | Text | Text | Text | | Text | Text | Text | | Text | Text | Text | ``` | Left-aligned | Centered | Right-aligned | |:-------------|:--------:|--------------:| | Text | Text | Text | | Text | Text | Text | | Text | Text | Text | ## Blockquotes Text can be wrapped in a blockquote by prepending a right angle bracket (`>`) before each line. ```no-highlight > I think that I shall never see > a graph more lovely than a tree. > A tree whose crucial property > is loop-free connectivity. ``` > I think that I shall never see > a graph more lovely than a tree. > A tree whose crucial property > is loop-free connectivity. Markdown removes line breaks by default. To preserve line breaks, append two spaces to each line (represented below with the `⋅` character). ```no-highlight > I think that I shall never see⋅⋅ > a graph more lovely than a tree.⋅⋅ > A tree whose crucial property⋅⋅ > is loop-free connectivity. ``` > I think that I shall never see > a graph more lovely than a tree. > A tree whose crucial property > is loop-free connectivity. ## Horizontal Rule A horizontal rule is a single line rendered across the width of the page using a series of three or more hyphens or asterisks. It can be useful for separating sections of content. ```no-highlight Content --- More content *** Final content ``` Content --- More content *** Final content