72 lines
No EOL
1.7 KiB
JavaScript
72 lines
No EOL
1.7 KiB
JavaScript
import {MarkdownSerializer, defaultMarkdownSerializer} from "prosemirror-markdown";
|
|
import {docToHtml} from "./util";
|
|
|
|
const nodes = defaultMarkdownSerializer.nodes;
|
|
const marks = defaultMarkdownSerializer.marks;
|
|
|
|
|
|
nodes.callout = function(state, node) {
|
|
writeNodeAsHtml(state, node);
|
|
};
|
|
|
|
|
|
marks.underline = {
|
|
open: '<span style="text-decoration: underline;">',
|
|
close: '</span>',
|
|
};
|
|
|
|
marks.strike = {
|
|
open: '<span style="text-decoration: line-through;">',
|
|
close: '</span>',
|
|
};
|
|
|
|
marks.superscript = {
|
|
open: '<sup>',
|
|
close: '</sup>',
|
|
};
|
|
|
|
marks.subscript = {
|
|
open: '<sub>',
|
|
close: '</sub>',
|
|
};
|
|
|
|
marks.text_color = {
|
|
open(state, mark, parent, index) {
|
|
return `<span style="color: ${mark.attrs.color};">`
|
|
},
|
|
close: '</span>',
|
|
};
|
|
|
|
marks.background_color = {
|
|
open(state, mark, parent, index) {
|
|
return `<span style="background-color: ${mark.attrs.color};">`
|
|
},
|
|
close: '</span>',
|
|
};
|
|
|
|
|
|
function writeNodeAsHtml(state, node) {
|
|
const html = docToHtml({ content: [node] });
|
|
state.write(html);
|
|
state.ensureNewLine();
|
|
state.write('\n');
|
|
state.closeBlock();
|
|
}
|
|
|
|
// Update serializers to just write out as HTML if we have an attribute
|
|
// or element that cannot be represented in commonmark without losing
|
|
// formatting or content.
|
|
for (const [nodeType, serializerFunction] of Object.entries(nodes)) {
|
|
nodes[nodeType] = function(state, node, parent, index) {
|
|
if (node.attrs.align) {
|
|
writeNodeAsHtml(state, node);
|
|
} else {
|
|
serializerFunction(state, node, parent, index);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
const serializer = new MarkdownSerializer(nodes, marks);
|
|
|
|
export default serializer; |