Here are some essential markdoc syntax elements with code examples:
To create a new paragraph, simply leave a blank line between lines of text.
This is the first paragraph.
This is the second paragraph.
Headers are used to create section titles. Use hashtags (#) for headers, with more hashtags for lower-level headers.
# Header 1
## Header 2
### Header 3
Headers can also be given ID's so they can be linked to and are present in the ToC:
# Header with ID {% #header-with-id %}
Create ordered (numbered) and unordered (bulleted) lists using 1., *, or -.
Ordered List:
1. First item
2. Second item
3. Third item
Unordered List:
- Apple
- Banana
- Cherry
Create hyperlinks to other web pages or sections within your documentation.
[Google](https://www.google.com)
[Link to Section](#section-name)
Embed images using the ![alt text](image URL)
syntax.
![Logo](https://example.com/logo.png)
Format code blocks using triple backticks (```).
```python def hello_world(): print("Hello, World!") ```
Highlight inline code with backticks (`) around the code snippet.
Use the `print()` function to display text.
Use asterisks (*) or underscores (_) for emphasis and double asterisks or underscores for strong text.
_Italic Text_ or _Italic Text_
**Bold Text** or **Bold Text**
Tables allow you to display structured data in your documentation. Use pipes (|) to separate columns and hyphens (-) to define the table header.
| 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 |
Block quotes are used to emphasize or highlight text. To create a block quote, use the > symbol at the beginning of the quoted text.
> This is a block quote.
> It can span multiple lines.
These are the fundamental Markdown syntax elements you'll need to create well-structured and formatted documentation.
{% tabs %}
{% tabsitem #js title="Javascript" %}
Lorem ipsum dolor sit amet consectetur.
{% /tabsitem %}
{% tabsitem #flutter title="Flutter" %}
Lorem ipsum dolor sit amet consectetur.
{% /tabsitem %}
{% /tabs %}
{% multicode %} ```js console.log('test'); ``` ```php echo 'test'; ``` ```dart print('test'); ``` {% /multicode %}
{% section #featured-products-1 step=1 title="Title" %}
Lorem ipsum dolor sit amet consectetur.
{% /section %}
{% section #featured-products-2 step=2 title="Title" %}
Lorem ipsum dolor sit amet consectetur.
{% /section %}
{% section #featured-products-3 step=3 title="Title" %}
Lorem ipsum dolor sit amet consectetur.
{% /section %}
{% info title="Public Service Announcement" %}
Lorem ipsum dolor sit amet consectetur.
{% /info %}
Available sizes are s
, m
, l
and xl
. Default: s
.
{% icon icon="github" /%}
{% icon icon="github" size="m" /%}
{% icon icon="github" size="l" /%}
{% icon icon="github" size="xl" /%}
Available sizes are s
, m
, l
and xl
. Default: s
.
{% icon_image src="/icon.png" alt="Icon" /%}
{% icon_image src="/icon.png" alt="Icon" size="m" /%}
{% icon_image src="/icon.png" alt="Icon" size="l" /%}
{% icon_image src="/icon.png" alt="Icon" size="xl" /%}
{% only_dark %}I am only shown in Dark Theme{% /only_dark %}
{% only_light %}I am only shown in Light Theme{% /only_light %}