Skip to content

Instantly share code, notes, and snippets.

@minazou67
Last active July 12, 2017 10:30
Show Gist options
  • Save minazou67/ff0e72fd7b36c18667e8 to your computer and use it in GitHub Desktop.
Save minazou67/ff0e72fd7b36c18667e8 to your computer and use it in GitHub Desktop.
GitHub Markdown Sample

Reference

Headers

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

Styling text

text
Italic Text
Bold Text
Strikethrough Text

Unordered lists

  • List 1
    • List 1-1
    • List 1-2
  • List 2
    • List 2-1
    • List 2-2

Ordered lists

  1. List 1
    1. List 1-1
    2. List 1-2
  2. List 2
    1. List 2-1
    2. List 2-2

Blockquotes

Text 1

Text 2

Text 3

Text a

Text b

Horizontal Rules




Inline Code Syntax

Hoge $hoge = 1 Fuga.

Blocks Code Syntax

JavaScript

var s = "JavaScript syntax highlighting";
alert(s);

Java

public class HelloWorld {
    public static void main(String [] args) {
        System.out.println("Hello world!");
    }
}

Links

Auto link.

https://www.google.com

Inline link.

inline-style link

Images

Sample Image

Tables

Col1 Col2 Col3
R1C1++++ R1C2++++ R1C3++++
R2C1 R2C2 R2C3
R3C1 R3C2 R3C3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment