discourse/plugins/discourse-details/assets/javascripts/lib/discourse-markdown/details.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
645 B
JavaScript
Raw Normal View History

const rule = {
2018-06-15 12:42:20 -04:00
tag: "details",
before(state, tagInfo) {
2017-07-21 16:16:07 -04:00
const attrs = tagInfo.attrs;
2018-06-15 12:42:20 -04:00
state.push("bbcode_open", "details", 1);
state.push("bbcode_open", "summary", 1);
2018-06-15 12:42:20 -04:00
let token = state.push("text", "", 0);
token.content = attrs["_default"] || "";
2018-06-15 12:42:20 -04:00
state.push("bbcode_close", "summary", -1);
},
after(state) {
2018-06-15 12:42:20 -04:00
state.push("bbcode_close", "details", -1);
},
};
export function setup(helper) {
helper.allowList([
2018-06-15 12:42:20 -04:00
"summary",
"summary[title]",
"details",
"details[open]",
"details.elided",
]);
helper.registerPlugin((md) => {
2018-06-15 12:42:20 -04:00
md.block.bbcode.ruler.push("details", rule);
});
}