mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
15 lines
398 B
Java
15 lines
398 B
Java
package com.intellij.lexer;
|
|
|
|
public class XHtmlHighlightingLexer extends HtmlHighlightingLexer {
|
|
public XHtmlHighlightingLexer() {
|
|
this(new XmlLexer(),false);
|
|
}
|
|
|
|
protected XHtmlHighlightingLexer(Lexer baseLexer, boolean withEl) {
|
|
super(baseLexer,false,withEl);
|
|
}
|
|
|
|
protected boolean isHtmlTagState(int state) {
|
|
return state == _XmlLexer.TAG || state == _XmlLexer.END_TAG;
|
|
}
|
|
} |