In version 4 I would chain icons for a ratings graphic.
In version 5 we are required to configure Psuedo attributes to allow them to behave correctly but now the chained icons in content are no longer recognised by Font Awesome 5.
FontAwesomeConfig = { searchPseudoElements: true };
The code below won't display as svg.
.ratings::before{
font-family: "Font Awesome 5 Solid";
display: none;
}
.ratings-four-five::before{ content: "\f005 \f005 \f005 \f005 \f089";}
Is there a work around I'm missing (like preventing svg creation) or "best practice" approach to solve this?