summaryrefslogtreecommitdiff
path: root/src/mfm/parse/elements/motion.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/mfm/parse/elements/motion.ts')
-rw-r--r--src/mfm/parse/elements/motion.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mfm/parse/elements/motion.ts b/src/mfm/parse/elements/motion.ts
deleted file mode 100644
index c6500e7be0..0000000000
--- a/src/mfm/parse/elements/motion.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * Motion
- */
-
-export type TextElementMotion = {
- type: 'motion';
- content: string;
- motion: string;
-};
-
-export default function(text: string) {
- const match = text.match(/^\(\(\((.+?)\)\)\)/) || text.match(/^<motion>(.+?)<\/motion>/);
- if (!match) return null;
- const motion = match[0];
- return {
- type: 'motion',
- content: motion,
- motion: match[1]
- } as TextElementMotion;
-}