An open API service indexing awesome lists of open source software.

https://github.com/codestackr/markdown-crash-course


https://github.com/codestackr/markdown-crash-course

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# Markdown Crash Course

**Video Course**

[![Thumbnail](https://img.youtube.com/vi/ftOBvusMHjQ/maxresdefault.jpg)](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

![alt text](/codecat.png)

[![alt text](/codecat.png)](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)