How to Use Mark2Doc

Here's everything you need to know about using markdown with Mark2Doc. We've included lots of examples to help you get started.

📝

Easy to Learn

Simple formatting that's readable even as plain text.

🔄

See Changes Live

Watch your document take shape as you type.

📱

Looks Good Everywhere

Your documents work great on all devices.

The Basics

Headers

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Text Styling

*Italic text* or _italic text_
**Bold text** or __bold text__
***Bold and italic*** or ___bold and italic___
~~Strikethrough~~

Lists

Bullet points:
* Item 1
* Item 2
  * Subitem 2.1
  * Subitem 2.2

Numbered list:
1. First item
2. Second item
   1. Subitem 2.1
   2. Subitem 2.2

Cool Features

Links and Images

[Link text](https://example.com)
[Link with title](https://example.com "Link title")

![Alt text](image.jpg)
![Alt text with title](image.jpg "Image title")

Code

Inline code: `const example = "hello world";`

Code block:
```javascript
function greet(name) {
    return `Hello, ${name}!`;
}
```

Tables

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

Alignment:
| Left | Center | Right |
|:-----|:------:|------:|
|Left  |Center  |Right  |

Quotes

> Single line quote

> Multi-line quote
> with multiple paragraphs
>> Nested quote

Extra Stuff

Checklists

- [x] Done
- [ ] Not done
- [ ] Another task
  - [x] Subtask done
  - [ ] Subtask to do

Footnotes

Here's a sentence with a footnote[^1].

[^1]: This is the footnote.

Definitions

Term 1
: What it means

Term 2
: First meaning
: Another meaning

Helpful Tips

  • Add blank lines between paragraphs
  • Use two spaces to indent nested lists
  • Use \ before special characters: \*, \_, \`
  • Check the preview to see how it looks