Second Post
- ultimathuleazureus
- Jan 29
- 2 min read
+++
date = '2025-01-13T12:51:35-03:00'
draft = false
title = 'Second Post'
+++
### Level V.I md editing
Start new page with
```go
hugo new content content/posts/second-post.md`
vim.athena content/posts/second-post.md
```
I already know how to do __bold__ in **two ways** italic in *another way*
* bullet lists are also covered
* understood well and this is *not the way* to do them
*
*
empty bullet lists are easy. paragraphs are just spaced
LF does not mean CR/LF!
* code you do with backticks
type `vim.athena` in your bash is an example for code in backticks
more code in a backtick block
```go
ifconfig sit0 up
ifconfig sit0 inet6 tunnel ::[my IPv4 address]
ifconfig sit1 up
ifconfig sit1 inet6 add [my IPv6 address]
route -A inet6 add ::/0 dev sit1
```
- I do have the block code now with three backticks and syntax highlighting after
last tick `c json sh bash csh go` are a couple of examples
- And it even changes the background colour according to the theme loaded!!!
source [Markdown guide](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) https://www.markdownguide.org/extended-syntax/#fenced-code-blocks
As you can see the text in backticks is a proper `monospaced font`
which makes your code indent properly als properly also.
Just look at my above actual codeblock
- the codeblock with syntax highlighting is so important I put up 30 minutes of playing time,
upgrading the 1st file in the process
- codeblocks make your entries much nice with bullet list combos explaining the code
Meanwhile I listen to [Kraftwerk - Heimcomputer] (https://www.youtube.com/watch?v=3AmMnFk3imI) https://www.youtube.com/watch?v=3AmMnFk3imI
- In fact I cleaned up both pages with using code blocks
covering the rest of the time spent on Hugo
- Markdown cheat sheet is at https://www.markdownguide.org/cheat-sheet/
Comments