import type { TCodeExampleIO } from "../../_models/t-code-example-io"; const FootnotesListDefaultExample: TCodeExampleIO = { from: `"footnotesList": { "enabled": true, "element": { "name": "ul" } }`, to: ``, }; const FootnotesListCustomElementExample: TCodeExampleIO = { from: `"footnotesList": { "enabled": true, "element": { "name": "ol", } }`, to: `
    ...
`, }; const FootnotesListCustomAttrsExample: TCodeExampleIO = { from: `"footnotesList": { "enabled": true, "element": { "name": "ul", "attrs": { "class": "footnotes-list" } }`, to: ``, }; export { FootnotesListCustomAttrsExample, FootnotesListCustomElementExample, FootnotesListDefaultExample };