https://github.com/codestackr/markdown-crash-course
https://github.com/codestackr/markdown-crash-course
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codestackr/markdown-crash-course
- Owner: codeSTACKr
- Created: 2022-02-07T19:48:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T20:25:42.000Z (about 4 years ago)
- Last Synced: 2025-02-16T03:46:15.331Z (about 1 year ago)
- Size: 99.6 KB
- Stars: 26
- Watchers: 2
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Markdown Crash Course
**Video Course**
[](https://youtu.be/ftOBvusMHjQ)
---
## Basic Syntax
### Headings
Below are 6 heading variations.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
---
### Horizontal Rule
3 dashes creates a horizontal line.
---
### Text formating
Paragraph line spacing is important.
This sentence is on the same line even though it's on the next line of the editor because there's no separation of content.
Add an empty line between elements.
*italic text* and _more italic text_
**bold text** and __more bold text__
***bold and italic text***
**mix *and* match**
~~strikethrough text~~
### Lists
Ordered List
1. Item 1
1. Item 2
1. Item 3
Unordered List
- Item
- Item
- Item
### Code formating
Inline: Use JavaScript `map()` on arrays.
Fenced code block:
```js
const sum = (a, b) => a + b
sum(2,2)
```
### Blockquote
> This is a blockquote
>
> more text
>
> > Nexted blockquote
### Links
[codeSTACKr](https://youtube.com/codeSTACKr 'codeSTACKr YouTube')
[Headings](#headings)
[codeSTACKr][cs]
[cs]: https://youtube.com/codeSTACKr 'codeSTACKr YouTube'
### Images

[](https://codecats.xyz)
## Extended Syntax
Not all extended syntax features work in all markdown applications.
### Table
| Packages | Description | Version |
| :--- | :----: | ---: |
| React | JavaScript Framework | v18.0 |
| Next.js | React Framework | v12.0 |
### Task List
- [x] Task 1
- [ ] Task 2
- [ ] Task 3
### Emoji
Emoji's are fun! :joy:
### Comments
[This is a hidden comment.]: #
### Toggle
:zap: This is a toggle!
Contents of toggle.
### Callouts
> :bulb: **Tip:** Here's an important tip to remember!
### Table of Contents
- [Basic Syntax](#basic-syntax)
- [Headings](#headings)
- [Horizontal Rule](#horizontal-rule)
- [Text formating](#text-formating)
- [Lists](#lists)
- [Code formating](#code-formating)
- [Blockquote](#blockquote)
- [Links](#links)
- [Images](#images)
- [Extended Syntax](#extended-syntax)
- [Table](#table)
- [Task List](#task-list)
- [Highlight](#highlight)
- [Emoji](#emoji)
- [Comments](#comments)
- [Toggle](#toggle)
- [Callouts](#callouts)
- [Table of Contents](#table-of-contents)