diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-01-07 22:00:44 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-01-07 22:00:44 +0000 |
commit | 53313217dde18fd957c3a0dbdb883637e20c4cb2 (patch) | |
tree | 1deb41f44a52a28e5abc3b92f5470fbe5fa34a29 | |
parent | a0321c9135e57588ee7668845c30734a8152e628 (diff) | |
parent | 19a5472d3a9d1a7215708e160d811f734ee5d93f (diff) | |
download | blog-53313217dde18fd957c3a0dbdb883637e20c4cb2.tar.gz blog-53313217dde18fd957c3a0dbdb883637e20c4cb2.tar.bz2 blog-53313217dde18fd957c3a0dbdb883637e20c4cb2.zip |
Merge branch 'master' of git.ilvokhin.com:blog
-rw-r--r-- | posts/hello-world/hello-world.md | 65 |
1 files changed, 6 insertions, 59 deletions
diff --git a/posts/hello-world/hello-world.md b/posts/hello-world/hello-world.md index 06639ae..ab23e5f 100644 --- a/posts/hello-world/hello-world.md +++ b/posts/hello-world/hello-world.md @@ -1,60 +1,7 @@ -This is a post to demonstrate and test content generation code. I am not a -writing master, so I am going just enumerate features I am going to use to see -how they are rendered. +I decided to create a blog to occasionally share something interesting there. -And I want to know how multiple paragraphs are rendered. - - -## Code - -Standalone code block like this one. - -``` -#include <iostream> - -int main() { - std::cout << "Hello, World" << std::endl; - return 0; -} -``` - -And embedded code like `this` and `this`. - - -## Lists -* I -* like -* itemized -* lists - -Also, sometimes I use enumerated lists like this one. - -1. One. -2. Two. -3. Three. - - -## Formatting - -This is a **bold** text. And this is _italic_. - - -## Quotes -> I don't know what's the matter with people: they don't learn by -> understanding; they learn by some other way — by rote or something. -> Their knowledge is so fragile! - - -## Footnotes - -Oh, some it would nice to have footnotes like this one[^1]. - -[^1]: This should work. - - -## URLs - -Here is the url to [website][1]. And the same [url](https://ilvokhin.com), but -embedded into the text. - -[1]: https://ilvokhin.com +I wanted something fast (in case I'll write something that made it to the +Hacker News front page), simple and easy to maintain. Nothing will be ever +faster than serving a static content, so I started looking into static site +generators. But why to use something ready, when you can invent your own wheel, +right? |