mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
23 lines
460 B
Java
23 lines
460 B
Java
package com.intellij.lexer;
|
|
|
|
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: Maxim.Mossienko
|
|
* Date: Oct 7, 2004
|
|
* Time: 5:17:07 PM
|
|
* To change this template use File | Settings | File Templates.
|
|
*/
|
|
public class XHtmlLexer extends HtmlLexer {
|
|
protected XHtmlLexer(Lexer baseLexer) {
|
|
super(baseLexer,false);
|
|
}
|
|
|
|
public XHtmlLexer() {
|
|
this(new XmlLexer());
|
|
}
|
|
|
|
protected boolean isHtmlTagState(int state) {
|
|
return state == _XmlLexer.TAG;
|
|
}
|
|
}
|