Hello, World
This is the first post on a9l.im — a quick tour of the blog and a test of every markdown feature the parser supports.
Why a blog?
Building interactive simulations generates a lot of interesting problems — numerical precision, rendering tricks, algorithmic trade-offs. A blog is a good place to write them up.
What the parser handles
Text formatting
You can write bold, italic, and bold italic text. Inline code works too.
Links and images
Here's a link to the repo and an image:
Lists
Unordered:
- Zero dependencies
- Vanilla JS only
- No build step
Ordered:
- Write a markdown file
- Add it to
posts.json - Deploy
Blockquotes
The purpose of computation is insight, not numbers. — Richard Hamming
Code blocks
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('world'));
Horizontal rules
That covers all the basics. More posts to come.