import type { TCodeExampleIO } from "../../_models/t-code-example-io";
const EndnotesWrapperDefaultExample: TCodeExampleIO = {
from: `"endnotesWrapper": {
"enabled": true,
"element": {
"name": "div",
"attrs": {
"class": "endnotes-section"
}
}
}`,
to: `
...
`,
};
const EndnotesWrapperCustomElementExample: TCodeExampleIO = {
from: `"endnotesWrapper": {
"enabled": true,
"element": {
"name": "section",
"attrs": {
"class": "endnotes-section"
}
}
}`,
to: ``,
};
const EndnotesWrapperCustomAttrsExample: TCodeExampleIO = {
from: `"endnotesWrapper": {
"enabled": true,
"element": {
"name": "div",
"attrs": {
"data-section": "endnotes"
}
}
}`,
to: `
...
`,
};
export {
EndnotesWrapperCustomAttrsExample,
EndnotesWrapperCustomElementExample,
EndnotesWrapperDefaultExample
};