1234567891011121314151617181920212223242526 |
- import { Fence } from '@/components/Fence'
- const nodes = {
- document: {
- render: undefined,
- },
- th: {
- attributes: {
- scope: {
- type: String,
- default: 'col',
- },
- },
- render: (props) => <th {...props} />,
- },
- fence: {
- render: Fence,
- attributes: {
- language: {
- type: String,
- },
- },
- },
- }
- export default nodes
|