Fixed issue with new nodes being callouts
This commit is contained in:
parent
81dfe9c345
commit
47c3d4fc0f
1 changed files with 6 additions and 6 deletions
|
@ -12,11 +12,11 @@ const nodeCallout = {
|
||||||
group: "block",
|
group: "block",
|
||||||
defining: true,
|
defining: true,
|
||||||
parseDOM: [
|
parseDOM: [
|
||||||
{tag: 'p.callout.info', attrs: {type: 'info'}},
|
{tag: 'p.callout.info', attrs: {type: 'info'}, priority: 75,},
|
||||||
{tag: 'p.callout.success', attrs: {type: 'success'}},
|
{tag: 'p.callout.success', attrs: {type: 'success'}, priority: 75,},
|
||||||
{tag: 'p.callout.danger', attrs: {type: 'danger'}},
|
{tag: 'p.callout.danger', attrs: {type: 'danger'}, priority: 75,},
|
||||||
{tag: 'p.callout.warning', attrs: {type: 'warning'}},
|
{tag: 'p.callout.warning', attrs: {type: 'warning'}, priority: 75,},
|
||||||
{tag: 'p.callout', attrs: {type: 'info'}},
|
{tag: 'p.callout', attrs: {type: 'info'}, priority: 75},
|
||||||
],
|
],
|
||||||
toDOM: function(node) {
|
toDOM: function(node) {
|
||||||
const type = node.attrs.type || 'info';
|
const type = node.attrs.type || 'info';
|
||||||
|
@ -24,7 +24,7 @@ const nodeCallout = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const customNodes = baseNodes.prepend({
|
const customNodes = baseNodes.append({
|
||||||
callout: nodeCallout,
|
callout: nodeCallout,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue