h1 === # h1 ## h2 ### h3 #### h4 ##### h5 ###### h6 #h1 ##h2 ###h3 ####h4 #####h5 ######h6 --- - ul - ul - ul 1. ol 1. ol 1. ol **bold** *italic* _italic_ [link with inline URL](https://github.com/simov/markdown-viewer) [link index][1] [named link][some-url] ![image][2] [![image link][2]][some-url] `inline code` keyboard keys like Ctrl+P > blockquote ~~line through~~ table | col | col | col --- | :--- | :---: | ---: defaults | left aligned | centered | right aligned defaults | left aligned | centered | right aligned defaults | left aligned | centered | right aligned

HTML tags

``` fenced code block ``` code block using indentation --- ```actionscript var some = new actionscript(); ``` ```apacheconf ServerName apacheconf ``` ```aspnet ``` ```bash $some = "bash"; ``` ```basic Dim basic As Integer ``` ```batch set some="batch" ``` ```c char some = "c"; ``` ```coffeescript some = "coffeescript" ``` ```cpp char some = "cpp"; ``` ```csharp string some = "csharp"; ``` ```css #some { content: 'css'; } ``` ```dart var some = "dart"; ``` ```docker MAINTAINER docker ``` ```erlang module(erlang) ``` ```go type go string ``` ```haskell haskell :: Str -> String ``` ```html

html

``` ```java public static final void main java(); ``` ```javascript let some = 'javascript'; ``` ```js const some = 'js'; ``` ```json {"some": "json"} ``` ```jsonp function({"some": "jsonp"}) ``` ```lua local some = "lua" ``` ```makefile check: makefile ``` ```markdown `some` **markdown** ``` ```markup

some markup

``` ```nginx server_name nginx; ``` ```objectivec char some = "objectivec"; ``` ```perl $some = "perl"; ``` ```php $some = "php"; ``` ```prolog some('prolog', 1972) ``` ```python some = 'python' ``` ```ruby some = "ruby" ``` ```rust let some = 'rust'; ``` ```sass @include sass; ``` ```scheme (define some 'scheme') ``` ```scss @include scss; ``` ```smalltalk 'some smalltalk' ``` ```sql select * from `language` where `name` = 'sql'; ``` ```swift var some = "swift" ``` ```typescript var some: string = "typescript"; ``` ```xml ``` ```yaml - language: yaml ``` [1]: https://github.com/simov/markdown-viewer [2]: http://i.imgur.com/rKYxW.jpg (Image Title) [some-url]: https://github.com/simov/markdown-viewer