Skip to content

Instantly share code, notes, and snippets.

@neetsdkasu
Last active March 14, 2017 23:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neetsdkasu/af32e0d136707643bf6a8249982ee2b1 to your computer and use it in GitHub Desktop.
Save neetsdkasu/af32e0d136707643bf6a8249982ee2b1 to your computer and use it in GitHub Desktop.
Practice Markdown ( https://github.github.com/gfm/ )

Practice Markdown

Practice Markdown

Practice Markdown

Practice Markdown

Practice Markdown

Large Size

capion
======

or

# caption

Middle Size

caption
-------

or 

## caption

Small Size

### caption

table

hogehogehoge abcdefghijklmnopq zz01234567890zz
hage piyo 1234
piyo foo 45
fugafugafugafugafugafuga fizzbazzfizzbazzfizzbazzfizzbazzfizzbazzfizzbazz 999888777666555444333222111
| header1 | header2 | header3 |
|:-------:|:--------|--------:|
| item1   | item2   | item3   |
| item4   | item5   | item6   |

:-: ... Center Alignment
:-- ... Left Alignment
--: ... Right Alignment

code block

What is Text.
Hello World!
def output(msg):
  print(msg)

output("Hello World!")
   code block markdown
   
   ```
   Plain Text
   ```
   
   ```Programing Language Name
   code here
   ```
   
   example
   ```Python
   # python code here
   ```

list unorderd

  • item1
  • item2
  • item3
    • item3-1
    • item3-2
      • item3-2-1
      • item3-2-2
    • item3-3
  • item4
 type
 - filled round
 + round
 * square
 
 - item1
 - item2
 - item3
 
 - nest1
    + nest2
       * nest3
       
 + nest1
    - nest2
       * nest3

list orderd

  1. item1
  2. item2
  3. item3
  4. item4
1. item1
2. item2
3. item3

check box

  • item1
  • item2
  • item3
  • item4
  • item5
 - [ ] item1
 - [x] item2

link

[site title](url)

bold

BOLD1
BOLD2

**BOLD1**
__BOLD2__

italic

italic1
italic2

*italic1*
_italic2_

strike

strike

~~strike~~
@neetsdkasu
Copy link
Author

neetsdkasu commented Aug 17, 2016

チェックボックスクリックでgistが更新されるw

@neetsdkasu
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment