Commit 8d55c6a2 authored by Liang Ding's avatar Liang Ding

🎨 #12721

parent d639f2a8
...@@ -63,13 +63,15 @@ public class ListHandler extends AbstractEventListener<JSONObject> { ...@@ -63,13 +63,15 @@ public class ListHandler extends AbstractEventListener<JSONObject> {
final String tagName = element.tagName().toLowerCase(); final String tagName = element.tagName().toLowerCase();
final String text = element.text(); final String text = element.text();
final String id = "b3_solo_" + tagName + "_" + i; final String id = "b3_solo_" + tagName + "_" + i;
element.before("<span id='" + id + "'></span>"); element.attr("id", id);
final JSONObject li = new JSONObject(). final JSONObject li = new JSONObject().
put("className", "toc__" + tagName). put("className", "toc__" + tagName).
put("id", id). put("id", id).
put("text", text); put("text", text);
toc.add(li); toc.add(li);
} }
final Element body = doc.getElementsByTag("body").get(0);
article.put(Article.ARTICLE_CONTENT, body.html());
article.put(Article.ARTICLE_T_TOC, (Object) toc); article.put(Article.ARTICLE_T_TOC, (Object) toc);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment