Markdown Cheat Sheet: Emphasis, Lists, Tables, Headings, Code, and Links, Study notes of Javascript programming

This markdown cheat sheet covers various formatting elements including emphasis, lists, tables, headings, code blocks, and links.

Typology: Study notes

2021/2022

Uploaded on 08/05/2022

jacqueline_nel
jacqueline_nel 🇧🇪

4.4

(242)

3.2K documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Markdown Cheat Sheet V1.0
Emphasis:
*Italics*
**Bold**
_Italics_
__Bold__
Quote text, ‘>’ first on each line:
> Quoted Text
Task lists are a part of extensions:
- [ ] Clean House
- [ ] Save the world
- [ ] Cure Cancer
List ‘*’ WITH space after:
* First list Item
* Second ...
* Indented Item
Same but numbered list:
1. Numbered first
2. Numbered second
Table; ‘|’ separates, ‘- horizontal
| Table | Items
----- |-----
| May | 30
| June | 15
Headings
# Heading 1
## Heading 2
###### Heading 6
Code block:’`’ optional language.
```JavaScript
function mark() {
console.log("mark yourself”);
}
```
Links: ‘[‘,Alt Text ‘]’ ‘(‘file’ ‘)’
[LinuxHint](https://linuxhint.com/)
![Logo](/images/Logo.png)

Partial preview of the text

Download Markdown Cheat Sheet: Emphasis, Lists, Tables, Headings, Code, and Links and more Study notes Javascript programming in PDF only on Docsity!

Markdown Cheat Sheet V1.

Emphasis:

Italics

Bold

_ Italics_

Bold

Quote text, ‘>’ first on each line:

> Quoted Text

Task lists are a part of extensions:

  • [ ] Clean House
  • [ ] Save the world
  • [ ] Cure Cancer

List ‘*’ WITH space after:

*** First list Item

  • Second ...
  • Indented Item**

Same but numbered list:

**1. Numbered first

  1. Numbered second**

Table; ‘|’ separates, ‘ - ’ horizontal

TableItems May30 June15

Headings

# Heading 1

## Heading 2

###### Heading 6

Code block:’`’ optional language.

function mark() { _console.log("mark yourself”);_ }

Links: ‘[‘,Alt Text ‘]’ ‘(‘file’ ‘)’

LinuxHint