secst
Version:
SECST is a semantic, extensible, computational, styleable tagged markup language. You can use it to joyfully create compelling, interactive documents backed by HTML.
24 lines (21 loc) • 471 B
JavaScript
import phrasingContent from "./phrasing-content.js";
import forEach from "./for-each.js";
import forEntries from "./for-entries.js";
const contentAllowed = {
...phrasingContent
};
delete contentAllowed.dl;
const dl = {
contentAllowed: {
forEach,
forEntries,
dt: {
contentAllowed
},
dd: {
contentAllowed
}
}
}
dl.contentAllowed.dl = dl;
export {dl,dl as default}