diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-18 14:28:43 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-18 14:28:43 +0900 |
| commit | e66d7babc5ae477d7a60628e5599f9c390426c81 (patch) | |
| tree | 84733fc7b2a158e6d5786ccd72a58e40c301f140 /src/text/parse/elements | |
| parent | wip (diff) | |
| download | sharkey-e66d7babc5ae477d7a60628e5599f9c390426c81.tar.gz sharkey-e66d7babc5ae477d7a60628e5599f9c390426c81.tar.bz2 sharkey-e66d7babc5ae477d7a60628e5599f9c390426c81.zip | |
yatta
Diffstat (limited to 'src/text/parse/elements')
| -rw-r--r-- | src/text/parse/elements/bold.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/code.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/emoji.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/hashtag.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/inline-code.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/link.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/mention.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/quote.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/search.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/title.ts | 2 | ||||
| -rw-r--r-- | src/text/parse/elements/url.ts | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/src/text/parse/elements/bold.ts b/src/text/parse/elements/bold.ts index 0566ace8b7..cf615cd3cc 100644 --- a/src/text/parse/elements/bold.ts +++ b/src/text/parse/elements/bold.ts @@ -3,7 +3,7 @@ */ export type TextElementBold = { - type: "bold" + type: 'bold' content: string bold: string }; diff --git a/src/text/parse/elements/code.ts b/src/text/parse/elements/code.ts index de87aa410b..f48e945048 100644 --- a/src/text/parse/elements/code.ts +++ b/src/text/parse/elements/code.ts @@ -5,7 +5,7 @@ import genHtml from '../core/syntax-highlighter'; export type TextElementCode = { - type: "code" + type: 'code' content: string code: string html: string diff --git a/src/text/parse/elements/emoji.ts b/src/text/parse/elements/emoji.ts index d0eed88965..83d3effef5 100644 --- a/src/text/parse/elements/emoji.ts +++ b/src/text/parse/elements/emoji.ts @@ -3,7 +3,7 @@ */ export type TextElementEmoji = { - type: "emoji" + type: 'emoji' content: string emoji: string }; diff --git a/src/text/parse/elements/hashtag.ts b/src/text/parse/elements/hashtag.ts index cde0c2b224..129041774f 100644 --- a/src/text/parse/elements/hashtag.ts +++ b/src/text/parse/elements/hashtag.ts @@ -3,7 +3,7 @@ */ export type TextElementHashtag = { - type: "hashtag" + type: 'hashtag' content: string hashtag: string }; diff --git a/src/text/parse/elements/inline-code.ts b/src/text/parse/elements/inline-code.ts index bcb0bca0ad..1dd5affa51 100644 --- a/src/text/parse/elements/inline-code.ts +++ b/src/text/parse/elements/inline-code.ts @@ -5,7 +5,7 @@ import genHtml from '../core/syntax-highlighter'; export type TextElementInlineCode = { - type: "inline-code" + type: 'inline-code' content: string code: string html: string diff --git a/src/text/parse/elements/link.ts b/src/text/parse/elements/link.ts index 7e0d6f5cf8..b353aebc5c 100644 --- a/src/text/parse/elements/link.ts +++ b/src/text/parse/elements/link.ts @@ -3,7 +3,7 @@ */ export type TextElementLink = { - type: "link" + type: 'link' content: string title: string url: string diff --git a/src/text/parse/elements/mention.ts b/src/text/parse/elements/mention.ts index a4140458d4..eda60b530a 100644 --- a/src/text/parse/elements/mention.ts +++ b/src/text/parse/elements/mention.ts @@ -4,7 +4,7 @@ import parseAcct from '../../../acct/parse'; export type TextElementMention = { - type: "mention" + type: 'mention' content: string username: string host: string diff --git a/src/text/parse/elements/quote.ts b/src/text/parse/elements/quote.ts index 56de561f3f..bef9ad4988 100644 --- a/src/text/parse/elements/quote.ts +++ b/src/text/parse/elements/quote.ts @@ -3,7 +3,7 @@ */ export type TextElementQuote = { - type: "quote" + type: 'quote' content: string quote: string }; diff --git a/src/text/parse/elements/search.ts b/src/text/parse/elements/search.ts index 4bd19ee3fa..e5d9b9f0c2 100644 --- a/src/text/parse/elements/search.ts +++ b/src/text/parse/elements/search.ts @@ -3,7 +3,7 @@ */ export type TextElementSearch = { - type: "search" + type: 'search' content: string query: string }; diff --git a/src/text/parse/elements/title.ts b/src/text/parse/elements/title.ts index 11b3abc61b..b89739a7c5 100644 --- a/src/text/parse/elements/title.ts +++ b/src/text/parse/elements/title.ts @@ -3,7 +3,7 @@ */ export type TextElementTitle = { - type: "title" + type: 'title' content: string title: string }; diff --git a/src/text/parse/elements/url.ts b/src/text/parse/elements/url.ts index bbc27b4fd7..78b9b1f2f1 100644 --- a/src/text/parse/elements/url.ts +++ b/src/text/parse/elements/url.ts @@ -3,7 +3,7 @@ */ export type TextElementUrl = { - type: "url" + type: 'url' content: string url: string }; |