diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-06-27 00:55:44 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-27 00:55:44 +0900 |
| commit | 9ac34badad7a99166907e1a42f8a817413a74d58 (patch) | |
| tree | eb45b75f1f5f87a36f0eefec42f449fda109a6ad /src/mfm/parse/elements/code.ts | |
| parent | New translations ja.yml (Portuguese) (diff) | |
| parent | Merge pull request #1789 from syuilo/greenkeeper/uuid-3.3.0 (diff) | |
| download | misskey-9ac34badad7a99166907e1a42f8a817413a74d58.tar.gz misskey-9ac34badad7a99166907e1a42f8a817413a74d58.tar.bz2 misskey-9ac34badad7a99166907e1a42f8a817413a74d58.zip | |
Merge branch 'master' into l10n_master
Diffstat (limited to 'src/mfm/parse/elements/code.ts')
| -rw-r--r-- | src/mfm/parse/elements/code.ts | 24 |
1 files changed, 24 insertions, 0 deletions
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; +} |