nani.wtf/src/posts/2020-09-21-hello-world.md

27 lines
532 B
Markdown
Raw Normal View History

2020-09-22 04:03:52 +02:00
---
author: "My name"
authorTwitter: "@MyName"
2020-11-10 16:34:58 +01:00
desc: "I announce myself to the world"
image: "./images/waiheke-stony-batter.jpg"
2020-09-22 04:03:52 +02:00
keywords: "hello, announcement"
lang: "en"
title: "Hello, world!"
updated: "2020-09-22T12:00:00Z"
---
Hello, world! I am here!
<img
alt="Grapevines among rolling hills leading to the sea"
src="./images/waiheke-stony-batter.jpg"
2020-09-22 04:03:52 +02:00
style="max-width:500px;"
/>
2021-06-13 06:02:29 +02:00
Haskell, for example:
```haskell
toSlug :: T.Text -> T.Text
toSlug =
T.intercalate (T.singleton '-') . T.words . T.toLower . clean
```