Style tag requires an inline style tag to be passed before working

Steps to reproduce

<style> Tag doesn’t work unless you add an inline style before it. Just as an example

<style>
  h1 {color:orange;}
</style>

This will not work unless I add an inline style to it before. After that everything will work. So in this case to make that work, ill need to add in something like:

<h6 style="color:red;"></h6>
<style>
  h1 {color:orange;}
</style>

Expected result

Actual result

Anything passed in <style> wont load

Environment

  • Operating system: Mac OS 10.15.6
  • Obsidian version: 0.8.1

Additional information

As mentioned above adding any inline style will fix the problem

following discussion from discord. <style> will be removed in future releases