Back

Markdown

A markup language is a computer language that uses tags to define elements within a document. HTML, XML are the most popular ones.

But markdown is a specific markup language. Github, StackOverflow, Reddit and many other services uses it(with their own markdown processors).

Most used methods

H1
# H1
...
###### H6
**Bold text**
*Italics*
~~Strike through~~
H~2~0 //subscripts
X^2^ //superscripts

//unordered lists
- Chili oil
- Rice
- Spring onions

//links
[Kealan's site](https://www.kealanparr.com)

//image
![View of natural rock landscape formations making a valley ending in a road crossing through with a blue sky.](https://example.jpg)

//code syntax
```
javascript
console.log('example log')
```

Regular HTML can be used in Markdown texts (depending on the parser).

Resources:

https://www.freecodecamp.org/news/markdown-cheatsheet/

Posted To avatar
Programming
• 1 year ago

Please login or create an account to post a comment.

No Posts
No comments yet...