Featured Image
List of unique markdown methods and some custom markdown syntax for writing articles for server x 101.

Markdown Syntax Guide

Certainly! Below are various Markdown stylings you can use:

Headers

  • Headers in Markdown Syntax
article.md
# H1
## H2
### H3
#### H4
##### H5
###### H6

H1

H2

H3

H4

H5
H6

Emphasis

  • Emphasis in Markdown Syntax:
article.md
*italic*
**bold**
***bold and italic***
~~strikethrough~~
italic
bold
bold and italic
strikethrough

Lists

  • Headers in Markdown Syntax:

Unordered List

  • Unordered List in Markdown Syntax
article.md
- Item 1
- Item 2
  - Subitem 1
  - Subitem 2
• Item 1
• Item 2
  • Subitem 1
  • Subitem 2

Ordered List

  • Ordered List in Markdown Syntax
article.md
1. First item
2. Second item
   1. Subitem 1
   2. Subitem 2
1. First item
2. Second item
   1. Subitem 1
   2. Subitem 2

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

Images

  • Images in Markdown Syntax:

  • For online links:

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

Blockquotes

  • Blockquotes in Markdown Syntax:
article.md
> This is a blockquote
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

article.md
{{ < file "terminal" "terminal" > }}
    ```py
    code block
    ```
terminal
code block


Horizontal Rule

  • Horizontal Rule in Markdown Syntax:
article.md
---


Tables

  • Tables in Markdown Syntax:
article.md
| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
Header 1 Header 2
Cell 1 Cell 2

Task Lists

  • HeadTask Listsers in Markdown Syntax:
article.md
- [x] Task 1
- [ ] Task 2
• ✓ Task 1
• ❏ Task 2

Comments

Load Comments