1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00
This commit is contained in:
gnosygnu
2015-06-14 21:52:10 -04:00
parent 51e6188c1e
commit fe0ce6340d
159 changed files with 1381 additions and 483 deletions

View File

@@ -119,6 +119,7 @@ public class Xop_xatr_whitelist_mgr {
Ini_nde(Xop_xnde_tag_.Tid_bdi , "common");
Ini_nde(Xop_xnde_tag_.Tid_data , "common", "value");
Ini_nde(Xop_xnde_tag_.Tid_mark , "common");
Ini_nde(Xop_xnde_tag_.Tid_q , "common");
Ini_all_loose("data");
return this;
}

View File

@@ -136,8 +136,9 @@ public class Xop_xnde_tag_ {
, Tid_xowa_tag_end = 110
, Tid_quiz = 111
, Tid_indicator = 112
, Tid_q = 113
;
public static final int _MaxLen = 113;
public static final int _MaxLen = 114;
public static final Xop_xnde_tag[] Ary = new Xop_xnde_tag[_MaxLen];
private static Xop_xnde_tag new_(int id, String name) {
Xop_xnde_tag rv = new Xop_xnde_tag(id, name);
@@ -258,5 +259,6 @@ public class Xop_xnde_tag_ {
, Tag_xowa_tag_end = new_(Tid_xowa_tag_end, "xtag_end").Xtn_()
, Tag_quiz = new_(Tid_quiz, "quiz").Xtn_()
, Tag_indicator = new_(Tid_indicator, "indicator").Xtn_()
, Tag_q = new_(Tid_q, "q")
;
}

View File

@@ -152,4 +152,7 @@ public class Xop_xnde_wkr__basic_tst {
fxt.Test_parse_page_all_str("{{test}}", "<pre>{{a}}</pre>");
fxt.Init_defn_clear();
}
@Test public void Quote() {// PURPOSE: handle <q> element; DATE:2015-05-29
fxt.Test_parse_page_wiki_str("<q>a</q>", "<q>a</q>");
}
}