📄 tagtable.java
字号:
new Dict( "em", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "strong", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "dfn", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "code", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "samp", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "kbd", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "var", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "cite", Dict.VERS_ALL, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "abbr", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "acronym", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "span", Dict.VERS_FROM32, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "blink", Dict.VERS_PROPRIETARY, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "nobr", Dict.VERS_PROPRIETARY, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "wbr", Dict.VERS_PROPRIETARY, (Dict.CM_INLINE|Dict.CM_EMPTY), null, null ),
new Dict( "marquee", Dict.VERS_MICROSOFT, (Dict.CM_INLINE|Dict.CM_OPT), ParserImpl.getParseInline(), null ),
new Dict( "bgsound", Dict.VERS_MICROSOFT, (Dict.CM_HEAD|Dict.CM_EMPTY), null, null ),
new Dict( "comment", Dict.VERS_MICROSOFT, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "spacer", Dict.VERS_NETSCAPE, (Dict.CM_INLINE|Dict.CM_EMPTY), null, null ),
new Dict( "keygen", Dict.VERS_NETSCAPE, (Dict.CM_INLINE|Dict.CM_EMPTY), null, null ),
new Dict( "nolayer", Dict.VERS_NETSCAPE, (Dict.CM_BLOCK|Dict.CM_INLINE|Dict.CM_MIXED), ParserImpl.getParseBlock(), null ),
new Dict( "ilayer", Dict.VERS_NETSCAPE, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "map", Dict.VERS_FROM32, Dict.CM_INLINE, ParserImpl.getParseBlock(), CheckAttribsImpl.getCheckMap() ),
new Dict( "area", Dict.VERS_ALL, (Dict.CM_BLOCK|Dict.CM_EMPTY), null, CheckAttribsImpl.getCheckAREA() ),
new Dict( "input", Dict.VERS_ALL, (Dict.CM_INLINE|Dict.CM_IMG|Dict.CM_EMPTY), null, null ),
new Dict( "select", Dict.VERS_ALL, (Dict.CM_INLINE|Dict.CM_FIELD), ParserImpl.getParseSelect(), null ),
new Dict( "option", Dict.VERS_ALL, (Dict.CM_FIELD|Dict.CM_OPT), ParserImpl.getParseText(), null ),
new Dict( "optgroup", Dict.VERS_HTML40, (Dict.CM_FIELD|Dict.CM_OPT), ParserImpl.getParseOptGroup(), null ),
new Dict( "textarea", Dict.VERS_ALL, (Dict.CM_INLINE|Dict.CM_FIELD), ParserImpl.getParseText(), null ),
new Dict( "label", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "legend", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "button", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "basefont", Dict.VERS_LOOSE, (Dict.CM_INLINE|Dict.CM_EMPTY), null, null ),
new Dict( "font", Dict.VERS_LOOSE, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
new Dict( "bdo", Dict.VERS_HTML40, Dict.CM_INLINE, ParserImpl.getParseInline(), null ),
};
/* create dummy entry for all xml tags */
public static Dict xmlTags = new Dict( null, Dict.VERS_ALL, Dict.CM_BLOCK, null, null );
public static Dict tagHtml = null;
public static Dict tagHead = null;
public static Dict tagBody = null;
public static Dict tagFrameset = null;
public static Dict tagFrame = null;
public static Dict tagNoframes = null;
public static Dict tagMeta = null;
public static Dict tagTitle = null;
public static Dict tagBase = null;
public static Dict tagHr = null;
public static Dict tagPre = null;
public static Dict tagListing = null;
public static Dict tagH1 = null;
public static Dict tagH2 = null;
public static Dict tagP = null;
public static Dict tagUl = null;
public static Dict tagOl = null;
public static Dict tagDir = null;
public static Dict tagLi = null;
public static Dict tagDt = null;
public static Dict tagDd = null;
public static Dict tagDl = null;
public static Dict tagTd = null;
public static Dict tagTh = null;
public static Dict tagTr = null;
public static Dict tagCol = null;
public static Dict tagBr = null;
public static Dict tagA = null;
public static Dict tagLink = null;
public static Dict tagB = null;
public static Dict tagI = null;
public static Dict tagStrong = null;
public static Dict tagEm = null;
public static Dict tagBig = null;
public static Dict tagSmall = null;
public static Dict tagParam = null;
public static Dict tagOption = null;
public static Dict tagOptgroup = null;
public static Dict tagImg = null;
public static Dict tagMap = null;
public static Dict tagArea = null;
public static Dict tagNobr = null;
public static Dict tagWbr = null;
public static Dict tagFont = null;
public static Dict tagSpacer = null;
public static Dict tagLayer = null;
public static Dict tagCenter = null;
public static Dict tagStyle = null;
public static Dict tagScript = null;
public static Dict tagNoscript = null;
public static Dict tagTable = null;
public static Dict tagCaption = null;
public static Dict tagForm = null;
public static Dict tagTextarea = null;
public static Dict tagBlockquote = null;
public static Dict tagApplet = null;
public static Dict tagObject = null;
public static Dict tagDiv = null;
public static Dict tagSpan = null;
public void defineInlineTag( String name )
{
install( new Dict( name, Dict.VERS_PROPRIETARY,
(Dict.CM_INLINE|Dict.CM_NO_INDENT|Dict.CM_NEW),
ParserImpl.getParseBlock(), null ) );
}
public void defineBlockTag( String name )
{
install( new Dict( name, Dict.VERS_PROPRIETARY,
(Dict.CM_BLOCK|Dict.CM_NO_INDENT|Dict.CM_NEW),
ParserImpl.getParseBlock(), null ) );
}
public void defineEmptyTag(String name)
{
install(new Dict(name, Dict.VERS_PROPRIETARY,
(Dict.CM_EMPTY|Dict.CM_NO_INDENT|Dict.CM_NEW),
ParserImpl.getParseBlock(), null));
}
public void definePreTag(String name)
{
install(new Dict(name, Dict.VERS_PROPRIETARY,
(Dict.CM_BLOCK|Dict.CM_NO_INDENT|Dict.CM_NEW),
ParserImpl.getParsePre(), null));
}
public static TagTable getDefaultTagTable()
{
if ( defaultTagTable == null ) {
defaultTagTable = new TagTable();
for ( int i = 0; i < tags.length; i++ ) {
defaultTagTable.install( tags[i] );
}
tagHtml = defaultTagTable.lookup("html");
tagHead = defaultTagTable.lookup("head");
tagBody = defaultTagTable.lookup("body");
tagFrameset = defaultTagTable.lookup("frameset");
tagFrame = defaultTagTable.lookup("frame");
tagNoframes = defaultTagTable.lookup("noframes");
tagMeta = defaultTagTable.lookup("meta");
tagTitle = defaultTagTable.lookup("title");
tagBase = defaultTagTable.lookup("base");
tagHr = defaultTagTable.lookup("hr");
tagPre = defaultTagTable.lookup("pre");
tagListing = defaultTagTable.lookup("listing");
tagH1 = defaultTagTable.lookup("h1");
tagH2 = defaultTagTable.lookup("h2");
tagP = defaultTagTable.lookup("p");
tagUl = defaultTagTable.lookup("ul");
tagOl = defaultTagTable.lookup("ol");
tagDir = defaultTagTable.lookup("dir");
tagLi = defaultTagTable.lookup("li");
tagDt = defaultTagTable.lookup("dt");
tagDd = defaultTagTable.lookup("dd");
tagDl = defaultTagTable.lookup("dl");
tagTd = defaultTagTable.lookup("td");
tagTh = defaultTagTable.lookup("th");
tagTr = defaultTagTable.lookup("tr");
tagCol = defaultTagTable.lookup("col");
tagBr = defaultTagTable.lookup("br");
tagA = defaultTagTable.lookup("a");
tagLink = defaultTagTable.lookup("link");
tagB = defaultTagTable.lookup("b");
tagI = defaultTagTable.lookup("i");
tagStrong = defaultTagTable.lookup("strong");
tagEm = defaultTagTable.lookup("em");
tagBig = defaultTagTable.lookup("big");
tagSmall = defaultTagTable.lookup("small");
tagParam = defaultTagTable.lookup("param");
tagOption = defaultTagTable.lookup("option");
tagOptgroup = defaultTagTable.lookup("optgroup");
tagImg = defaultTagTable.lookup("img");
tagMap = defaultTagTable.lookup("map");
tagArea = defaultTagTable.lookup("area");
tagNobr = defaultTagTable.lookup("nobr");
tagWbr = defaultTagTable.lookup("wbr");
tagFont = defaultTagTable.lookup("font");
tagSpacer = defaultTagTable.lookup("spacer");
tagLayer = defaultTagTable.lookup("layer");
tagCenter = defaultTagTable.lookup("center");
tagStyle = defaultTagTable.lookup("style");
tagScript = defaultTagTable.lookup("script");
tagNoscript = defaultTagTable.lookup("noscript");
tagTable = defaultTagTable.lookup("table");
tagCaption = defaultTagTable.lookup("caption");
tagForm = defaultTagTable.lookup("form");
tagTextarea = defaultTagTable.lookup("textarea");
tagBlockquote = defaultTagTable.lookup("blockquote");
tagApplet = defaultTagTable.lookup("applet");
tagObject = defaultTagTable.lookup("object");
tagDiv = defaultTagTable.lookup("div");
tagSpan = defaultTagTable.lookup("span");
}
return defaultTagTable;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -