Skip to content

Commit 71e08a6

Browse files
committed
markdown - fix hr after metadata
1 parent 59779ca commit 71e08a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blocks/file-blocks/markdown-edit/copy-widget.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const copy = ({
182182
widgets.push(newDecoration.range(state.doc.lineAt(from).from));
183183
} else if (type.name === "SetextHeading2") {
184184
const newDecoration = horizontalRuleDecorationAfter();
185-
widgets.push(newDecoration.range(from, to));
185+
widgets.push(newDecoration.range(to - 3, to));
186186
} else if (type.name === "Link") {
187187
const text = state.doc.sliceString(from, to);
188188
const linkRegex = /\[.*?\]\((?<url>.*?)\)/;

0 commit comments

Comments
 (0)