Support blockquotes in Classic editor

Ref T727
This commit is contained in:
Matt Baer 2021-04-29 17:07:40 -04:00
parent c01fb585ba
commit 5a4ff2a9de
4 changed files with 6 additions and 6 deletions

View File

@ -293,7 +293,8 @@ li.ProseMirror-selectednode:after {
.ProseMirror blockquote {
padding-left: 1em;
border-left: 3px solid #eee;
border-left: 4px solid #ddd;
color: #767676;
margin-left: 0;
margin-right: 0;
}

View File

@ -7,7 +7,7 @@ export const writeFreelyMarkdownParser = new MarkdownParser(
writeFreelySchema,
markdownit("commonmark", { html: true }),
{
// blockquote: { block: "blockquote" },
blockquote: { block: "blockquote" },
paragraph: { block: "paragraph" },
list_item: { block: "list_item" },
bullet_list: { block: "bullet_list" },

View File

@ -32,9 +32,9 @@ export const writeFreelyMarkdownSerializer = new MarkdownSerializer(
state.write("<!--more-->\n");
state.closeBlock(node);
},
// blockquote(state, node) {
// state.wrapBlock("> ", undefined, node, () => state.renderContent(node));
// },
blockquote(state, node) {
state.wrapBlock("> ", null, node, () => state.renderContent(node));
},
code_block(state, node) {
state.write(`\`\`\`${node.attrs.params || ""}\n`);
state.text(node.textContent, false);

View File

@ -3,7 +3,6 @@ import { Schema } from "prosemirror-model";
export const writeFreelySchema = new Schema({
nodes: schema.spec.nodes
.remove("blockquote")
.addToEnd("readmore", {
inline: false,
content: "",