You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can make a rule that registers <span class="code"> and </span> as HTML tags (<[\s\w="\/;'.,:?-]+>), but I then want to look inside the matched region and match keywords like class and strings. I can't do this with single-level patterns. This will need sub-patterns to accomplish.
The text was updated successfully, but these errors were encountered:
Been a while, but getting around to this with a large refactor of the project.
Having distinct <themes> declaring style independent from the <rule> items in a <language> was neat and all, letting there be multiple themes... but its also a bit of a pain to maintain the two separate blocks.
A sample of the new Java language XML looking specifically at the javadoc-comment rule.
Lets say I have the following text:
I can make a rule that registers
<span class="code">
and</span>
as HTML tags (<[\s\w="\/;'.,:?-]+>
), but I then want to look inside the matched region and match keywords likeclass
and strings. I can't do this with single-level patterns. This will need sub-patterns to accomplish.The text was updated successfully, but these errors were encountered: