barryclark / jekyll-now

Build a Jekyll blog in minutes, without touching the command line.
MIT License
8.26k stars 35.23k forks source link

Superscript/Subscript (<sup> / <sub>) Not Working #1112

Open antmarakis opened 6 years ago

antmarakis commented 6 years ago

Hello!

I noticed that the html sup tag does not work on my posts and I don't know why. Any ideas?

Example:

untitled

The above was supposed to be anbncn. In the github preview it works fine.

My style.scss

My repo

EDIT: Apparently, subscript is not working either.

Quuxplusone commented 6 years ago

The browser's default styling is being "reset" and then never re-adjusted back to how it ought to look. Here is a patch that fixes it: https://github.com/Quuxplusone/blog/commit/60126d4d5a68abd6736690434675095bf1560d74 @barryclark please feel free to take this patch upstream! It would certainly have saved me some confusion just now.

antmarakis commented 6 years ago

Thanks!