Text superscript (and subscript) button would be super!

Automatic text superscript and subscript buttons would be super!

Those of us in the science fields and when we mention our brands, would be most moat appreciative!!

Thank you in advance.

Hi @theadler

Meanwhile if this can help you can add the following code in the Project - Header accessible from the Code Editor.

<style>

.sup { 
  vertical-align: super;
  font-size: smaller;
}

.sub { 
  vertical-align: sub;
  font-size: smaller;
}
</style>

Then you span the text you need to be either superscript or subscript with respectively the class sup or sub.

Result only seen in preview or browser:

MDS

8 Likes

Thank you guys! This solve my day!

You are welcome

MDS

1 Like