import type { TCodeExampleIO } from "../../_models/t-code-example-io"; const FootnotesWrapperDefaultExample: TCodeExampleIO = { from: `"footnotesWrapper": { "enabled": true, "element": { "name": "div", "attrs": { "class": "footnotes-section" } } }`, to: `
...
`, }; const FootnotesWrapperCustomElementExample: TCodeExampleIO = { from: `"footnotesWrapper": { "enabled": true, "element": { "name": "section", "attrs": { "class": "footnotes-section" } } }`, to: `
...
`, }; const FootnotesWrapperCustomAttrsExample: TCodeExampleIO = { from: `"footnotesWrapper": { "enabled": true, "element": { "name": "div", "attrs": { "data-section": "footnotes" } } }`, to: `
...
`, }; export { FootnotesWrapperCustomAttrsExample, FootnotesWrapperCustomElementExample, FootnotesWrapperDefaultExample };