hmc-guide/themes/lotusdocs/exampleSite/content/fr/docs/example-content/code.md

559 B

title description icon date lastmod draft toc weight
Code Code block examples in different coding languages code 2023-05-22T00:44:31+01:00 2023-05-22T00:44:31+01:00 false true 210

Code Block Examples

Code block language examples

Go

package main

import "fmt"

func main() {
    fmt.Println("hello world")
}

HTML

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Markdown

# H1 heading

**Some bold text**

*Italic text example*