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

buttonclick to start writinghighlight text & click toMD equivalentHTML equivalent
heading 1a h1 headermake it your h1 header#<h1></h1>
heading 2a h2 headermake it your h2 header##<h2></h2>
heading 3a h3 headermake it your h3 header###<h3></h3>
heading 4a h4 headermake it your h4 header####<h4></h4>
heading 5a h5 headermake it your h5 header#####<h5></h5>
heading 6a h6 headermake it your h6 header######<h6></h6>
Bbold textbold selected text**text**<b></b>
Iitalic textitalicize selected text*text*<i></i>
Sstrikethrough textstrikethrough selected text~~text~~<s></s>
โžquote textmake it a quote>text<q></q>
<>codemake it a code snippet`code`<code></code>
</>a code blockmake it a code block```code```<pre></pre>
๐Ÿ”—a link insertcreate a link[text](link)<a></a>
๐Ÿ–ผan image insertinsert an image with it as alt text![alt](link)<img></img>
โ€ง โ”unordered listmake it an unordered list item-<ul></ul>
ยนโ”ordered listmake it an ordered list item1.<ol></ol>
๐Ÿ—ธโ”checklistmake it a checklist item- [x]<input type="checkbox">