https://github.com/devarshishimpi/markdown-tutorial
This repository contains a well crafted tutorial that covers the aspects of Markdown, from the basics to advanced techniques.
https://github.com/devarshishimpi/markdown-tutorial
beginners blog devarshishimpi github hashnode markdown markdown-tutorial md readme readme-md tutorial youtube
Last synced: about 2 months ago
JSON representation
This repository contains a well crafted tutorial that covers the aspects of Markdown, from the basics to advanced techniques.
- Host: GitHub
- URL: https://github.com/devarshishimpi/markdown-tutorial
- Owner: devarshishimpi
- License: gpl-3.0
- Created: 2023-08-23T18:56:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T20:29:31.000Z (over 1 year ago)
- Last Synced: 2025-03-20T17:50:00.986Z (about 2 months ago)
- Topics: beginners, blog, devarshishimpi, github, hashnode, markdown, markdown-tutorial, md, readme, readme-md, tutorial, youtube
- Homepage: https://www.youtube.com/watch?v=jCgVc9885oQ
- Size: 176 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown Tutorial
This repository contains a well crafted tutorial that covers the aspects of Markdown, from the basics to advanced techniques.
**Please give this repo a ⭐ if you found it helpful!**
**Feel free to checkout the below video I made for this tutorial as well.**
[](https://www.youtube.com/watch?v=jCgVc9885oQ)
## Headings
Headings play a crucial role in organising your content. Markdown offers six levels of headings, each indicated by an increasing number of hash symbols (#).
These headings provide hierarchy and improve readability, allowing readers to navigate your content effortlessly.
```
# H1 - Heading 1
## H2 - Heading 2
### H3 - Heading 3
#### H4 - Heading 4
##### H5 - Heading 5
###### H6 - Heading 6
```**Output:**
# H1 - Heading 1
## H2 - Heading 2
### H3 - Heading 3
#### H4 - Heading 4
##### H5 - Heading 5
###### H6 - Heading 6
## CodeBlocks
Markdown's ability to display code snippets in a clean and readable manner is invaluable. To display inline code, wrap it with backticks.
```
`This is inline code`
```**Output:**
`This is Code`
To present larger code blocks, use triple backticks:
```
```
This is a codeblock
```
```**Output:**
```
This is Code
```## Unordered Lists
Lists are effective for presenting information in a structured manner. Markdown supports both unordered and ordered lists.
For unordered lists, use hyphens (-), plus signs (+), or asterisks (*) followed by a space:
```
* Item 1
* Item 2
* Item 3
```Output:
* Item 1
* Item 2
* Item 3Ordered lists use numbers followed by periods and spaces:
```
1. Step 1
2. Step 2
3. Step 3
```Output:
1. Step 1
2. Step 2
3. Step 3## CheckBox Task List
Markdown allows you to create interactive task lists using checkboxes. These lists are handy for tracking to-do items or tasks within your documents.
```
- [X] Task 1
- [ ] Task 2
```**Output:**
- [X] Task 1
- [ ] Task 2## Blockquote Text
Blockquotes are often used to distinguish quoted content from the rest of the text. To create a blockquote, you can use the greater-than symbol (>) at the beginning of the quoted lines.
```
> This is a blockquote text.
```**Output:**
> This is a blockquote text.
## Bold, Italics & Strikethrough Text
Markdown offers various text formatting options. For bold text, enclose it with double asterisks (bold text). For italic text, use single asterisks (italic text). And for strikethrough text, use double tildes (strikethrough).
### Bold
```
**This is a bold text.**
```**Output:**
**This is a bold text.**
### Italics
```
*This is italic text*
```**Output:**
*This is italic text*
### Bold and Italic
```
***This is combined of both***
```**Output:**
***This is combined of both***
### Strikethrough Text
```
~~This is strikethrough text.~~
```**Output:**
~~This is strikethrough text.~~
## Will be adding rest of the sections very soon! Contributions are welcome!