diff options
author | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-08-30 16:54:57 +0200 |
commit | 802efbca25cb92d8567761361b6513fd57e05578 (patch) | |
tree | 62eb0139143cc343d83d92091eee8efaf0888001 /content/articles/2022-08-29-blog-test.md | |
parent | ed6186a764701e702032156c9632ac19305652be (diff) | |
download | metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.bz2 metamuffin-blog-802efbca25cb92d8567761361b6513fd57e05578.tar.zst |
basic syntax highlighting
Diffstat (limited to 'content/articles/2022-08-29-blog-test.md')
-rw-r--r-- | content/articles/2022-08-29-blog-test.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/content/articles/2022-08-29-blog-test.md b/content/articles/2022-08-29-blog-test.md index ea4d166..2b65444 100644 --- a/content/articles/2022-08-29-blog-test.md +++ b/content/articles/2022-08-29-blog-test.md @@ -10,9 +10,11 @@ _italic_ **bold** `code` [Link](https://metamuffin.org/) Look at this code here. -``` -code -block +```rs +fn main() { 1 + 1 } +pub async fn useless(s: Box<dyn Write>) -> impl Future<usize> { + todo!() +} ``` As you can see, its pointless i.e. no points |