mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
16 lines
303 B
TypeScript
16 lines
303 B
TypeScript
import { Line } from '@codemirror/state';
|
|
|
|
const blockQuoteRegex = /^>\s/;
|
|
|
|
export const stripBlockquote = (line: Line): string => {
|
|
const match = line.text.match(blockQuoteRegex);
|
|
|
|
if (match) {
|
|
return line.text.substring(match[0].length);
|
|
}
|
|
|
|
return line.text;
|
|
};
|
|
|
|
export default stripBlockquote;
|