mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:52:52 +08:00
96a16123d8
Headings with the exact same name generated exactly the same heading names, which was invalid. This replaces the old code for generating names for non-English headings which were using URI encode and resulted in unreadable headings.
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
export function setup(helper) {
|
|
if (helper.getOptions().previewing) {
|
|
return;
|
|
}
|
|
|
|
helper.registerPlugin((md) => {
|
|
md.core.ruler.push("anchor", (state) => {
|
|
for (
|
|
let idx = 0, lvl = 0, headingId = 0;
|
|
idx < state.tokens.length;
|
|
idx++
|
|
) {
|
|
if (
|
|
state.tokens[idx].type === "blockquote_open" ||
|
|
(state.tokens[idx].type === "bbcode_open" &&
|
|
state.tokens[idx].tag === "aside")
|
|
) {
|
|
++lvl;
|
|
} else if (
|
|
state.tokens[idx].type === "blockquote_close" ||
|
|
(state.tokens[idx].type === "bbcode_close" &&
|
|
state.tokens[idx].tag === "aside")
|
|
) {
|
|
--lvl;
|
|
}
|
|
|
|
if (lvl > 0 || state.tokens[idx].type !== "heading_open") {
|
|
continue;
|
|
}
|
|
|
|
const linkOpen = new state.Token("link_open", "a", 1);
|
|
const linkClose = new state.Token("link_close", "a", -1);
|
|
|
|
let slug = state.tokens[idx + 1].content
|
|
.toLowerCase()
|
|
.replace(/\s+/g, "-")
|
|
.replace(/[^\w\-]+/g, "")
|
|
.replace(/\-\-+/g, "-")
|
|
.replace(/^-+/, "")
|
|
.replace(/-+$/, "");
|
|
|
|
slug = `${slug || "heading"}-${++headingId}`;
|
|
|
|
linkOpen.attrSet("name", slug);
|
|
linkOpen.attrSet("class", "anchor");
|
|
linkOpen.attrSet("href", "#" + slug);
|
|
|
|
state.tokens[idx + 1].children.unshift(linkClose);
|
|
state.tokens[idx + 1].children.unshift(linkOpen);
|
|
}
|
|
});
|
|
});
|
|
}
|