summaryrefslogtreecommitdiff
path: root/src/text/parse/elements/inline-code.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-21 01:21:57 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-21 01:21:57 +0900
commit79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89 (patch)
treeed8f50f01cc50cf851dc0d0f399ed7e0f514f6c6 /src/text/parse/elements/inline-code.ts
parentDisable transitions to avoid memory leak (diff)
downloadsharkey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.tar.gz
sharkey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.tar.bz2
sharkey-79d1bf30a49e1fd1ef1f8b743a9aff84d104fb89.zip
リモートユーザーのHTMLで表現されたプロフィールをMFMに変換するように
Diffstat (limited to 'src/text/parse/elements/inline-code.ts')
-rw-r--r--src/text/parse/elements/inline-code.ts24
1 files changed, 0 insertions, 24 deletions
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;
-}