claude-export icon indicating copy to clipboard operation
claude-export copied to clipboard

`BLOCKQUOTE` support

Open 7shi opened this issue 1 year ago • 0 comments

blockquote disappears. Here is a simple implementation.

// Quotes
if (tag === "BLOCKQUOTE") {
  for (const line of text.trim().split("\n")) {
    markdown += `> ${line}\n`;
  }
}

7shi avatar May 04 '24 17:05 7shi