Kitchen Sink
This page shows how different Markdown elements are rendered.
Code block
For example, this is a Go codeblock:
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
This is how you can run the program. The code block doesn't have a language specified:
go run .
Links
A link to an external site: @faiface should open in a new tab. You can also link to another document: Getting Started.
Quotes & Alerts
Quote
[!NOTE] Useful information that users should know, even when skimming content.
[!TIP] Helpful advice for doing things better or more easily.
[!IMPORTANT] Key information users need to know to achieve their goal.
[!WARNING] Urgent info that needs immediate user attention to avoid problems.
[!CAUTION] Advises about risks or negative outcomes of certain actions.