CMS Markdown Syntax Guide


2025-01-27

Markdown is a lightweight markup language that allows you to format text in a plain-text editor while still having a structured and readable output. It is often used for writing documentation, readme files, blog posts, and other content where readability and simplicity are important. Markdown syntax is simple and intuitive, making it an ideal choice for writing and formatting text without the need for complex HTML tags. Its flexibility and ease of use make it a popular tool among developers, writers, and content creators alike. By using basic symbols and characters, you can structure documents that are both human-readable and machine-readable, which is crucial for version control and collaborative projects. Markdown also supports extensions and customizations, allowing for a wide range of formatting options without adding unnecessary complexity.

Headers

  • Headers in Markdown Syntax
mdarticle.md
Copy code
# H1
## H2
### H3
#### H4
##### H5
###### H6

Emphasis

  • Emphasis in Markdown Syntax:
mdarticle.py
Copy code
*italic*
**bold**
***bold and italic***
~~strikethrough~~

Lists

  • Headers in Markdown Syntax:

Unordered List

  • Unordered List in Markdown Syntax
mdarticle.md
Copy code
- Item 1
- Item 2
  - Subitem 1
  - Subitem 2

Ordered List

  • Ordered List in Markdown Syntax
mdarticle.md
Copy code
1. First item
2. Second item
   1. Subitem 1
   2. Subitem 2

  • Links in Markdown Syntax:
mdarticle.md
Copy code
[Link Test](http://serverx.org.in/)

Images

  • Images in Markdown Syntax:

  • For online links:

mdaticle.md
Copy code
![Link text](https://jsd.012700.xyz/gh/jerryc127/CDN/img/Markdown-Style-test-cover.png)
  • For local images:
mdFile Structure
Copy code
- articles
  └── markdown-syntax-guide
       ├── img
       │    ├── featured.png
       │    └── sample.png
       └── index.md
mdarticle.md
Copy code
![sample Image](sample.png)

Blockquotes

  • Blockquotes in Markdown Syntax:
mdarticle.md
Copy code
> This is a blockquote

Code Snippets

  • Code Snippets in Markdown Syntax:

For SERVER X 101 articles, remove those spaces infront of ``` for making it work

mdarticle.md
Copy code
```py
code block
```

Horizontal Rule

  • Horizontal Rule in Markdown Syntax:
mdarticle.md
Copy code
---

Tables

  • Tables in Markdown Syntax:
mdarticle.md
Copy code
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |

Task Lists

  • HeadTask Listsers in Markdown Syntax:
mdarticle.md
Copy code
- [x] Task 1
- [ ] Task 2