Welcome to my blog
This blog is powered by Markdown. Posts support bold text, italics, strikethrough, links, lists, tables, quotes, code, images, and embedded media.
Why Markdown?
Markdown keeps writing separate from the website code. A post is just a .md file with a small metadata block at the top.
Write in plain text, commit the file, and the website takes care of the presentation.
A quick example
const message: string = "Hello from Alyosha's blog";
console.log(message);
| Feature | Supported |
|---|---|
| GitHub-flavored Markdown | ✓ |
| Syntax-highlighted code | ✓ |
| Images and video | ✓ |
| Raw HTML in trusted posts | ✓ |
- Create the blog
- Read posts from Markdown
- Publish more notes

For locally hosted video, place a file in public/videos and use HTML inside a post:
<video controls poster="/images/poster.png">
<source src="/videos/example.mp4" type="video/mp4" />
</video>
YouTube or other iframe embeds work too. Because raw HTML is enabled, Markdown files should only contain content you trust.
Thinking…(1 min read · ↑ 181 words · #personal, #development)