|
@@ -0,0 +1,258 @@
|
|
|
+
|
|
|
+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`
|
|
|
+
|
|
|
+<kbd>keyboard keys like Ctrl+P</kbd>
|
|
|
+
|
|
|
+<[email protected]>
|
|
|
+
|
|
|
+> blockquote
|
|
|
+
|
|
|
+~~line through~~
|
|
|
+
|
|
|
+table | col | col | col
|
|
|
+--- | :--- | :---: | ---:
|
|
|
+defaults | left aligned | centered | right aligned
|
|
|
+
|
|
|
+<div style="text-align: center">
|
|
|
+ <p><strong>HTML</strong> tags</p>
|
|
|
+</div>
|
|
|
+
|
|
|
+
|
|
|
+```
|
|
|
+fenced code block
|
|
|
+```
|
|
|
+
|
|
|
+ code block using
|
|
|
+ indentation
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
+```actionscript
|
|
|
+var some = new actionscript();
|
|
|
+```
|
|
|
+
|
|
|
+```apacheconf
|
|
|
+ServerName apacheconf
|
|
|
+```
|
|
|
+
|
|
|
+```aspnet
|
|
|
+<asp:Label runat="server" id="aspnet"></asp:Label>
|
|
|
+```
|
|
|
+
|
|
|
+```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
|
|
|
+<p id="some">html</p>
|
|
|
+```
|
|
|
+
|
|
|
+```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
|
|
|
+<p>some <strong>markup</strong></p>
|
|
|
+```
|
|
|
+
|
|
|
+```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
|
|
|
+<some name="xml"></some>
|
|
|
+```
|
|
|
+
|
|
|
+```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
|