-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into copy-to-clipboard-styling
- Loading branch information
Showing
60 changed files
with
2,082 additions
and
969 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
(function (Prism) { | ||
/** | ||
* Based on the manual by Wouter van Oortmerssen. | ||
* | ||
* @see {@link https://github.com/PrismJS/prism/issues/2801#issue-829717504} | ||
*/ | ||
Prism.languages['false'] = { | ||
'comment': { | ||
pattern: /\{[^}]*\}/ | ||
}, | ||
'string': { | ||
pattern: /"[^"]*"/, | ||
greedy: true | ||
}, | ||
'character-code': { | ||
pattern: /'[\S\s]/, | ||
alias: 'number' | ||
}, | ||
'assembler-code': { | ||
pattern: /\d+`/, | ||
alias: 'important' | ||
}, | ||
'number': /\d+/, | ||
'operator': /[-!#$%&'*+,./:;=>?@\\^_`|~ßø]/, | ||
'punctuation': /\[|\]/, | ||
'variable': /[a-z]/, | ||
'non-standard': { | ||
pattern: /[()<BDO®]/, | ||
alias: 'bold' | ||
} | ||
}; | ||
}(Prism)); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.