diff options
Diffstat (limited to 'src/text/parse/elements/title.ts')
| -rw-r--r-- | src/text/parse/elements/title.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/text/parse/elements/title.ts b/src/text/parse/elements/title.ts deleted file mode 100644 index b89739a7c5..0000000000 --- a/src/text/parse/elements/title.ts +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Title - */ - -export type TextElementTitle = { - type: 'title' - content: string - title: string -}; - -export default function(text: string) { - const match = text.match(/^【(.+?)】\n/); - if (!match) return null; - const title = match[0]; - return { - type: 'title', - content: title, - title: title.substr(1, title.length - 3) - } as TextElementTitle; -} |