diff options
Diffstat (limited to 'src/text/parse/elements/code.ts')
| -rw-r--r-- | src/text/parse/elements/code.ts | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/text/parse/elements/code.ts b/src/text/parse/elements/code.ts deleted file mode 100644 index f48e945048..0000000000 --- a/src/text/parse/elements/code.ts +++ /dev/null @@ -1,24 +0,0 @@ -/** - * 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; -} |