Make math node handling better

This commit is contained in:
Philipinho 2024-07-22 13:05:07 +01:00
parent 78746938b7
commit cd47c79d86
2 changed files with 15 additions and 7 deletions

View File

@ -36,7 +36,9 @@ export const MathBlock = Node.create({
return {
text: {
default: "",
parseHTML: (element) => element.innerHTML.split("$")[1],
parseHTML: (element) => {
return element.innerHTML;
},
},
};
},
@ -44,7 +46,7 @@ export const MathBlock = Node.create({
parseHTML() {
return [
{
tag: "div",
tag: `div[data-type="${this.name}"]`,
getAttrs: (node: HTMLElement) => {
return node.hasAttribute("data-katex") ? {} : false;
},
@ -55,8 +57,8 @@ export const MathBlock = Node.create({
renderHTML({ HTMLAttributes }) {
return [
"div",
{},
["div", { "data-katex": true }, `$$${HTMLAttributes.text}$$`],
{ "data-type": this.name, "data-katex": true },
`${HTMLAttributes.text}`,
];
},

View File

@ -37,7 +37,9 @@ export const MathInline = Node.create<MathInlineOption>({
return {
text: {
default: "",
parseHTML: (element) => element.innerHTML.split("$")[1],
parseHTML: (element) => {
return element.innerHTML;
},
},
};
},
@ -45,7 +47,7 @@ export const MathInline = Node.create<MathInlineOption>({
parseHTML() {
return [
{
tag: "span",
tag: `span[data-type="${this.name}"]`,
getAttrs: (node: HTMLElement) => {
return node.hasAttribute("data-katex") ? {} : false;
},
@ -54,7 +56,11 @@ export const MathInline = Node.create<MathInlineOption>({
},
renderHTML({ HTMLAttributes }) {
return ["span", { "data-katex": true }, `$${HTMLAttributes.text}$` || {}];
return [
"span",
{ "data-type": this.name, "data-katex": true },
`${HTMLAttributes.text}`,
];
},
addNodeView() {