This will correctly produce a CSS selector as `#foo-item`: ```html <div id="foo-item"/> ``` This however will unexpectedly produce a CSS selector as `#fooItem`: ```html <div id="foo-item[]"/> ``` I would expect both to produce `#foo-item` Thanks in advance!
This will correctly produce a CSS selector as
#foo-item:This however will unexpectedly produce a CSS selector as
#fooItem:I would expect both to produce
#foo-itemThanks in advance!