mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
83924194f5
refs https://github.com/TryGhost/Ghost/issues/9724 - added `{{koenig-basic-html-input}}` component - uses a stripped down version of Koenig - supports all inline formatting that Koenig supports - supports inline text expansions - supports inline key commands - limited to a single paragraph - serialises and deserialises from HTML rather than mobiledoc - updated `{{koenig-caption-input}}` to use `{{koenig-basic-html-input}}` - updated image and embed cards to calculate word counts correctly for html captions - bumped Spirit dependency to fix styling of toolbars within the editor canvas - fixed positioning in toolbar components to account for `parentElement` not necessarily being the closest element to position against
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
export function removeBR(node, builder, {addMarkerable, nodeFinished}) {
|
|
if (node.nodeType !== 1 || node.tagName !== 'BR') {
|
|
return;
|
|
}
|
|
|
|
addMarkerable(builder.createMarker(' '));
|
|
nodeFinished();
|
|
}
|
|
|
|
export default [
|
|
removeBR
|
|
];
|