UNPKG

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.

18 lines (16 loc) 377 B
import phrasingContent from "./phrasing-content.js"; const blockquote = { contentAllowed: { ...phrasingContent }, attributesAllowed: { cite(value) { new URL(value) } }, transform(node) { return node; } } delete blockquote.contentAllowed.blockquote; export {blockquote,blockquote as default}