An issue i'm having with the class parsing portion of the editor is that it doesn't seem to want to parse classes
if the class name contains a symbol.
e.g.
.text-style {
color:red;
}
will not appear in the styles drop down despite being a valid class name, however the following will:
.textstyle{
color:red;
}
a fix for this would be appreciated.