We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59779ca commit 71e08a6Copy full SHA for 71e08a6
blocks/file-blocks/markdown-edit/copy-widget.tsx
@@ -182,7 +182,7 @@ export const copy = ({
182
widgets.push(newDecoration.range(state.doc.lineAt(from).from));
183
} else if (type.name === "SetextHeading2") {
184
const newDecoration = horizontalRuleDecorationAfter();
185
- widgets.push(newDecoration.range(from, to));
+ widgets.push(newDecoration.range(to - 3, to));
186
} else if (type.name === "Link") {
187
const text = state.doc.sliceString(from, to);
188
const linkRegex = /\[.*?\]\((?<url>.*?)\)/;
0 commit comments