I am trying to integrate font-awesome icons as HTML content instead of using the :before selector in CSS. An example of what I want to do is:
.wysihtml5-command.blockquote:before { content: "\f10d"; }
However, I want to actually use it inside HTML tags like this:
<a class="someclassWithFontawesomeAsFont">\f10d</a>
Unfortunately, this method is not working for me. Is there a way to achieve this successfully?