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))
A next generation Markdown parser in JavaScript.
## Markdown it! A next generation Markdown parser in JavaScript. + GitHub: - url https://github.com/markdown-it + Logo: - 
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
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!"); ```