HTML-Renderer
HTML-Renderer copied to clipboard
css class names with periods don't work
Consider
<span class="token property">property</span>
This CSS should work, but doesn't:
.token.property {
color: #c92c2c;
}
But this does
.property {
color: #c92c2c;
}