Markdown Syntax Guide

4 min read
Apr 9, 2022

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
Explore Related Topics
Wanna Discover more Interesting Topics?
Regression-Analysis
Apr 12, 2023

Curve fitting for charts in Analytics

Linear regression is just a special case of polynomial regression where the order is 1. You can drag the slider above to see how different polynomial orders affect the fitting curve. When the order is N, the polynomial function will have a degree of N, and the curve will have N-1 turning points (so 1 is a straight line). The Mean Squared Error (MSE) value (Σ(value - predictedValue)^2 / dataNum) measures the "goodness" of the fit of the curve to the data. The smaller the error is, the better the curve describes the given data. Usually, the easy solution would be manually choosing a reasonable order and hardcoding it in our visualization. That’
powershell
Nov 12, 2022

Configuring PowerShell (shell prompt)

In Windows PowerShell, customizing your shell prompt can enhance your development environment by providing valuable information at a glance. This guide walks you through configuring Windows PowerShell to display a customized prompt with the username, date, and current folder name. ## Checking for Existing Profile ### STEP 1: Check for an Existing Profile Run the following command to check if you have an existing profile set up in PowerShell: ```powershell test-path $profile ``` ### STEP 2: Create a New Profile (if needed) If the result is `false`, create a new profile: ```powershell new-item -path $profile -itemtype file -force ``` ### STEP 3
Code-Block-HTML
Dec 21, 201

Custom Content Code Block Using HTML CSS JS

Code blocks are an integral part of developer-facing content, enabling clear and organized presentation of code. In this guide, we will walk through creating custom, aesthetically pleasing code blocks with both single-tab and multi-tab functionality using modern web technologies. This guide is targeted at developers with a working knowledge of HTML, CSS, and JavaScript. ### Why Custom Code Blocks? While libraries like Prism.js and Highlight.js provide excellent syntax highlighting, creating a custom code block allows for: - **Complete Control**: Tailor the design and functionality to your needs. - **Seamless Integration**: Align the blocks wi