Markdown Support

This post shows Markdown support.

Images can be displayed:

picnic site

Links

An example quote from Wikipedia:

Veni, vidi, vici is a Latin phrase popularly attributed to Julius Caesar who, according to Appian, used the phrase in a letter to the Roman Senate around 47 BC ...

Code

Code is automatically highlighted. Some samples are below.

TypeScript

1function hello(name: string) {
2  return `Hello, ${name}!`
3}
4if (typeof module !== 'undefined' && !module.parent) {
5  console.log(hello('World'))
6}

Java

1package main
2
3class Main {
4  public static int main(String[] args) {
5    System.out.println("Hello, World!")
6  }
7}

Scala

1object HelloWorld {
2  def main(args: Array[String]): Unit = {
3    println("Hello, World!")
4  }
5}

Golang

1package main
2
3import "fmt"
4
5func main() {
6  fmt.Println("Hello, World!")
7}

Python

1if __name__ == "__main__":
2  print("Hello, World!")
1
Please to comment
No comments yet - be the first to comment :)