Plans supporting the use of Markdown editor
Professional | Business | Enterprise |
---|---|---|
The Markdown editor is a powerful tool for creating clear, organized, and professional content in Document360. Whether you are new to Markdown or already familiar, this article will help you learn the basic commands and formatting options step by step.
Markdown is a lightweight markup language that lets you format text easily using special characters. You don't need coding knowledge to use it—just follow the syntax provided in this guide to create headings, lists, links, and more.
Markdown commands
To format your text using Markdown commands, follow the table below to understand how to type Markdown commands and what they do. Here, syntax represents the way you type the content in your editor. You can use the examples in the Example column as reference.
For some Markdown commands, you also have alternate keyboard shortcuts, which you can use to quickly format your text. You can find these shortcuts in the Notes column in the below table.
Feature | Syntax | Example | Output | Notes |
---|---|---|---|---|
Headings (H2, H3, H4) | ## , ### , #### before the text |
## Heading 2 |
Heading 2 |
This syntax helps in creating section titles. Use 1-6 hash symbols for heading levels. Document360 restricts H1 for article titles. |
Bold | **text** |
**bold** |
bold | This syntax helps emphasize important text. Shortcut: Ctrl+B / Cmd+B |
Italics | *text* or _text_ |
*italics* |
italics | This syntax helps highlight text subtly. Shortcut: Ctrl+I / Cmd+I |
Strikethrough | ~~text~~ |
~~strikethrough~~ |
This syntax helps to cross out text. No shortcut available | |
Numbered List | 1. followed by text |
1. First item |
1. First item | Numbered lists automatically increment |
Bulleted List | * or - followed by text |
* Bullet item |
* Bullet item | Use an asterisk * or a hyphen - |
Link | [text](URL) |
[Document360](https://docs.document360.com) |
Document360 | Links are displayed as clickable text |
Blockquote | > before text |
> This is a quote |
Creates a callout/blockquote | For quoting or highlighting text |
Horizontal Line | *** |
*** |
Creates a horizontal line | Used to separate sections |
Heading levels
Heading Level | Syntax | Example | Output |
---|---|---|---|
H2 | ## Heading 2 |
## This is Heading 2 |
This is Heading 2 |
H3 | ### Heading 3 |
### This is Heading 3 |
This is Heading 3 |
H4 | #### Heading 4 |
#### This is Heading 4 |
This is Heading 4 |
Ensure a blank line above Heading tags and a space between hash symbols and text.
Styling text
Style | Syntax | Example | Output |
---|---|---|---|
Bold | **text** |
**bold text** |
bold text |
Italics | *text* or _text_ |
*italic text* or _italic text_ |
italic text or italic text |
~~text~~ |
~~strikethrough text~~ |
||
Highlight | ==text== |
==highlighted text== |
==highlighted text== |
Superscript | text^superscript |
E = mc^2 |
E = mc2 |
Subscript | text~subscript |
H~2~O |
H2O |
Avoid spaces between syntax and text for proper styling.
Lists
List Type | Syntax | Example | Output | Description |
---|---|---|---|---|
Numbered List | 1. Item |
1. First item |
1. First item | Automatically increments numbers for each item. |
2. Item |
2. Second item |
2. Second item | Use this format for each subsequent item. | |
3. Item |
3. Third item |
3. Third item | ||
Bulleted List | * Item |
* Bullet item |
- Bullet item | Use an asterisk (* ), hyphen (- ), or plus (+ ). |
- Item |
- Another bullet item |
- Another bullet item | Any of these symbols will create a bulleted item. | |
+ Item |
+ Yet another bullet item |
+ Yet another bullet item |
Links and blockquotes
Feature | Syntax | Example | Output |
---|---|---|---|
Link | [text](URL) |
[Document360](https://docs.document360.com) |
Document360 |
Blockquote
Include quotes or highlight important points by using '>' before the text.
> This will quote the entire line of text
Output:
This will quote the entire line of text
Horizontal line
You can enter a horizontal line to divide two lines of text using the three asterisks.
***
Output:
Quick tips for beginners
- Use Headings to structure your content (e.g., sections and subsections).
- Example: Use
##
for large headings and###
for smaller ones.
- Example: Use
- Highlight key points with Bold or Italics to make the text easier to read.
- Add Lists to organize information.
- Use
1.
for numbered lists or*
for bullet points.
- Use
- Use Links to direct users to additional resources or websites.
More elements
Feature | Syntax | Example |
---|---|---|
Image |  |
 |
Reference Link | [Link text][ref] [ref]: URL |
[Document360][doc] [doc]: https://docs.document360.com |
Escaping Characters (to avoid special characters being processed) | \character |
\*This is not italic\* |
YouTube Video | <iframe src="https://www.youtube.com/embed/VIDEO_ID" width="560" height="315" frameborder="0" allowfullscreen></iframe> |
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" width="560" height="315" frameborder="0" allowfullscreen></iframe> |
Vimeo Video | <iframe src="https://player.vimeo.com/video/VIDEO_ID" width="640" height="360" frameborder="0" allowfullscreen></iframe> |
<iframe src="https://player.vimeo.com/video/76979871" width="640" height="360" frameborder="0" allowfullscreen></iframe> |
If you're unsure about HTML, simply copy and paste the examples provided, replacing the URL with your own video link.
Emoji usage
You can copy and paste the emojis directly into your document from the table below.
Emoji | Description |
---|---|
📝 | Memo |
✍️ | Writing Hand |
📄 | Page Facing Up |
📚 | Books |
📖 | Open Book |
🖋️ | Fountain Pen |
📑 | Bookmark Tabs |
🔍 | Magnifying Glass |
📅 | Calendar |
💻 | Laptop |
📊 | Bar Chart |
📈 | Chart with Upwards Trend |
🗂️ | Card Index Dividers |
✏️ | Pencil |
😊 | Smiling Face |
❤️ | Red Heart |
🌟 | Star |
🔥 | Fire |
🎉 | Party Popper |
Simply copy the emoji you want and paste it wherever you need it! You can also insert icons into your editor by pasting the HTML code from FontAwesome.
Using Unicode characters in the Markdown editor
Unicode characters help you add symbols, special characters, and non-Latin scripts to your Markdown documents. This includes currency symbols, mathematical operators, arrows, and accented letters, which enhance your content's clarity and style.
Syntax for inserting Unicode characters
In the Markdown editor, you can insert Unicode characters using either of the following methods:
-
Direct copy-paste: Copy the desired character from any Unicode reference site and paste it directly into your Markdown content.
Example:
★ Star symbol
Output:
★ Star symbol
-
HTML entity code: Use the Unicode hexadecimal code with the format
&#xXXXX;
, whereXXXX
is the character's hex code.Example:
&#x1F680; Rocket symbol
Output:
🚀 Rocket symbol
Common Unicode characters
Here are some frequently used Unicode characters:
Character | Description | Unicode (Hex) | HTML entity code |
---|---|---|---|
★ | Star symbol | 2605 | ★ |
✔ | Check mark | 2714 | ✔ |
✉ | Envelope | 2709 | ✉ |
© | Copyright | 00A9 | © |
€ | Euro sign | 20AC | € |
→ | Right arrow | 2192 | → |
♻ | Recycling symbol | 267B | ♻ |
Finding more Unicode characters
For an extensive list of Unicode characters and their corresponding codes, refer to the following resources:
Copy the character you need and paste it into your Markdown document, or use its HTML entity code for precise control.
Example: Creating a simple article
Let’s bring it all together with an example.
#### Welcome to Markdown
Learn how to use **Markdown** in Document360 to format your articles.
#### Why use Markdown?
* Easy to learn
* Clean and organized formatting
* Saves time
#### Useful tips
1. Use headings to structure your content.
2. Add links for more resources: [Learn Markdown](https://markdownguide.org)
3. Use `***` to create a divider.
Output
Welcome to Markdown
Learn how to use Markdown in Document360 to format your articles.
Why use Markdown?
- Easy to learn
- Clean and organized formatting
- Saves time
Useful tips
- Use headings to structure your content.
- Add links for more resources: Learn Markdown
- Use
***
to create a divider.
For more advanced Markdown syntax commands, refer to the official Markdown syntax guide. With these tips, you’ll be formatting your articles like a pro in no time!