Markdown Guide

Markdown Guide for product descriptions

Headings

Use # symbols followed by a space to create headings. The number of # symbols determines the heading level.

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Example

Heading 1

Heading 2

Heading 3

Heading 4

Text formatting

Plex Store currently support most markdown formatting. Simply add **, _, or ~~ around text to format it.

Style
How to write it
Result

Bold

**bold** or __bold__

bold

Italic

*italic* or _italic_

italic

Strikethrough

~~strikethrough~~

strikethrough

You can also combine them. For example, write **_bold and italic_** to get bold and italic text.

Blockquotes

Use > to create a blockquote.

This is a blockquote.

Lists

Ordered Lists

To create a ordered list, add line items with numbers followed by periods.

  1. Line 1

  2. Line 2

  3. Line 3

  4. Line 4

Unordered List

To create a unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items.

  • First item

  • Second item

  • Third item

  • Fourth item

You can also nest them by adding indents on the list items:

  • First item

  • Second item

    • Additional item

    • Additional item

  • Third item

  • Inline Links: [Link Text](URL)

  • Reference Links: [Link Text][id] and [id]: URL

Images

  • Inline Images: ![Alt Text](Image URL)

  • Reference Images: ![Alt Text][id] and [id]: Image URL

Code

  • Inline Code: Use backticks ` to wrap inline code.

  • Code Blocks: Use triple backticks to create code blocks.

Markdown Syntax Highlighting

You can specify the language after the opening backticks in a code block.

Tables

Use pipes | and hyphens - to create tables. The hyphens separate the header row from the data rows.

Custom Containers

Last updated

Was this helpful?