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