38 |
39 | ## Features
40 |
41 | * Multiline textinput for writing markdown
42 | * Live preview of the markdown written (can be hidden)
43 | * Helper buttons to write the syntax for the markdown (like github)
44 |
45 |
46 | 49 | 50 | **Bold Text** 51 | 52 | *Italic Text* 53 | 54 | __Underline text__ 55 | 56 | ~~Strikethrough~~ 57 | 58 | `Inline code` 59 | 60 | * Item 1 61 | * Item 2 62 | 63 | Url Links: 64 | 65 | [GitHub](http://github.com) 66 | 67 | ``` 68 | function codeExample(arg) { 69 | } 70 | ``` 71 | 72 | # This is an < h1 > tag 73 | 74 |
75 |