Markdown is a Markdown parser made using Scribunto, it is based on CommonMark 0.31.2.
You can find the original code repository here.
Installation
Examples
{{Markdown|1=
# Demo
## 1. Lists
1. First item with a continuation line.
- Nested bullet item.
- Deeper nesting.
## 2. Blockquotes
> A quote.
This line is lazy continuation.
> > Nested quote.
## 3. Links & Emphasis
Check out the [manual][ref] for **strong** and *emph* rules.
[ref]: https://www.mediawiki.org "Wiki"
## 4. Code & Breaks
Inline `code` and a fenced block:
```js
let x = 1;
}}
Demo
1. Lists
- First item with a continuation line.
- Nested bullet item.
- Deeper nesting.
- Nested bullet item.
2. Blockquotes
A quote. This line is lazy continuation.
Nested quote.
3. Links & Emphasis
Check out the manual for strong and emph rules.
4. Code & Breaks
Inline code and a fenced block:
let x = 1;
Text above can be found here (edit)