Markdown Editor Basic Functions
With the file open you can start using the Editor - as the name suggests markdown syntax is fully supported. If you prefer using buttons rather than writing markdown syntax you can use the buttons from the top navbar to achieve the same results
Top navbar functions breakdown
button | click to start writing | highlight text & click to | MD equivalent | HTML equivalent |
---|---|---|---|---|
heading 1 | a h1 header | make it your h1 header | # | <h1></h1> |
heading 2 | a h2 header | make it your h2 header | ## | <h2></h2> |
heading 3 | a h3 header | make it your h3 header | ### | <h3></h3> |
heading 4 | a h4 header | make it your h4 header | #### | <h4></h4> |
heading 5 | a h5 header | make it your h5 header | ##### | <h5></h5> |
heading 6 | a h6 header | make it your h6 header | ###### | <h6></h6> |
B | bold text | bold selected text | **text** | <b></b> |
I | italic text | italicize selected text | *text* | <i></i> |
strikethrough text | strikethrough selected text | ~~text~~ | <s></s> | |
โ | quote text | make it a quote | >text | <q></q> |
<> | code | make it a code snippet | `code` | <code></code> |
</> | a code block | make it a code block | ```code``` | <pre></pre> |
๐ | a link insert | create a link | [text](link) | <a></a> |
๐ผ | an image insert | insert an image with it as alt text | ![alt](link) | <img></img> |
โง โ | unordered list | make it an unordered list item | - | <ul></ul> |
ยนโ | ordered list | make it an ordered list item | 1. | <ol></ol> |
๐ธโ | checklist | make it a checklist item | - [x] | <input type="checkbox"> |