You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let li = Style {
$0.textTransforms = [
TextTransform.custom {
return "• " + $0
}
]
}
Because of li is the parent for tags inside of it, that text transformation is also applying to strong tag. So my strong tag having a bullet point. How to avoid it?
The text was updated successfully, but these errors were encountered:
I have following html:
I add style to li tag to give them bullet points:
Because of li is the parent for tags inside of it, that text transformation is also applying to strong tag. So my strong tag having a bullet point. How to avoid it?
The text was updated successfully, but these errors were encountered: