import type { TCodeExampleIO } from "../../_models/t-code-example-io";
const FootnotesListItemDefaultExample: TCodeExampleIO = {
from: `"footnotesListItem": {
"enabled": true,
"element": {
"name": "li"
}
}`,
to: `
Footnote text
`,
};
const FootnotesListItemCustomElementExample: TCodeExampleIO = {
from: `"footnotesListItem": {
"enabled": true,
"element": {
"name": "div",
}
}`,
to: `
Footnote text
`,
};
const FootnotesListItemCustomAttrsExample: TCodeExampleIO = {
from: `"footnotesListItem": {
"enabled": true,
"element": {
"name": "li",
"attrs": {
"class": "footnote-list-item"
}
}`,
to: ``,
};
export {
FootnotesListItemCustomAttrsExample,
FootnotesListItemCustomElementExample,
FootnotesListItemDefaultExample
};