Content formatting guide
Contents
This guide applies to these Markdown enabled fields:
identification.titleidentification.abstractidentification.purposeidentification.lineage.statement
Italics
Some *italic* text.
Some italic text.
Bold
Some **bold** text.
Some bold text.
Strikethrough
Some ~~strikethrough~~ text.
Some strikethrough text.
Inline code
Some `code` in text.
Some code in text.
Links
https://example.com [example.com](https://example.com)
Email addresses
connie.watson@example.com [Contact Us](mailto:hello@example.com)
Horizontal Rule
... --- ...
...
...
Unordered list
... * list item 1 * list item 2 * list item 2.1 * list item 3 ...
...
- an item
- another item
- a sub-item
- another item
...
Ordered list
...
1. first item
2. second item
1. second item sub-item
3. third item
...
...
- first item
- second item
- second item sub-item
- third item
...
Blockquote
... > Some text in a blockquote ... > > ... over multiple lines. ...
...
Some text in a blockquote ...
... over multiple lines.
...
Code block
... ``` Some text in a code block. ``` ...
...
Some text in a code block.
...
Admonition (Note)
... > [!NOTE] > Some text shown as a note. ... > [!note] Custom note > A note, with custom title (and lower-case trigger). ...
...
Note
Some text shown as a note.
...
Custom note
A note, with custom title (and lower-case trigger).
...
Admonition (Tip)
... > [!TIP] > Some text shown as a tip. ... > [!tip] Custom tip > A tip, with custom title (and lower-case trigger). ...
...
Tip
Some text shown as a tip.
...
Custom tip
A tip, with custom title (and lower-case trigger).
...
Admonition (Important)
... > [!IMPORTANT] > Some text shown as a important. ... > [!important] Custom important > A important, with custom title (and lower-case trigger). ...
...
Important
Some text shown as a important.
...
Custom important
A important, with custom title (and lower-case trigger).
...
Admonition (Warning)
... > [!WARNING] > Some text shown as a warning. ... > [!warning] Custom warning > A warning, with custom title (and lower-case trigger). ...
...
Warning
Some text shown as a warning.
...
Custom warning
A warning, with custom title (and lower-case trigger).
...
Admonition (Caution)
... > [!CAUTION] > Some text shown as a caution. ... > [!caution] Custom caution > A caution, with custom title (and lower-case trigger). ...
...
Caution
Some text shown as a caution.
...
Custom caution
A caution, with custom title (and lower-case trigger).
...
Headings
# Heading 1 ... ## Heading 2 ... ### Heading 3 ... #### Heading 4 ... ##### Heading 5 ... ###### Heading 6 ...
Heading 1
...
Heading 2
...
Heading 3
...
Heading 4
...
Heading 5
...
Heading 6
Tables
... | Header 1 | Header 2 | Header 3 | |----------|----------|----------| | Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | | Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 | | Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | ...
...
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 |
| Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 |
...
Images
... ```  ``` ...
...
...