extra formatting options for the uninformed!
Headings!
you can make this using a hashtag and a space (# exampleText)
there are SIX different sizes of heading!
exampleText (# exampleText)
exampleText (## exampleText)
exampleText (### exampleText)
exampleText (#### exampleText)
exampleText (##### exampleText)
exampleText (###### exampleText)
you can also make this using h1-h6 wrapped in the left and right arrows!
exampleTxt
<h1>exampleTxt</h1>
however, it seems like if you put text under headings using html formatting (that ^) then all formatting for that text just doesnt work
heading6
**bold**
bold
<h6>heading6</h6>
**bold**
**bold** //why does this one work?
heading6
bold
<h6>heading6</h6>
**bold** //??????
Dividers!
you can make these using three asterisks in an empty row! (***)
examples above this and directly below this sentence
Footnotes!
i used to refer to these as tooltips but it turns out theyre actually named footnotes
you can make these using one caret (^), one left bracket, whatever you want inside, and one right bracket!
^[]
also images can go into the tooltips
Images!
you probably know how to put these in
but you can actually change the sizes to a number outside of 100, 75 or 50!
simply go to the text version of the image

find where the size is typed in;
690x431, 50%]
/* aka
width x height, size of image] */
and change the percentage!

you can also crop them via the size (they wont stretch)

Strikethrough!
you can make these by using two tildes (~) on both sides of your text!
~~exampleTxt~~
exampleTxt
theres multiple ways of doings this, though markdown uses less characters
[s]exampleTxt[/s] bbcode; <s>exampleTxt</s> html; ~~exampleTxt~~ markdown
the rest of these will just be extra things you can make using markdown (and maybe bbcode or html)
More Formatting Options!
Superscript and Subscript!
Normal text for comparison<sup>exampleTxtSuper</sup>
Normal text for comparisonexampleTxtSuper
Normal text for comparison<sub>exampleTxtSub</sub>
Normal text for comparisonexampleTxtSub
Small Text!
jk apparently “< small >” but with no spaces is blocked
Big Text!
<big>exampleTxt</big>
exampleTxt
Marked Text!
<mark>exampleTxt</mark>
exampleTxt
Deleted Text!
<del>exampleTxt</del>
exampleTxt
Inserted Text!
<ins>exampleTxt</ins>
exampleTxt
Keys!
<kbd>exampleTxt</kbd>
exampleTxt
EXTRA STUFF
you can actually stack formatting! (kinda)
helloo
<ins><big>**he**~~ll<mark>o</mark>o~~</big></ins>
sometimes the formatting wont work
like in this example
hel~~lo~~
<kbd>hel~~<mark>lo</mark>~~</kbd>
this one is meant to have a slashed + marked segment
lo
~~<mark>lo</mark>~~
however <kbd></kbd> stops that
this will prob be true for other combinations i havent seen yet
its also possible to stack things on themselves
like this here
hihihi
<kbd>hi<kbd>hi<kbd>hi</kbd></kbd></kbd>
i tried doing the same thing with subscript however it seems they stop people from doing that