Ryota Onuma

Markdown cheat sheet for this blog

 
#Markdown
サムネイル

This is my markdown cheet sheet to create articles in my blog.

Heading(h1)

Heading(h2)

Heading(h3)

Heading(h4)

Heading(h5)
Heading(h6)
  • Bullet point 1
    • Nested bullet point 1
      • Nested nested bullet point 1
    • Nested bullet point 2
      • Nested nested bullet point 2
    • Nested bullet point 3
      • Nested nested bullet point 3
  • Bullet point 2
  • Bullet point 3

Strikethrough

Quotation

Click

Folded contents are below.

  • Bullet point 1
    • Nested bullet point 1
      • Nested nested bullet point 1
    • Nested bullet point 2
      • Nested nested bullet point 2
    • Nested bullet point 3
  • Bullet point 2
  • Bullet point 3
main.go
package main

import "fmt"

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

Code block

- console.log("Goodbye")
+ console.log("Hello World")
main.go
package main

import "fmt"

func main() {
    helloWorld()
}

func helloWorld() {
    fmt.Println("Hello World")
}

Speech bubbles

I created speech bubbles system with short code. I can write markdown contents in it.

Heading(h4)

Heading(h5)
  • List 1
    • List 1.1
  • List 2
- console.log("Goodbye")
+ console.log("Hello World")

references)https://catengineer.net/shortcode/#%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E3%81%AE%E7%BD%AE%E3%81%8D%E5%A0%B4%E6%89%80%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6

Reversed version of speech bubbles.

Strikethrough

This is "danger" test.
This is "warning" test.
This is "notice" test.
This is "default" test.