maliut
Results
2
comments of
maliut
I think you could achieve it by RegExp string replacement: ```javascript const regex = /\[([^[\]]+)\]/ function parseExpression(expression, roller) { if (regex.test(expression)) { expression = expression.replace(regex, (_, notation) => { const...
@saadeghi I have encountered similar issues that the generated CSS have wierd `!important` rules. And finally I found it's from Tailwind CSS [Important modifier](https://tailwindcss.com/docs/configuration#important-modifier). The problem is, I did not...