Markdown Writing Guide

Markdown Writing Guide

This guide covers the basic Markdown syntax you can use to write articles for your CMS.

Headers

Use `#` symbols to create headers:

```markdown

Header 1

Header 2

Header 3

```

Text Formatting

  • Bold text - Use `bold` or `__bold__`
  • Italic text - Use `italic` or `_italic_`
  • ~~Strikethrough~~ - Use `~~strikethrough~~`

Lists

Unordered Lists

```markdown

  • Item 1
  • Item 2
  • Item 3

```

Ordered Lists

```markdown

  1. First item
  1. Second item
  1. Third item

```

Links and Images

  • [Link text](http://example.com)
  • ![Alt text](image-url.jpg)

Code

Inline code: `var example = true`

Code blocks:

```javascript

function greet(name) {

return `Hello, ${name}!`;

}

```

Blockquotes

> This is a blockquote. Use the `>` symbol to create them.

Tables

| Column 1 | Column 2 | Column 3 |

|----------|----------|----------|

| Row 1 | Data | Data |

| Row 2 | Data | Data |

This should give you everything you need to write great content for your CMS!