18 lines
271 B
Markdown
18 lines
271 B
Markdown
|
+++
|
||
|
title = "My first post"
|
||
|
author = ["Sergio Durigan Junior"]
|
||
|
date = 2023-04-16T22:02:00-04:00
|
||
|
tags = ["en-us", "thoughts"]
|
||
|
draft = false
|
||
|
+++
|
||
|
|
||
|
This is my post body
|
||
|
|
||
|
```bash { linenos=true, linenostart=1, hl_lines=["4"] }
|
||
|
function test()
|
||
|
{
|
||
|
echo "Oi"
|
||
|
return
|
||
|
}
|
||
|
```
|