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/inline-code.ts | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/text/parse/elements/inline-code.ts (limited to 'src/text/parse/elements/inline-code.ts') diff --git a/src/text/parse/elements/inline-code.ts b/src/text/parse/elements/inline-code.ts deleted file mode 100644 index 1dd5affa51..0000000000 --- a/src/text/parse/elements/inline-code.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Code (inline) - */ - -import genHtml from '../core/syntax-highlighter'; - -export type TextElementInlineCode = { - type: 'inline-code' - content: string - code: string - html: string -}; - -export default function(text: string) { - const match = text.match(/^`(.+?)`/); - if (!match) return null; - const code = match[0]; - return { - type: 'inline-code', - content: code, - code: code.substr(1, code.length - 2).trim(), - html: genHtml(code.substr(1, code.length - 2).trim()) - } as TextElementInlineCode; -} -- cgit v1.2.3-freya