misskey/src/mfm/parse/elements/quote.ts

20 lines
367 B
TypeScript

/**
* Quoted text
*/
export type TextElementQuote = {
type: 'quote'
content: string
quote: string
};
export default function(text: string) {
const match = text.match(/^"([\s\S]+?)\n"/);
if (!match) return null;
const quote = match[0];
return {
type: 'quote',
content: quote,
quote: quote.substr(1, quote.length - 2).trim(),
} as TextElementQuote;
}