import { name, version } from '../data.mjs'
const markers = `
`
export const notches = {
name,
version,
hooks: {
preRender: function (svg) {
if (svg.defs.indexOf(`id="notch"`) === -1) svg.defs += markers
},
},
}
// More specifically named exports
export const notchesPlugin = notches
export const pluginNotches = notches