3
I have an answer that can help you. It does not resolve the build bug, but solves the question of the superscript number in content
.
Repair the content:""
of the element ::after
can receive characters in unicode
, but to solve this you can use the code unicode
of the character replacing the "m²"
for "m\00B2"
. So you avoid the special character and use the only one character code.
See how you run the example. And test to see if you pass the SASS compiler (I believe it will work!)
span::after {
content: "m\00B2" ;
}
<span>num: </span>
Here is a superscript and subscript character table unicode
that might interest you: https://en.wikipedia.org/wiki/Unicode_subscripts_and_superscripts#Superscripts_and_subscripts_block
I was having trouble finding the code of the special character, then I found a special character converter online. Follow the link,
– Thavi Lang