summaryrefslogtreecommitdiff
path: root/src/mfm/parse/elements/inline-code.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/mfm/parse/elements/inline-code.ts')
-rw-r--r--src/mfm/parse/elements/inline-code.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mfm/parse/elements/inline-code.ts b/src/mfm/parse/elements/inline-code.ts
index e4ab499584..efacd734cb 100644
--- a/src/mfm/parse/elements/inline-code.ts
+++ b/src/mfm/parse/elements/inline-code.ts
@@ -5,10 +5,10 @@
import genHtml from '../core/syntax-highlighter';
export type TextElementInlineCode = {
- type: 'inline-code'
- content: string
- code: string
- html: string
+ type: 'inline-code';
+ content: string;
+ code: string;
+ html: string;
};
export default function(text: string) {