Is there a chance pseudo-selectors :before and :after will be supported in future?
Or do I still have to work around with pre-parsing the HTML Code
<p>Some long text.</p>
<hr>
<p>Some other long text.</p>
hr {
visibility: hidden;
height: auto;
&:before {
content: '***';
display: block;
visibility: visible;
width: 100%;
height: 1.5em;
text-align: center;
}
}
pseudo-selectors :before and :after will be supported in future?

since this seems to be a sore spot but still kinda needed - is it possible to piggy back off of what dompdf did.
i was able to get fontawesome's fa-ul functionality working but have been unsuccessful thus far with mPDF.
dompdf doesn't have some of support i need either.
Most helpful comment