It is hosted as a .html file, but it is written in pure Markdown.
Traditional markdown-based static sites typically require pre-processing steps to convert markdown into HTML before hosting.
With this solution, you can host the raw markdown files while the browser handles the conversion dynamically.
<script src="https://bit.ly/puremd"></script>
# Your Page
Using Markdown.
.html suffixRight-click on this page, and click on View page source (or check out the file on Github).
You can also render it in your terminal with glow :
# brew install glow
# or check https://github.com/charmbracelet/glow#installation
curl -s https://www.tducret.com/pure-markdown/ | glow -p
It supports italic, bold and strikethrough.
| Left Align (default) | Center Align | Right Align |
|---|---|---|
| A | A | A |
| B | B | B |
| C | C | C |
Both inline code and code blocks :
console.log('Hello, World!');
< instead of <