diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-21 01:21:57 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-21 01:21:57 +0900 |
| commit | 79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89 (patch) | |
| tree | ed8f50f01cc50cf851dc0d0f399ed7e0f514f6c6 /src/text/parse/elements/quote.ts | |
| parent | Disable transitions to avoid memory leak (diff) | |
| download | misskey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.tar.gz misskey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.tar.bz2 misskey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.zip | |
リモートユーザーのHTMLで表現されたプロフィールをMFMに変換するように
Diffstat (limited to 'src/text/parse/elements/quote.ts')
| -rw-r--r-- | src/text/parse/elements/quote.ts | 20 |
1 files changed, 0 insertions, 20 deletions
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; -} |