Peter van Westen
Peter van Westen
Would it be possible to implement the possibility to add an extra ordering attribute to elements? Either via some attribute in the anchor elements themselves or via a parameter in...
What is the reason by the name `toSpliced()` and not something like `removeValues()` or `replaceValues()`? And why `with()` and not something like `replaceValue()`?
The css is messed up when the names contain periods, like: ``` '0.5': '0.125rem' ``` This will result in css like: ``` .-indent-0.\35{ text-indent: -0.125rem; } ``` After this fix...
Came across this line: ``` $body = RegEx::replace('...(some).*?(regex)...', '\\1\\2', $body); ``` Which got replaced with: ``` $body = \MyPhpScoperPrefix\RegEx::replace('...(some).*?(regex)...', '\MyPhpScoperPrefix\\1\\2', $body); ``` I worked around this issue by adding this...