nani.wtf/src/posts/2020-09-22-hola-mundo.md

27 lines
523 B
Markdown
Raw Normal View History

2020-09-22 04:03:52 +02:00
---
author: "Mi nombre"
authorTwitter: "@MiNombre"
2020-11-10 16:34:58 +01:00
desc: "Me anuncio al mundo"
image: "./images/waiheke-stony-batter.jpg"
2020-09-22 04:03:52 +02:00
keywords: "hola, anuncio"
lang: "es"
title: "¡Hola Mundo!"
updated: "2020-09-23T12:00:00Z"
---
¡Hola Mundo! ¡Estoy aquí!
<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, por ejemplo:
```haskell
toSlug :: T.Text -> T.Text
toSlug =
T.intercalate (T.singleton '-') . T.words . T.toLower . clean
```