This might be a bit strange, but I'm trying to set it up so the style is added to the tag, not as a style in the <head> section, here's an example:
<p style="text-align: center; font: 22.0px Arial">Some text</p>
Currently, it makes a <style> section in the head with the above information and then applies the style as a class in the <p> tag. While this would be great if I was trying to do an entire HTML page, I'm just trying to HTML a section and I need the styles applied to each tag seperately.
Anyone know how to do this? It currently does this for the <li> tag already. I just need to tell it to do it for all the tags.
<p style="text-align: center; font: 22.0px Arial">Some text</p>
Currently, it makes a <style> section in the head with the above information and then applies the style as a class in the <p> tag. While this would be great if I was trying to do an entire HTML page, I'm just trying to HTML a section and I need the styles applied to each tag seperately.
Anyone know how to do this? It currently does this for the <li> tag already. I just need to tell it to do it for all the tags.