Can I use a :before CSS pseudo-element with an SVG tspan element?
Specifically, I am trying to make font-awesome work in SVG without having to resort to re-encoding all the chars as explained here, and inestead by just adding the right class to the element.
In other words, I'd like to be able to do this:
<tspan
class="fa fa-meetup"
x="12.70"
y="17"></tspan></text>
and see it work.