Markdown

Markdown is a lightweight markup language for creating formatted text using a plain-text editor (Wikipedia, 2024)

# Markdown
Markdown is a lightweight markup language for creating formatted text using a plain-text editor ([Wikipedia, 2024](https://en.wikipedia.org/w/index.php?oldid=1197360439))

Markdown it!

A next generation Markdown parser in JavaScript.

## Markdown it!
A next generation Markdown parser in JavaScript.
+ GitHub:
  - url https://github.com/markdown-it
+ Logo:
  - ![](https://avatars.githubusercontent.com/u/10248321?s=32&v=0)

Table

Example of a table is as follow.

No ID Pseudonym
1 a39c3 Isaac Newton
11 98d9u Albert Einstein
111 xa9dk Stephen Hawking
1111 d3sot Thomas Alva Edison
### Table
Example of a table is as follow.

No | ID | Pseudonym
:- | -: | :-:
1 | a39c3 | Isaac Newton
11 | 98d9u | Albert Einstein
111 | xa9dk | Stephen Hawking
1111 | d3sot | Thomas Alva Edison

Code

You can write lines of code as follow.

// JavaScript
console.log("Hello, World!");
### Code
You can write lines of code as follow.
```
// JavaScript
console.log("Hello, World!");
```