From 79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 21 Jun 2018 01:21:57 +0900 Subject: リモートユーザーのHTMLで表現されたプロフィールをMFMに変換するように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/text/parse/elements/quote.ts | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/text/parse/elements/quote.ts (limited to 'src/text/parse/elements/quote.ts') diff --git a/src/text/parse/elements/quote.ts b/src/text/parse/elements/quote.ts deleted file mode 100644 index bef9ad4988..0000000000 --- a/src/text/parse/elements/quote.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * 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; -} -- cgit v1.2.3-freya