Write code in Markdown
Writing code inside articles can be very useful for technical blogs and documentation. Here is an example of how to include code snippets in your Markdown files:
// This is a Go code block
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}