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.
Emphasis (Italics and Bold)
Italicize text with one asterisk or underscore:
*italic*
or_italic_
Bold text with two asterisks or underscores:
**bold**
or__bold__
Combine both:
**This is bold and *italic* text.**
Strikethrough
Use two tildes ~~
to strike through text.
Blockquotes
Use >
to create a blockquote.
Lists
Unordered Lists: Use
-
,+
, or*
followed by a space.Ordered Lists: Use numbers followed by a period.
Links
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