mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove unneeded libs
This commit is contained in:
parent
5aaaf08723
commit
59ea1c2f7d
1109 changed files with 0 additions and 58758 deletions
|
@ -1,44 +0,0 @@
|
||||||
{
|
|
||||||
"name": "prism-element",
|
|
||||||
"description": "Prism.js import and syntax highlighting",
|
|
||||||
"version": "1.0.3",
|
|
||||||
"authors": [
|
|
||||||
"The Polymer Project Authors (https://polymer.github.io/AUTHORS.txt)"
|
|
||||||
],
|
|
||||||
"keywords": [
|
|
||||||
"web-components",
|
|
||||||
"polymer",
|
|
||||||
"prism",
|
|
||||||
"molecule"
|
|
||||||
],
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git://github.com/PolymerElements/prism-element.git"
|
|
||||||
},
|
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
|
||||||
"homepage": "https://github.com/PolymerElements/prism-highlighter",
|
|
||||||
"main": "prism-highlighter.html",
|
|
||||||
"ignore": [
|
|
||||||
"/.*",
|
|
||||||
"/test/",
|
|
||||||
"/demo/"
|
|
||||||
],
|
|
||||||
"dependencies": {
|
|
||||||
"prism": "*",
|
|
||||||
"polymer": "Polymer/polymer#^1.0.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
|
|
||||||
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
|
|
||||||
"paper-styles": "PolymerElements/paper-styles#^1.0.0"
|
|
||||||
},
|
|
||||||
"_release": "1.0.3",
|
|
||||||
"_resolution": {
|
|
||||||
"type": "version",
|
|
||||||
"tag": "v1.0.3",
|
|
||||||
"commit": "9de59abd5a8081a253dca5a7066e7be95e34bfbc"
|
|
||||||
},
|
|
||||||
"_source": "git://github.com/PolymerElements/prism-element.git",
|
|
||||||
"_target": "^1.0.0",
|
|
||||||
"_originalSource": "PolymerElements/prism-element"
|
|
||||||
}
|
|
|
@ -1,72 +0,0 @@
|
||||||
|
|
||||||
<!--
|
|
||||||
This file is autogenerated based on
|
|
||||||
https://github.com/PolymerElements/ContributionGuide/blob/master/CONTRIBUTING.md
|
|
||||||
|
|
||||||
If you edit that file, it will get updated everywhere else.
|
|
||||||
If you edit this file, your changes will get overridden :)
|
|
||||||
-->
|
|
||||||
# Polymer Elements
|
|
||||||
## Guide for Contributors
|
|
||||||
|
|
||||||
Polymer Elements are built in the open, and the Polymer authors eagerly encourage any and all forms of community contribution. When contributing, please follow these guidelines:
|
|
||||||
|
|
||||||
### Filing Issues
|
|
||||||
|
|
||||||
**If you are filing an issue to request a feature**, please provide a clear description of the feature. It can be helpful to describe answers to the following questions:
|
|
||||||
|
|
||||||
1. **Who will use the feature?** _“As someone filling out a form…”_
|
|
||||||
2. **When will they use the feature?** _“When I enter an invalid value…”_
|
|
||||||
3. **What is the user’s goal?** _“I want to be visually notified that the value needs to be corrected…”_
|
|
||||||
|
|
||||||
**If you are filing an issue to report a bug**, please provide:
|
|
||||||
|
|
||||||
1. **A clear description of the bug and related expectations.** Consider using the following example template for reporting a bug:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
The `paper-foo` element causes the page to turn pink when clicked.
|
|
||||||
|
|
||||||
## Expected outcome
|
|
||||||
|
|
||||||
The page stays the same color.
|
|
||||||
|
|
||||||
## Actual outcome
|
|
||||||
|
|
||||||
The page turns pink.
|
|
||||||
|
|
||||||
## Steps to reproduce
|
|
||||||
|
|
||||||
1. Put a `paper-foo` element in the page.
|
|
||||||
2. Open the page in a web browser.
|
|
||||||
3. Click the `paper-foo` element.
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **A reduced test case that demonstrates the problem.** If possible, please include the test case as a JSBin. Start with this template to easily import and use relevant Polymer Elements: [http://jsbin.com/cagaye](http://jsbin.com/cagaye/edit?html,output).
|
|
||||||
|
|
||||||
3. **A list of browsers where the problem occurs.** This can be skipped if the problem is the same across all browsers.
|
|
||||||
|
|
||||||
### Submitting Pull Requests
|
|
||||||
|
|
||||||
**Before creating a pull request**, please ensure that an issue exists for the corresponding change in the pull request that you intend to make. **If an issue does not exist, please create one per the guidelines above**. The goal is to discuss the design and necessity of the proposed change with Polymer authors and community before diving into a pull request.
|
|
||||||
|
|
||||||
When submitting pull requests, please provide:
|
|
||||||
|
|
||||||
1. **A reference to the corresponding issue** or issues that will be closed by the pull request. Please refer to these issues using the following syntax:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
(For a single issue)
|
|
||||||
Fixes #20
|
|
||||||
|
|
||||||
(For multiple issues)
|
|
||||||
Fixes #32, #40
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **A succinct description of the design** used to fix any related issues. For example:
|
|
||||||
|
|
||||||
```markdown
|
|
||||||
This fixes #20 by removing styles that leaked which would cause the page to turn pink whenever `paper-foo` is clicked.
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **At least one test for each bug fixed or feature added** as part of the pull request. Pull requests that fix bugs or add features without accompanying tests will not be considered.
|
|
||||||
|
|
||||||
If a proposed change contains multiple commits, please [squash commits](https://www.google.com/url?q=http://blog.steveklabnik.com/posts/2012-11-08-how-to-squash-commits-in-a-github-pull-request) to as few as is necessary to succinctly express the change. A Polymer author can help you squash commits, so don’t be afraid to ask us if you need help with that!
|
|
|
@ -1,35 +0,0 @@
|
||||||
{
|
|
||||||
"name": "prism-element",
|
|
||||||
"description": "Prism.js import and syntax highlighting",
|
|
||||||
"version": "1.0.3",
|
|
||||||
"authors": [
|
|
||||||
"The Polymer Project Authors (https://polymer.github.io/AUTHORS.txt)"
|
|
||||||
],
|
|
||||||
"keywords": [
|
|
||||||
"web-components",
|
|
||||||
"polymer",
|
|
||||||
"prism",
|
|
||||||
"molecule"
|
|
||||||
],
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git://github.com/PolymerElements/prism-element.git"
|
|
||||||
},
|
|
||||||
"license": "http://polymer.github.io/LICENSE.txt",
|
|
||||||
"homepage": "https://github.com/PolymerElements/prism-highlighter",
|
|
||||||
"main": "prism-highlighter.html",
|
|
||||||
"ignore": [
|
|
||||||
"/.*",
|
|
||||||
"/test/",
|
|
||||||
"/demo/"
|
|
||||||
],
|
|
||||||
"dependencies": {
|
|
||||||
"prism": "*",
|
|
||||||
"polymer": "Polymer/polymer#^1.0.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"webcomponentsjs": "webcomponents/webcomponentsjs#^0.7.0",
|
|
||||||
"iron-component-page": "PolymerElements/iron-component-page#^1.0.0",
|
|
||||||
"paper-styles": "PolymerElements/paper-styles#^1.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<!--
|
|
||||||
@license
|
|
||||||
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
|
||||||
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
||||||
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
||||||
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
||||||
Code distributed by Google as part of the polymer project is also
|
|
||||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
||||||
-->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
|
|
||||||
<title>prism-element</title>
|
|
||||||
|
|
||||||
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
|
|
||||||
<link rel="import" href="../iron-component-page/iron-component-page.html">
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<iron-component-page src="prism-highlighter.html"></iron-component-page>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,95 +0,0 @@
|
||||||
<!--
|
|
||||||
@license
|
|
||||||
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
|
||||||
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
||||||
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
||||||
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
||||||
Code distributed by Google as part of the polymer project is also
|
|
||||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
||||||
-->
|
|
||||||
|
|
||||||
<link rel="import" href="../polymer/polymer.html">
|
|
||||||
|
|
||||||
<link rel="import" href="prism-import.html">
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Syntax highlighting via [Prism](http://prismjs.com/).
|
|
||||||
|
|
||||||
Place a `<prism-highlighter>` in your document, preferably as a direct child of
|
|
||||||
`<body>`. It will listen for `syntax-highlight` events on its parent element,
|
|
||||||
and annotate the code being provided via that event.
|
|
||||||
|
|
||||||
The `syntax-highlight` event's detail is expected to have a `code` property
|
|
||||||
containing the source to highlight. The event detail can optionally contain a
|
|
||||||
`lang` property, containing a string like `"html"`, `"js"`, etc.
|
|
||||||
|
|
||||||
This flow is supported by [`<marked-element>`](https://github.com/PolymerElements/marked-element).
|
|
||||||
-->
|
|
||||||
<script>
|
|
||||||
(function() {
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var HIGHLIGHT_EVENT = 'syntax-highlight';
|
|
||||||
|
|
||||||
Polymer({
|
|
||||||
|
|
||||||
is: 'prism-highlighter',
|
|
||||||
|
|
||||||
ready: function() {
|
|
||||||
this._handler = this._highlight.bind(this);
|
|
||||||
},
|
|
||||||
|
|
||||||
attached: function() {
|
|
||||||
(this.parentElement || this.parentNode.host).addEventListener(HIGHLIGHT_EVENT, this._handler);
|
|
||||||
},
|
|
||||||
|
|
||||||
detached: function() {
|
|
||||||
(this.parentElement || this.parentNode.host).removeEventListener(HIGHLIGHT_EVENT, this._handler);
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle the highlighting event, if we can.
|
|
||||||
*
|
|
||||||
* @param {!CustomEvent} event
|
|
||||||
*/
|
|
||||||
_highlight: function(event) {
|
|
||||||
if (!event.detail || !event.detail.code) {
|
|
||||||
console.warn('Malformed', HIGHLIGHT_EVENT, 'event:', event.detail);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var detail = event.detail;
|
|
||||||
detail.code = Prism.highlight(detail.code, this._detectLang(detail.code, detail.lang));
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Picks a Prism formatter based on the `lang` hint and `code`.
|
|
||||||
*
|
|
||||||
* @param {string} code The source being highlighted.
|
|
||||||
* @param {string=} lang A language hint (e.g. ````LANG`).
|
|
||||||
* @return {!prism.Lang}
|
|
||||||
*/
|
|
||||||
_detectLang: function(code, lang) {
|
|
||||||
if (!lang) {
|
|
||||||
// Stupid simple detection if we have no lang, courtesy of:
|
|
||||||
// https://github.com/robdodson/mark-down/blob/ac2eaa/mark-down.html#L93-101
|
|
||||||
return code.match(/^\s*</) ? Prism.languages.markup : Prism.languages.javascript;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lang === 'js' || lang.substr(0, 2) === 'es') {
|
|
||||||
return Prism.languages.javascript;
|
|
||||||
} else if (lang === 'css') {
|
|
||||||
return Prism.languages.css;
|
|
||||||
} else if (lang === 'c') {
|
|
||||||
return Prism.languages.clike;
|
|
||||||
} else {
|
|
||||||
// The assumption is that you're mostly documenting HTML when in HTML.
|
|
||||||
return Prism.languages.markup;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
})();
|
|
||||||
</script>
|
|
|
@ -1,11 +0,0 @@
|
||||||
<!--
|
|
||||||
@license
|
|
||||||
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
|
|
||||||
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
|
|
||||||
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
|
||||||
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
|
||||||
Code distributed by Google as part of the polymer project is also
|
|
||||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
|
||||||
-->
|
|
||||||
<script src="../prism/prism.js" data-manual></script>
|
|
||||||
<link rel="stylesheet" href="../prism/themes/prism.css">
|
|
39
dashboard-ui/bower_components/prism/.bower.json
vendored
39
dashboard-ui/bower_components/prism/.bower.json
vendored
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"name": "prism",
|
|
||||||
"main": [
|
|
||||||
"prism.js",
|
|
||||||
"themes/prism.css"
|
|
||||||
],
|
|
||||||
"homepage": "http://prismjs.com",
|
|
||||||
"authors": "Lea Verou",
|
|
||||||
"description": "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet.",
|
|
||||||
"license": "MIT",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/PrismJS/prism.git"
|
|
||||||
},
|
|
||||||
"ignore": [
|
|
||||||
"**/.*",
|
|
||||||
"img",
|
|
||||||
"templates",
|
|
||||||
"CNAME",
|
|
||||||
"*.html",
|
|
||||||
"style.css",
|
|
||||||
"favicon.png",
|
|
||||||
"logo.svg",
|
|
||||||
"download.js",
|
|
||||||
"prefixfree.min.js",
|
|
||||||
"utopia.js",
|
|
||||||
"code.js"
|
|
||||||
],
|
|
||||||
"version": "1.3.0",
|
|
||||||
"_release": "1.3.0",
|
|
||||||
"_resolution": {
|
|
||||||
"type": "version",
|
|
||||||
"tag": "v1.3.0",
|
|
||||||
"commit": "ad97b23be583f01e84ec5f17197d2c2b109ca7d0"
|
|
||||||
},
|
|
||||||
"_source": "git://github.com/LeaVerou/prism.git",
|
|
||||||
"_target": "*",
|
|
||||||
"_originalSource": "prism"
|
|
||||||
}
|
|
480
dashboard-ui/bower_components/prism/CHANGELOG.md
vendored
480
dashboard-ui/bower_components/prism/CHANGELOG.md
vendored
|
@ -1,480 +0,0 @@
|
||||||
# Prism Changelog
|
|
||||||
|
|
||||||
## 1.3.0 (2015-10-26)
|
|
||||||
|
|
||||||
### New components
|
|
||||||
|
|
||||||
* __AsciiDoc__ ([#800](https://github.com/PrismJS/prism/issues/800)) [[`6803ca0`](https://github.com/PrismJS/prism/commit/6803ca0)]
|
|
||||||
* __Haxe__ ([#811](https://github.com/PrismJS/prism/issues/811)) [[`bd44341`](https://github.com/PrismJS/prism/commit/bd44341)]
|
|
||||||
* __Icon__ ([#803](https://github.com/PrismJS/prism/issues/803)) [[`b43c5f3`](https://github.com/PrismJS/prism/commit/b43c5f3)]
|
|
||||||
* __Kotlin ([#814](https://github.com/PrismJS/prism/issues/814)) [[`e8a31a5`](https://github.com/PrismJS/prism/commit/e8a31a5)]
|
|
||||||
* __Lua__ ([#804](https://github.com/PrismJS/prism/issues/804)) [[`a36bc4a`](https://github.com/PrismJS/prism/commit/a36bc4a)]
|
|
||||||
* __Nix__ ([#795](https://github.com/PrismJS/prism/issues/795)) [[`9b275c8`](https://github.com/PrismJS/prism/commit/9b275c8)]
|
|
||||||
* __Oz__ ([#805](https://github.com/PrismJS/prism/issues/805)) [[`388c53f`](https://github.com/PrismJS/prism/commit/388c53f)]
|
|
||||||
* __PARI/GP__ ([#802](https://github.com/PrismJS/prism/issues/802)) [[`253c035`](https://github.com/PrismJS/prism/commit/253c035)]
|
|
||||||
* __Parser__ ([#808](https://github.com/PrismJS/prism/issues/808)) [[`a953b3a`](https://github.com/PrismJS/prism/commit/a953b3a)]
|
|
||||||
* __Puppet__ ([#813](https://github.com/PrismJS/prism/issues/813)) [[`81933ee`](https://github.com/PrismJS/prism/commit/81933ee)]
|
|
||||||
* __Roboconf__ ([#812](https://github.com/PrismJS/prism/issues/812)) [[`f5db346`](https://github.com/PrismJS/prism/commit/f5db346)]
|
|
||||||
|
|
||||||
### Updated components
|
|
||||||
|
|
||||||
* __C__:
|
|
||||||
* Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
|
|
||||||
* __C#__:
|
|
||||||
* Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
|
|
||||||
* Fix detection of float numbers ([#806](https://github.com/PrismJS/prism/issues/806)) [[`1dae72b`](https://github.com/PrismJS/prism/commit/1dae72b)]
|
|
||||||
* __F#__:
|
|
||||||
* Highlight directives in preprocessor lines ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
|
|
||||||
* __JavaScript__:
|
|
||||||
* Highlight true and false as booleans ([#801](https://github.com/PrismJS/prism/issues/801)) [[`ad316a3`](https://github.com/PrismJS/prism/commit/ad316a3)]
|
|
||||||
* __Python__:
|
|
||||||
* Highlight triple-quoted strings before comments. Fix [#815](https://github.com/PrismJS/prism/issues/815) [[`90fbf0b`](https://github.com/PrismJS/prism/commit/90fbf0b)]
|
|
||||||
|
|
||||||
### New plugins
|
|
||||||
|
|
||||||
* __Previewer: Time__ ([#790](https://github.com/PrismJS/prism/issues/790)) [[`88173de`](https://github.com/PrismJS/prism/commit/88173de)]
|
|
||||||
* __Previewer: Angle__ ([#791](https://github.com/PrismJS/prism/issues/791)) [[`a434c86`](https://github.com/PrismJS/prism/commit/a434c86)]
|
|
||||||
|
|
||||||
### Other changes
|
|
||||||
|
|
||||||
* Increase mocha's timeout [[`f1c41db`](https://github.com/PrismJS/prism/commit/f1c41db)]
|
|
||||||
* Prevent most errors in IE8. Fix [#9](https://github.com/PrismJS/prism/issues/9) [[`9652d75`](https://github.com/PrismJS/prism/commit/9652d75)]
|
|
||||||
* Add U.S. Web Design Standards on homepage. Fix [#785](https://github.com/PrismJS/prism/issues/785) [[`e10d48b`](https://github.com/PrismJS/prism/commit/e10d48b), [`79ebbf8`](https://github.com/PrismJS/prism/commit/79ebbf8), [`2f7088d`](https://github.com/PrismJS/prism/commit/2f7088d)]
|
|
||||||
* Added gulp task to autolink PRs and commits in changelog [[`5ec4e4d`](https://github.com/PrismJS/prism/commit/5ec4e4d)]
|
|
||||||
* Use child processes to run each set of tests, in order to deal with the memory leak in vm.runInNewContext() [[`9a4b6fa`](https://github.com/PrismJS/prism/commit/9a4b6fa)]
|
|
||||||
|
|
||||||
## 1.2.0 (2015-10-07)
|
|
||||||
|
|
||||||
### New components
|
|
||||||
|
|
||||||
* __Batch__ ([#781](https://github.com/PrismJS/prism/issues/781)) [[`eab5b06`](https://github.com/PrismJS/prism/commit/eab5b06)]
|
|
||||||
|
|
||||||
### Updated components
|
|
||||||
|
|
||||||
* __ASP.NET__:
|
|
||||||
* Simplified pattern for `<script>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
|
|
||||||
* __Bash__:
|
|
||||||
* Fix regression in strings ([#792](https://github.com/PrismJS/prism/issues/792)) [[`bd275c2`](https://github.com/PrismJS/prism/commit/bd275c2)]
|
|
||||||
* Substantially reduce wrongly highlighted stuff ([#793](https://github.com/PrismJS/prism/issues/793)) [[`ac6fe2e`](https://github.com/PrismJS/prism/commit/ac6fe2e)]
|
|
||||||
* __CSS__:
|
|
||||||
* Simplified pattern for `<style>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
|
|
||||||
* __JavaScript__:
|
|
||||||
* Simplified pattern for `<script>` [[`29643f4`](https://github.com/PrismJS/prism/issues/29643f4)]
|
|
||||||
|
|
||||||
### New plugins
|
|
||||||
|
|
||||||
* __Previewer: Gradient__ ([#783](https://github.com/PrismJS/prism/issues/783)) [[`9a63483`](https://github.com/PrismJS/prism/commit/9a63483)]
|
|
||||||
|
|
||||||
### Updated plugins
|
|
||||||
|
|
||||||
* __Previewer: Color__
|
|
||||||
* Add support for Sass variables [[`3a1fb04`](https://github.com/PrismJS/prism/commit/3a1fb04)]
|
|
||||||
|
|
||||||
* __Previewer: Easing__
|
|
||||||
* Add support for Sass variables [[`7c7ab4e`](https://github.com/PrismJS/prism/commit/7c7ab4e)]
|
|
||||||
|
|
||||||
### Other changes
|
|
||||||
|
|
||||||
* Test runner: Allow to run tests for only some languages [[`5ade8a5`](https://github.com/PrismJS/prism/issues/5ade8a5)]
|
|
||||||
* Download page: Fixed wrong components order raising error in generated file ([#797](https://github.com/PrismJS/prism/issues/787)) [[`7a6aed8`](https://github.com/PrismJS/prism/commit/7a6aed8)]
|
|
||||||
|
|
||||||
## 1.1.0 (2015-10-04)
|
|
||||||
|
|
||||||
### New components
|
|
||||||
|
|
||||||
* __ABAP__ ([#636](https://github.com/PrismJS/prism/issues/636)) [[`75b0328`](https://github.com/PrismJS/prism/commit/75b0328), [`0749129`](https://github.com/PrismJS/prism/commit/0749129)]
|
|
||||||
* __APL__ ([#308](https://github.com/PrismJS/prism/issues/308)) [[`1f45942`](https://github.com/PrismJS/prism/commit/1f45942), [`33a295f`](https://github.com/PrismJS/prism/commit/33a295f)]
|
|
||||||
* __AutoIt__ ([#771](https://github.com/PrismJS/prism/issues/771)) [[`211a41c`](https://github.com/PrismJS/prism/commit/211a41c)]
|
|
||||||
* __BASIC__ ([#620](https://github.com/PrismJS/prism/issues/620)) [[`805a0ce`](https://github.com/PrismJS/prism/commit/805a0ce)]
|
|
||||||
* __Bison__ ([#764](https://github.com/PrismJS/prism/issues/764)) [[`7feb135`](https://github.com/PrismJS/prism/commit/7feb135)]
|
|
||||||
* __Crystal__ ([#780](https://github.com/PrismJS/prism/issues/780)) [[`5b473de`](https://github.com/PrismJS/prism/commit/5b473de), [`414848d`](https://github.com/PrismJS/prism/commit/414848d)]
|
|
||||||
* __D__ ([#613](https://github.com/PrismJS/prism/issues/613)) [[`b5e741c`](https://github.com/PrismJS/prism/commit/b5e741c)]
|
|
||||||
* __Diff__ ([#450](https://github.com/PrismJS/prism/issues/450)) [[`ef41c74`](https://github.com/PrismJS/prism/commit/ef41c74)]
|
|
||||||
* __Docker__ ([#576](https://github.com/PrismJS/prism/issues/576)) [[`e808352`](https://github.com/PrismJS/prism/commit/e808352)]
|
|
||||||
* __Elixir__ ([#614](https://github.com/PrismJS/prism/issues/614)) [[`a1c028c`](https://github.com/PrismJS/prism/commit/a1c028c), [`c451611`](https://github.com/PrismJS/prism/commit/c451611), [`2e637f0`](https://github.com/PrismJS/prism/commit/2e637f0), [`ccb6566`](https://github.com/PrismJS/prism/commit/ccb6566)]
|
|
||||||
* __GLSL__ ([#615](https://github.com/PrismJS/prism/issues/615)) [[`247da05`](https://github.com/PrismJS/prism/commit/247da05)]
|
|
||||||
* __Inform 7__ ([#616](https://github.com/PrismJS/prism/issues/616)) [[`d2595b4`](https://github.com/PrismJS/prism/commit/d2595b4)]
|
|
||||||
* __J__ ([#623](https://github.com/PrismJS/prism/issues/623)) [[`0cc50b2`](https://github.com/PrismJS/prism/commit/0cc50b2)]
|
|
||||||
* __MEL__ ([#618](https://github.com/PrismJS/prism/issues/618)) [[`8496c14`](https://github.com/PrismJS/prism/commit/8496c14)]
|
|
||||||
* __Mizar__ ([#619](https://github.com/PrismJS/prism/issues/619)) [[`efde61d`](https://github.com/PrismJS/prism/commit/efde61d)]
|
|
||||||
* __Monkey__ ([#621](https://github.com/PrismJS/prism/issues/621)) [[`fdd4a3c`](https://github.com/PrismJS/prism/commit/fdd4a3c)]
|
|
||||||
* __nginx__ ([#776](https://github.com/PrismJS/prism/issues/776)) [[`dc4fc19`](https://github.com/PrismJS/prism/commit/dc4fc19), [`e62c88e`](https://github.com/PrismJS/prism/commit/e62c88e)]
|
|
||||||
* __Nim__ ([#622](https://github.com/PrismJS/prism/issues/622)) [[`af9c49a`](https://github.com/PrismJS/prism/commit/af9c49a)]
|
|
||||||
* __OCaml__ ([#628](https://github.com/PrismJS/prism/issues/628)) [[`556c04d`](https://github.com/PrismJS/prism/commit/556c04d)]
|
|
||||||
* __Processing__ ([#629](https://github.com/PrismJS/prism/issues/629)) [[`e47087b`](https://github.com/PrismJS/prism/commit/e47087b)]
|
|
||||||
* __Prolog__ ([#630](https://github.com/PrismJS/prism/issues/630)) [[`dd04c32`](https://github.com/PrismJS/prism/commit/dd04c32)]
|
|
||||||
* __Pure__ ([#626](https://github.com/PrismJS/prism/issues/626)) [[`9c276ab`](https://github.com/PrismJS/prism/commit/9c276ab)]
|
|
||||||
* __Q__ ([#624](https://github.com/PrismJS/prism/issues/624)) [[`c053c9e`](https://github.com/PrismJS/prism/commit/c053c9e)]
|
|
||||||
* __Qore__ [[`125e91f`](https://github.com/PrismJS/prism/commit/125e91f)]
|
|
||||||
* __Tcl__ [[`a3e751a`](https://github.com/PrismJS/prism/commit/a3e751a), [`11ff829`](https://github.com/PrismJS/prism/commit/11ff829)]
|
|
||||||
* __Textile__ ([#544](https://github.com/PrismJS/prism/issues/544)) [[`d0c6764`](https://github.com/PrismJS/prism/commit/d0c6764)]
|
|
||||||
* __Verilog__ ([#640](https://github.com/PrismJS/prism/issues/640)) [[`44a11c2`](https://github.com/PrismJS/prism/commit/44a11c2), [`795eb99`](https://github.com/PrismJS/prism/commit/795eb99)]
|
|
||||||
* __Vim__ [[`69ea994`](https://github.com/PrismJS/prism/commit/69ea994)]
|
|
||||||
|
|
||||||
### Updated components
|
|
||||||
|
|
||||||
* __Bash__:
|
|
||||||
* Add support for Here-Documents ([#787](https://github.com/PrismJS/prism/issues/787)) [[`b57a096`](https://github.com/PrismJS/prism/commit/b57a096)]
|
|
||||||
* Remove C-like dependency ([#789](https://github.com/PrismJS/prism/issues/789)) [[`1ab4619`](https://github.com/PrismJS/prism/commit/1ab4619)]
|
|
||||||
* __C__:
|
|
||||||
* Fixed numbers [[`4d64d07`](https://github.com/PrismJS/prism/commit/4d64d07), [`071c3dd`](https://github.com/PrismJS/prism/commit/071c3dd)]
|
|
||||||
* __C-like__:
|
|
||||||
* Add word boundary before class-name prefixes [[`aa757f6`](https://github.com/PrismJS/prism/commit/aa757f6)]
|
|
||||||
* Improved operator regex + add != and !== [[`135ee9d`](https://github.com/PrismJS/prism/commit/135ee9d)]
|
|
||||||
* Optimized string regexp [[`792e35c`](https://github.com/PrismJS/prism/commit/792e35c)]
|
|
||||||
* __F#__:
|
|
||||||
* Fixed keywords containing exclamation mark [[`09f2005`](https://github.com/PrismJS/prism/commit/09f2005)]
|
|
||||||
* Improved string pattern [[`0101c89`](https://github.com/PrismJS/prism/commit/0101c89)]
|
|
||||||
* Insert preprocessor before keyword + don't allow line feeds before # [[`fdc9477`](https://github.com/PrismJS/prism/commit/fdc9477)]
|
|
||||||
* Fixed numbers [[`0aa0791`](https://github.com/PrismJS/prism/commit/0aa0791)]
|
|
||||||
* __Gherkin__:
|
|
||||||
* Don't allow spaces in tags [[`48ff8b7`](https://github.com/PrismJS/prism/commit/48ff8b7)]
|
|
||||||
* Handle \r\n and \r + allow feature alone + don't match blank td/th [[`ce1ec3b`](https://github.com/PrismJS/prism/commit/ce1ec3b)]
|
|
||||||
* __Git__:
|
|
||||||
* Added more examples ([#652](https://github.com/PrismJS/prism/issues/652)) [[`95dc102`](https://github.com/PrismJS/prism/commit/95dc102)]
|
|
||||||
* Add support for unified diff. Fixes [#769](https://github.com/PrismJS/prism/issues/769), fixes [#357](https://github.com/PrismJS/prism/issues/357), closes [#401](https://github.com/PrismJS/prism/issues/401) [[`3aadd5d`](https://github.com/PrismJS/prism/commit/3aadd5d)]
|
|
||||||
* __Go__:
|
|
||||||
* Improved operator regexp + removed punctuation from it [[`776ab90`](https://github.com/PrismJS/prism/commit/776ab90)]
|
|
||||||
* __Haml__:
|
|
||||||
* Combine both multiline-comment regexps + handle \r\n and \r [[`f77b40b`](https://github.com/PrismJS/prism/commit/f77b40b)]
|
|
||||||
* Handle \r\n and \r in filter regex [[`bbe68ac`](https://github.com/PrismJS/prism/commit/bbe68ac)]
|
|
||||||
* __Handlebars__:
|
|
||||||
* Fix empty strings, add plus sign in exponential notation, improve block pattern and variable pattern [[`c477f9a`](https://github.com/PrismJS/prism/commit/c477f9a)]
|
|
||||||
* Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
|
|
||||||
* __Haskell__:
|
|
||||||
* Removed useless backslashes and parentheses + handle \r\n and \r + simplify number regexp + fix operator regexp [[`1cc8d8e`](https://github.com/PrismJS/prism/commit/1cc8d8e)]
|
|
||||||
* __HTTP__:
|
|
||||||
* Fix indentation + Add multiline flag for more flexibility + Fix response status + Handle \r\n and \r [[`aaa90f1`](https://github.com/PrismJS/prism/commit/aaa90f1)]
|
|
||||||
* __Ini__:
|
|
||||||
* Fix some regexps + remove unused flags [[`53d5839`](https://github.com/PrismJS/prism/commit/53d5839)]
|
|
||||||
* __Jade__:
|
|
||||||
* Add todo list + remove single-line comment pattern + simplified most patterns with m flag + handle \r\n and \r [[`a79e838`](https://github.com/PrismJS/prism/commit/a79e838)]
|
|
||||||
* __Java__:
|
|
||||||
* Fix number regexp + simplified number regexp and optimized operator regexp [[`21e20b9`](https://github.com/PrismJS/prism/commit/21e20b9)]
|
|
||||||
* __JavaScript__:
|
|
||||||
* JavaScript: Allow for all non-ASCII characters in function names. Fix [#400](https://github.com/PrismJS/prism/issues/400) [[`29e26dc`](https://github.com/PrismJS/prism/commit/29e26dc)]
|
|
||||||
* __JSX__:
|
|
||||||
* Allow for one level of nesting in scripts (Fix [#717](https://github.com/PrismJS/prism/issues/717)) [[`90c75d5`](https://github.com/PrismJS/prism/commit/90c75d5)]
|
|
||||||
* __Julia__:
|
|
||||||
* Simplify comment regexp + improved number regexp + improved operator regexp [[`bcac7d4`](https://github.com/PrismJS/prism/commit/bcac7d4)]
|
|
||||||
* __Keyman__:
|
|
||||||
* Move header statements above keywords [[`23a444c`](https://github.com/PrismJS/prism/commit/23a444c)]
|
|
||||||
* __LaTeX__:
|
|
||||||
* Simplify comment regexp [[`132b41a`](https://github.com/PrismJS/prism/commit/132b41a)]
|
|
||||||
* Extend support [[`942a6ec`](https://github.com/PrismJS/prism/commit/942a6ec)]
|
|
||||||
* __Less__:
|
|
||||||
* Remove useless part in property regexp [[`80d8260`](https://github.com/PrismJS/prism/commit/80d8260)]
|
|
||||||
* __LOLCODE__:
|
|
||||||
* Removed useless parentheses [[`8147c9b`](https://github.com/PrismJS/prism/commit/8147c9b)]
|
|
||||||
* __Makefile__:
|
|
||||||
* Add known failures in example [[`e0f8984`](https://github.com/PrismJS/prism/commit/e0f8984)]
|
|
||||||
* Handle \r\n in comments and strings + fix "-include" keyword
|
|
||||||
* __Markup__:
|
|
||||||
* Simplify patterns + handle \r\n and \r [[`4c551e8`](https://github.com/PrismJS/prism/commit/4c551e8)]
|
|
||||||
* Don't allow = to appear in tag name [[`85d8a55`](https://github.com/PrismJS/prism/commit/85d8a55)]
|
|
||||||
* Don't allow dot inside tag name [[`283691e`](https://github.com/PrismJS/prism/commit/283691e)]
|
|
||||||
* __MATLAB__:
|
|
||||||
* Simplify string pattern to remove lookbehind [[`a3cbecc`](https://github.com/PrismJS/prism/commit/a3cbecc)]
|
|
||||||
* __NASM__:
|
|
||||||
* Converted indents to tabs, removed uneeded escapes, added lookbehinds [[`a92e4bd`](https://github.com/PrismJS/prism/commit/a92e4bd)]
|
|
||||||
* __NSIS__:
|
|
||||||
* Simplified patterns [[`bbd83d4`](https://github.com/PrismJS/prism/commit/bbd83d4)]
|
|
||||||
* Fix operator regexp [[`44ad8dc`](https://github.com/PrismJS/prism/commit/44ad8dc)]
|
|
||||||
* __Objective-C__:
|
|
||||||
* Simplified regexps + fix strings + handle \r [[`1d33147`](https://github.com/PrismJS/prism/commit/1d33147)]
|
|
||||||
* Fix operator regexp [[`e9d382e`](https://github.com/PrismJS/prism/commit/e9d382e)]
|
|
||||||
* __Pascal__:
|
|
||||||
* Simplified regexps [[`c03c8a4`](https://github.com/PrismJS/prism/commit/c03c8a4)]
|
|
||||||
* __Perl__:
|
|
||||||
* Simplified regexps + Made most string and regexp patterns multi-line + Added support for regexp's n flag + Added missing operators [[`71b00cc`](https://github.com/PrismJS/prism/commit/71b00cc)]
|
|
||||||
* __PHP__:
|
|
||||||
* Simplified patterns [[`f9d9452`](https://github.com/PrismJS/prism/commit/f9d9452)]
|
|
||||||
* Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
|
|
||||||
* __PHP Extras__:
|
|
||||||
* Fix $this regexp + improve global regexp [[`781fdad`](https://github.com/PrismJS/prism/commit/781fdad)]
|
|
||||||
* __PowerShell__:
|
|
||||||
* Update definitions for command/alias/operators [[`14da55c`](https://github.com/PrismJS/prism/commit/14da55c)]
|
|
||||||
* __Python__:
|
|
||||||
* Added async/await and @ operator ([#656](https://github.com/PrismJS/prism/issues/656)) [[`7f1ae75`](https://github.com/PrismJS/prism/commit/7f1ae75)]
|
|
||||||
* Added 'self' keyword and support for class names ([#677](https://github.com/PrismJS/prism/issues/677)) [[`d9d4ab2`](https://github.com/PrismJS/prism/commit/d9d4ab2)]
|
|
||||||
* Simplified regexps + don't capture where unneeded + fixed operators [[`530f5f0`](https://github.com/PrismJS/prism/commit/530f5f0)]
|
|
||||||
* __R__:
|
|
||||||
* Fixed and simplified patterns [[`c20c3ec`](https://github.com/PrismJS/prism/commit/c20c3ec)]
|
|
||||||
* __reST__:
|
|
||||||
* Simplified some patterns, fixed others, prevented blank comments to match, moved list-bullet down to prevent breaking quotes [[`e6c6b85`](https://github.com/PrismJS/prism/commit/e6c6b85)]
|
|
||||||
* __Rip__:
|
|
||||||
* Fixed some regexp + moved down numbers [[`1093f7d`](https://github.com/PrismJS/prism/commit/1093f7d)]
|
|
||||||
* __Ruby__:
|
|
||||||
* Code cleaning, handle \r\n and \r, fix some regexps [[`dd4989f`](https://github.com/PrismJS/prism/commit/dd4989f)]
|
|
||||||
* Add % notations for strings and regexps. Fix [#590](https://github.com/PrismJS/prism/issues/590) [[`2d37800`](https://github.com/PrismJS/prism/commit/2d37800)]
|
|
||||||
* __Rust__:
|
|
||||||
* Simplified patterns and fixed operators [[`6c8494f`](https://github.com/PrismJS/prism/commit/6c8494f)]
|
|
||||||
* __SAS__:
|
|
||||||
* Simplified datalines and optimized operator patterns [[`6ebb96f`](https://github.com/PrismJS/prism/commit/6ebb96f)]
|
|
||||||
* __Sass__:
|
|
||||||
* Add missing require in components [[`35b8c50`](https://github.com/PrismJS/prism/commit/35b8c50)]
|
|
||||||
* Fix comments, operators and selectors and simplified patterns [[`28759d0`](https://github.com/PrismJS/prism/commit/28759d0)]
|
|
||||||
* Highlight "-" as operator only if surrounded by spaces, in order to not break hyphenated values (e.g. "ease-in-out") [[`b2763e7`](https://github.com/PrismJS/prism/commit/b2763e7)]
|
|
||||||
* __Scala__:
|
|
||||||
* Simplified patterns [[`daf2597`](https://github.com/PrismJS/prism/commit/daf2597)]
|
|
||||||
* __Scheme__:
|
|
||||||
* Add missing lookbehind on number pattern. Fix [#702](https://github.com/PrismJS/prism/issues/702) [[`3120ff7`](https://github.com/PrismJS/prism/commit/3120ff7)]
|
|
||||||
* Fixes and simplifications [[`068704a`](https://github.com/PrismJS/prism/commit/068704a)]
|
|
||||||
* Don't match content of symbols starting with a parenthesis [[`fa7df08`](https://github.com/PrismJS/prism/commit/fa7df08)]
|
|
||||||
* __Scss__:
|
|
||||||
* Simplified patterns + fixed operators + don't match empty selectors [[`672c167`](https://github.com/PrismJS/prism/commit/672c167)]
|
|
||||||
* __Smalltalk__:
|
|
||||||
* Simplified patterns [[`d896622`](https://github.com/PrismJS/prism/commit/d896622)]
|
|
||||||
* __Smarty__:
|
|
||||||
* Optimized regexps + fixed punctuation and operators [[`1446700`](https://github.com/PrismJS/prism/commit/1446700)]
|
|
||||||
* Properly escape special replacement patterns ($) in Handlebars, PHP and Smarty. Fix [#772](https://github.com/PrismJS/prism/issues/772) [[`895bf46`](https://github.com/PrismJS/prism/commit/895bf46)]
|
|
||||||
* __SQL__:
|
|
||||||
* Simplified regexp + fixed keywords and operators + add CHARSET keyword [[`d49fec0`](https://github.com/PrismJS/prism/commit/d49fec0)]
|
|
||||||
* __Stylus__:
|
|
||||||
* Rewrote the component entirely [[`7729728`](https://github.com/PrismJS/prism/commit/7729728)]
|
|
||||||
* __Swift__:
|
|
||||||
* Optimized keywords lists and removed duplicates [[`936e429`](https://github.com/PrismJS/prism/commit/936e429)]
|
|
||||||
* Add support for string interpolation. Fix [#448](https://github.com/PrismJS/prism/issues/448) [[`89cd5d0`](https://github.com/PrismJS/prism/commit/89cd5d0)]
|
|
||||||
* __Twig__:
|
|
||||||
* Prevent "other" pattern from matching blank strings [[`cae2cef`](https://github.com/PrismJS/prism/commit/cae2cef)]
|
|
||||||
* Optimized regexps + fixed operators + added missing operators/keywords [[`2d8271f`](https://github.com/PrismJS/prism/commit/2d8271f)]
|
|
||||||
* __VHDL__:
|
|
||||||
* Move operator overloading before strings, don't capture if not needed, handle \r\n and \r, fix numbers [[`4533f17`](https://github.com/PrismJS/prism/commit/4533f17)]
|
|
||||||
* __Wiki markup__:
|
|
||||||
* Fixed emphasis + merged some url patterns + added TODOs [[`8cf9e6a`](https://github.com/PrismJS/prism/commit/8cf9e6a)]
|
|
||||||
* __YAML__:
|
|
||||||
* Handled \r\n and \r, simplified some patterns, fixed "---" [[`9e33e0a`](https://github.com/PrismJS/prism/commit/9e33e0a)]
|
|
||||||
|
|
||||||
### New plugins
|
|
||||||
|
|
||||||
* __Autoloader__ ([#766](https://github.com/PrismJS/prism/issues/766)) [[`ed4ccfe`](https://github.com/PrismJS/prism/commit/ed4ccfe)]
|
|
||||||
* __JSONP Highlight__ [[`b2f14d9`](https://github.com/PrismJS/prism/commit/b2f14d9)]
|
|
||||||
* __Keep Markup__ ([#770](https://github.com/PrismJS/prism/issues/770)) [[`bd3e9ea`](https://github.com/PrismJS/prism/commit/bd3e9ea)]
|
|
||||||
* __Previewer: Base__ ([#767](https://github.com/PrismJS/prism/issues/767)) [[`cf764c0`](https://github.com/PrismJS/prism/commit/cf764c0)]
|
|
||||||
* __Previewer: Color__ ([#767](https://github.com/PrismJS/prism/issues/767)) [[`cf764c0`](https://github.com/PrismJS/prism/commit/cf764c0)]
|
|
||||||
* __Previewer: Easing__ ([#773](https://github.com/PrismJS/prism/issues/773)) [[`513137c`](https://github.com/PrismJS/prism/commit/513137c), [`9207258`](https://github.com/PrismJS/prism/commit/9207258), [`4303c94`](https://github.com/PrismJS/prism/commit/4303c94)]
|
|
||||||
* __Remove initial line feed__ [[`ed9f2b2`](https://github.com/PrismJS/prism/commit/ed9f2b2), [`b8d098e`](https://github.com/PrismJS/prism/commit/b8d098e)]
|
|
||||||
|
|
||||||
### Updated plugins
|
|
||||||
|
|
||||||
* __Autolinker__:
|
|
||||||
* Don't process all grammars on load, process each one in before-highlight. Should fix [#760](https://github.com/PrismJS/prism/issues/760) [[`a572495`](https://github.com/PrismJS/prism/commit/a572495)]
|
|
||||||
* __Line Highlight__:
|
|
||||||
* Run in `complete` hook [[`f237e67`](https://github.com/PrismJS/prism/commit/f237e67)]
|
|
||||||
* Fixed position when font-size is odd ([#668](https://github.com/PrismJS/prism/issues/668)) [[`86bbd4c`](https://github.com/PrismJS/prism/commit/86bbd4c), [`8ed7ce3`](https://github.com/PrismJS/prism/commit/8ed7ce3)]
|
|
||||||
* __Line Numbers__:
|
|
||||||
* Run in `complete` hook [[`3f4d918`](https://github.com/PrismJS/prism/commit/3f4d918)]
|
|
||||||
* Don't run if already exists [[`c89bbdb`](https://github.com/PrismJS/prism/commit/c89bbdb)]
|
|
||||||
* Don't run if block is empty. Fix [#669](https://github.com/PrismJS/prism/issues/669) [[`ee463e8`](https://github.com/PrismJS/prism/commit/ee463e8)]
|
|
||||||
* Correct calculation for number of lines (fix [#385](https://github.com/PrismJS/prism/issues/385)) [[`14f3f80`](https://github.com/PrismJS/prism/commit/14f3f80)]
|
|
||||||
* Fix computation of line numbers for single-line code blocks. Fix [#721](https://github.com/PrismJS/prism/issues/721) [[`02b220e`](https://github.com/PrismJS/prism/commit/02b220e)]
|
|
||||||
* Fixing word wrap on long code lines [[`56b3d29`](https://github.com/PrismJS/prism/commit/56b3d29)]
|
|
||||||
* Fixing coy theme + line numbers plugin overflowing on long blocks of text ([#762](https://github.com/PrismJS/prism/issues/762)) [[`a0127eb`](https://github.com/PrismJS/prism/commit/a0127eb)]
|
|
||||||
* __Show Language__:
|
|
||||||
* Add gulp task to build languages map in Show language plugin (Fix [#671](https://github.com/PrismJS/prism/issues/671)) [[`39bd827`](https://github.com/PrismJS/prism/commit/39bd827)]
|
|
||||||
* Add reset styles to prevent bug in Coy theme ([#703](https://github.com/PrismJS/prism/issues/703)) [[`08dd500`](https://github.com/PrismJS/prism/commit/08dd500)]
|
|
||||||
|
|
||||||
### Other changes
|
|
||||||
|
|
||||||
* Fixed link to David Peach article ([#647](https://github.com/PrismJS/prism/issues/647)) [[`3f679f8`](https://github.com/PrismJS/prism/commit/3f679f8)]
|
|
||||||
* Added `complete` hook, which runs even when no grammar is found [[`e58b6c0`](https://github.com/PrismJS/prism/commit/e58b6c0), [`fd54995`](https://github.com/PrismJS/prism/commit/fd54995)]
|
|
||||||
* Added test suite runner ([#588](https://github.com/PrismJS/prism/issues/588)) [[`956cd85`](https://github.com/PrismJS/prism/commit/956cd85)]
|
|
||||||
* Added tests for every components
|
|
||||||
* Added `.gitattributes` to prevent line ending changes in test files [[`45ca8c8`](https://github.com/PrismJS/prism/commit/45ca8c8)]
|
|
||||||
* Split plugins into 3 columns on Download page [[`a88936a`](https://github.com/PrismJS/prism/commit/a88936a)]
|
|
||||||
* Removed comment in components.js to make it easier to parse as JSON ([#679](https://github.com/PrismJS/prism/issues/679)) [[`2cb1326`](https://github.com/PrismJS/prism/commit/2cb1326)]
|
|
||||||
* Updated README.md [[`1388256`](https://github.com/PrismJS/prism/commit/1388256)]
|
|
||||||
* Updated documentation since the example was not relevant any more [[`80aedb2`](https://github.com/PrismJS/prism/commit/80aedb2)]
|
|
||||||
* Fixed inline style for Coy theme [[`52829b3`](https://github.com/PrismJS/prism/commit/52829b3)]
|
|
||||||
* Prevent errors in nodeJS ([#754](https://github.com/PrismJS/prism/issues/754)) [[`9f5c93c`](https://github.com/PrismJS/prism/commit/9f5c93c), [`0356c58`](https://github.com/PrismJS/prism/commit/0356c58)]
|
|
||||||
* Explicitly make the Worker close itself after highlighting, so that users have control on this behaviour when directly using Prism inside a Worker. Fix [#492](https://github.com/PrismJS/prism/issues/492) [[`e42a228`](https://github.com/PrismJS/prism/commit/e42a228)]
|
|
||||||
* Added some language aliases: js for javascript, xml, html, mathml and svg for markup [[`2f9fe1e`](https://github.com/PrismJS/prism/commit/2f9fe1e)]
|
|
||||||
* Download page: Add a "Select all" checkbox ([#561](https://github.com/PrismJS/prism/issues/561)) [[`9a9020b`](https://github.com/PrismJS/prism/commit/9a9020b)]
|
|
||||||
* Download page: Don't add semicolon unless needed in generated code. Fix [#273](https://github.com/PrismJS/prism/issues/273) [[`5a5eec5`](https://github.com/PrismJS/prism/commit/5a5eec5)]
|
|
||||||
* Add language counter on homepage [[`889cda5`](https://github.com/PrismJS/prism/commit/889cda5)]
|
|
||||||
* Improve performance by doing more work in the worker [[`1316abc`](https://github.com/PrismJS/prism/commit/1316abc)]
|
|
||||||
* Replace Typeplate with SitePoint on homepage. Fix [#774](https://github.com/PrismJS/prism/issues/774) [[`0c54308`](https://github.com/PrismJS/prism/commit/0c54308)]
|
|
||||||
* Added basic `.editorconfig` [[`c48f55d`](https://github.com/PrismJS/prism/commit/c48f55d)]
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 1.0.1 (2015-07-26)
|
|
||||||
|
|
||||||
### New components
|
|
||||||
|
|
||||||
* __Brainfuck__ ([#611](https://github.com/PrismJS/prism/issues/611)) [[`3ede718`](https://github.com/PrismJS/prism/commit/3ede718)]
|
|
||||||
* __Keyman__ ([#609](https://github.com/PrismJS/prism/issues/609)) [[`2698f82`](https://github.com/PrismJS/prism/commit/2698f82), [`e9936c6`](https://github.com/PrismJS/prism/commit/e9936c6)]
|
|
||||||
* __Makefile__ ([#610](https://github.com/PrismJS/prism/issues/610)) [[`3baa61c`](https://github.com/PrismJS/prism/commit/3baa61c)]
|
|
||||||
* __Sass (Sass)__ (fix [#199](https://github.com/PrismJS/prism/issues/199)) [[`b081804`](https://github.com/PrismJS/prism/commit/b081804)]
|
|
||||||
* __VHDL__ ([#595](https://github.com/PrismJS/prism/issues/595)) [[`43e6157`](https://github.com/PrismJS/prism/commit/43e6157)]
|
|
||||||
|
|
||||||
### Updated components
|
|
||||||
|
|
||||||
* __ActionScript__:
|
|
||||||
* Fix ! operator and add ++ and -- as whole operators [[`6bf0794`](https://github.com/PrismJS/prism/commit/6bf0794)]
|
|
||||||
* Fix XML highlighting [[`90257b0`](https://github.com/PrismJS/prism/commit/90257b0)]
|
|
||||||
* Update examples to add inline XML [[`2c1626a`](https://github.com/PrismJS/prism/commit/2c1626a), [`3987711`](https://github.com/PrismJS/prism/commit/3987711)]
|
|
||||||
* __Apache Configuration__:
|
|
||||||
* Don't include the spaces in directive-inline [[`e87efd8`](https://github.com/PrismJS/prism/commit/e87efd8)]
|
|
||||||
* __AppleScript__:
|
|
||||||
* Allow one level of nesting in block comments [[`65894c5`](https://github.com/PrismJS/prism/commit/65894c5)]
|
|
||||||
* Removed duplicates between operators and keywords [[`1ec5a81`](https://github.com/PrismJS/prism/commit/1ec5a81)]
|
|
||||||
* Removed duplicates between keywords and classes [[`e8d09f6`](https://github.com/PrismJS/prism/commit/e8d09f6)]
|
|
||||||
* Move numbers up so they are not broken by operator pattern [[`66dac31`](https://github.com/PrismJS/prism/commit/66dac31)]
|
|
||||||
* __ASP.NET__:
|
|
||||||
* Prevent Markup tags from breaking ASP tags + fix MasterType directive [[`1f0a336`](https://github.com/PrismJS/prism/commit/1f0a336)]
|
|
||||||
* __AutoHotkey__:
|
|
||||||
* Allow tags (labels) to be highlighted at the end of the code [[`0a1fc4b`](https://github.com/PrismJS/prism/commit/0a1fc4b)]
|
|
||||||
* Match all operators + add comma to punctuation [[`f0ccb1b`](https://github.com/PrismJS/prism/commit/f0ccb1b)]
|
|
||||||
* Removed duplicates in keywords lists [[`fe0a068`](https://github.com/PrismJS/prism/commit/fe0a068)]
|
|
||||||
* __Bash__:
|
|
||||||
* Simplify comment regex [[`2700981`](https://github.com/PrismJS/prism/commit/2700981)]
|
|
||||||
* Removed duplicates in keywords + removed unneeded parentheses [[`903b8a4`](https://github.com/PrismJS/prism/commit/903b8a4)]
|
|
||||||
* __C__:
|
|
||||||
* Removed string pattern (inherited from C-like) [[`dcce1a7`](https://github.com/PrismJS/prism/commit/dcce1a7)]
|
|
||||||
* Better support for macro statements [[`4868635`](https://github.com/PrismJS/prism/commit/4868635)]
|
|
||||||
* __C#__:
|
|
||||||
* Fix preprocessor pattern [[`86311f5`](https://github.com/PrismJS/prism/commit/86311f5)]
|
|
||||||
* __C++__:
|
|
||||||
* Removed delete[] and new[] broken keywords [[`42fbeef`](https://github.com/PrismJS/prism/commit/42fbeef)]
|
|
||||||
* __C-like__:
|
|
||||||
* Removed unused 'ignore' pattern [[`b6535dd`](https://github.com/PrismJS/prism/commit/b6535dd)]
|
|
||||||
* Use look-ahead instead of inside to match functions [[`d4194c9`](https://github.com/PrismJS/prism/commit/d4194c9)]
|
|
||||||
* __CoffeeScript__:
|
|
||||||
* Prevent strings from ending with a backslash [[`cb6b824`](https://github.com/PrismJS/prism/commit/cb6b824)]
|
|
||||||
* __CSS__:
|
|
||||||
* Highlight parentheses as punctuation [[`cd0273e`](https://github.com/PrismJS/prism/commit/cd0273e)]
|
|
||||||
* Improved highlighting of at-rules [[`e254088`](https://github.com/PrismJS/prism/commit/e254088)]
|
|
||||||
* Improved URL and strings [[`901812c`](https://github.com/PrismJS/prism/commit/901812c)]
|
|
||||||
* Selector regexp should not include last spaces before brace [[`f2e2718`](https://github.com/PrismJS/prism/commit/f2e2718)]
|
|
||||||
* Handle \r\n [[`15760e1`](https://github.com/PrismJS/prism/commit/15760e1)]
|
|
||||||
* __Eiffel__:
|
|
||||||
* Fix string patterns order + fix /= operator [[`7d1b8d7`](https://github.com/PrismJS/prism/commit/7d1b8d7)]
|
|
||||||
* __Erlang__:
|
|
||||||
* Fixed quoted functions, quoted atoms, variables and <= operator [[`fa286aa`](https://github.com/PrismJS/prism/commit/fa286aa)]
|
|
||||||
* __Fortran__:
|
|
||||||
* Improved pattern for comments inside strings [[`40ae215`](https://github.com/PrismJS/prism/commit/40ae215)]
|
|
||||||
* Fixed order in keyword pattern [[`8a6d32d`](https://github.com/PrismJS/prism/commit/8a6d32d)]
|
|
||||||
* __Handlebars__:
|
|
||||||
* Support blocks with dashes ([#587](https://github.com/PrismJS/prism/issues/587)) [[`f409b13`](https://github.com/PrismJS/prism/commit/f409b13)]
|
|
||||||
* __JavaScript__:
|
|
||||||
* Added support for 'y' and 'u' ES6 JavaScript regex flags ([#596](https://github.com/PrismJS/prism/issues/596)) [[`5d99957`](https://github.com/PrismJS/prism/commit/5d99957)]
|
|
||||||
* Added support for missing ES6 keywords in JavaScript ([#596](https://github.com/PrismJS/prism/issues/596)) [[`ca68b87`](https://github.com/PrismJS/prism/commit/ca68b87)]
|
|
||||||
* Added `async` and `await` keywords ([#575](https://github.com/PrismJS/prism/issues/575)) [[`5458cec`](https://github.com/PrismJS/prism/commit/5458cec)]
|
|
||||||
* Added support for Template strings + interpolation [[`04f72b1`](https://github.com/PrismJS/prism/commit/04f72b1)]
|
|
||||||
* Added support for octal and binary numbers ([#597](https://github.com/PrismJS/prism/issues/597)) [[`a8aa058`](https://github.com/PrismJS/prism/commit/a8aa058)]
|
|
||||||
* Improve regex performance of C-like strings and JS regexps [[`476cbf4`](https://github.com/PrismJS/prism/commit/476cbf4)]
|
|
||||||
* __Markup__:
|
|
||||||
* Allow non-ASCII chars in tag names and attributes (fix [#585](https://github.com/PrismJS/prism/issues/585)) [[`52fd55e`](https://github.com/PrismJS/prism/commit/52fd55e)]
|
|
||||||
* Optimized tag's regexp so that it stops crashing on large unclosed tags [[`75452ba`](https://github.com/PrismJS/prism/commit/75452ba)]
|
|
||||||
* Highlight single quotes in attr-value as punctuation [[`1ebcb8e`](https://github.com/PrismJS/prism/commit/1ebcb8e)]
|
|
||||||
* Doctype and prolog can be multi-line [[`c19a238`](https://github.com/PrismJS/prism/commit/c19a238)]
|
|
||||||
* __Python__:
|
|
||||||
* Added highlighting for function declaration ([#601](https://github.com/PrismJS/prism/issues/601)) [[`a88aae8`](https://github.com/PrismJS/prism/commit/a88aae8)]
|
|
||||||
* Fixed wrong highlighting of variables named a, b, c... f ([#601](https://github.com/PrismJS/prism/issues/601)) [[`a88aae8`](https://github.com/PrismJS/prism/commit/a88aae8)]
|
|
||||||
* __Ruby__:
|
|
||||||
* Added support for string interpolation [[`c36b123`](https://github.com/PrismJS/prism/commit/c36b123)]
|
|
||||||
* __Scss__:
|
|
||||||
* Fixed media queries highlighting [[`bf8e032`](https://github.com/PrismJS/prism/commit/bf8e032)]
|
|
||||||
* Improved highlighting inside at-rules [[`eef4248`](https://github.com/PrismJS/prism/commit/eef4248)]
|
|
||||||
* Match placeholders inside selectors (fix [#238](https://github.com/PrismJS/prism/issues/238)) [[`4e42e26`](https://github.com/PrismJS/prism/commit/4e42e26)]
|
|
||||||
* __Swift__:
|
|
||||||
* Update keywords list (fix [#625](https://github.com/PrismJS/prism/issues/625)) [[`88f44a7`](https://github.com/PrismJS/prism/commit/88f44a7)]
|
|
||||||
|
|
||||||
### Updated plugins
|
|
||||||
|
|
||||||
* __File Highlight__:
|
|
||||||
* Allow to specify the highlighting language. Fix [#607](https://github.com/PrismJS/prism/issues/607) [[`8030db9`](https://github.com/PrismJS/prism/commit/8030db9)]
|
|
||||||
* __Line Highlight__:
|
|
||||||
* Fixed incorrect height in IE9 ([#604](https://github.com/PrismJS/prism/issues/604)) [[`f1705eb`](https://github.com/PrismJS/prism/commit/f1705eb)]
|
|
||||||
* Prevent errors in IE8 [[`5f133c8`](https://github.com/PrismJS/prism/commit/5f133c8)]
|
|
||||||
|
|
||||||
### Other changes
|
|
||||||
|
|
||||||
* Removed moot `version` property from `bower.json` ([#594](https://github.com/PrismJS/prism/issues/594)) [[`4693499`](https://github.com/PrismJS/prism/commit/4693499)]
|
|
||||||
* Added repository to `bower.json` ([#600](https://github.com/PrismJS/prism/issues/600)) [[`8e5ebcc`](https://github.com/PrismJS/prism/commit/8e5ebcc)]
|
|
||||||
* Added `.DS_Store` to `.gitignore` [[`1707e4e`](https://github.com/PrismJS/prism/commit/1707e4e)]
|
|
||||||
* Improve test drive page usability. Fix [#591](https://github.com/PrismJS/prism/issues/591) [[`fe60858`](https://github.com/PrismJS/prism/commit/fe60858)]
|
|
||||||
* Fixed prism-core and prism-file-highlight to prevent errors in IE8 [[`5f133c8`](https://github.com/PrismJS/prism/commit/5f133c8)]
|
|
||||||
* Add Ubuntu Mono font to font stack [[`ed9d7e3`](https://github.com/PrismJS/prism/commit/ed9d7e3)]
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 1.0.0 (2015-05-23)
|
|
||||||
|
|
||||||
* First release
|
|
||||||
* Supported languages:
|
|
||||||
* ActionScript
|
|
||||||
* Apache Configuration
|
|
||||||
* AppleScript
|
|
||||||
* ASP.NET (C#)
|
|
||||||
* AutoHotkey
|
|
||||||
* Bash
|
|
||||||
* C
|
|
||||||
* C#
|
|
||||||
* C++
|
|
||||||
* C-like
|
|
||||||
* CoffeeScript
|
|
||||||
* CSS
|
|
||||||
* CSS Extras
|
|
||||||
* Dart
|
|
||||||
* Eiffel
|
|
||||||
* Erlang
|
|
||||||
* F#
|
|
||||||
* Fortran
|
|
||||||
* Gherkin
|
|
||||||
* Git
|
|
||||||
* Go
|
|
||||||
* Groovy
|
|
||||||
* Haml
|
|
||||||
* Handlebars
|
|
||||||
* Haskell
|
|
||||||
* HTTP
|
|
||||||
* Ini
|
|
||||||
* Jade
|
|
||||||
* Java
|
|
||||||
* JavaScript
|
|
||||||
* Julia
|
|
||||||
* LaTeX
|
|
||||||
* Less
|
|
||||||
* LOLCODE
|
|
||||||
* Markdown
|
|
||||||
* Markup
|
|
||||||
* MATLAB
|
|
||||||
* NASM
|
|
||||||
* NSIS
|
|
||||||
* Objective-C
|
|
||||||
* Pascal
|
|
||||||
* Perl
|
|
||||||
* PHP
|
|
||||||
* PHP Extras
|
|
||||||
* PowerShell
|
|
||||||
* Python
|
|
||||||
* R
|
|
||||||
* React JSX
|
|
||||||
* reST
|
|
||||||
* Rip
|
|
||||||
* Ruby
|
|
||||||
* Rust
|
|
||||||
* SAS
|
|
||||||
* Sass (Scss)
|
|
||||||
* Scala
|
|
||||||
* Scheme
|
|
||||||
* Smalltalk
|
|
||||||
* Smarty
|
|
||||||
* SQL
|
|
||||||
* Stylus
|
|
||||||
* Swift
|
|
||||||
* Twig
|
|
||||||
* TypeScript
|
|
||||||
* Wiki markup
|
|
||||||
* YAML
|
|
||||||
* Plugins:
|
|
||||||
* Autolinker
|
|
||||||
* File Highlight
|
|
||||||
* Highlight Keywords
|
|
||||||
* Line Highlight
|
|
||||||
* Line Numbers
|
|
||||||
* Show Invisibles
|
|
||||||
* Show Language
|
|
||||||
* WebPlatform Docs
|
|
21
dashboard-ui/bower_components/prism/LICENSE
vendored
21
dashboard-ui/bower_components/prism/LICENSE
vendored
|
@ -1,21 +0,0 @@
|
||||||
MIT LICENSE
|
|
||||||
|
|
||||||
Copyright (c) 2012-2013 Lea Verou
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
29
dashboard-ui/bower_components/prism/bower.json
vendored
29
dashboard-ui/bower_components/prism/bower.json
vendored
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"name": "prism",
|
|
||||||
"main": [
|
|
||||||
"prism.js",
|
|
||||||
"themes/prism.css"
|
|
||||||
],
|
|
||||||
"homepage": "http://prismjs.com",
|
|
||||||
"authors": "Lea Verou",
|
|
||||||
"description": "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet.",
|
|
||||||
"license": "MIT",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/PrismJS/prism.git"
|
|
||||||
},
|
|
||||||
"ignore": [
|
|
||||||
"**/.*",
|
|
||||||
"img",
|
|
||||||
"templates",
|
|
||||||
"CNAME",
|
|
||||||
"*.html",
|
|
||||||
"style.css",
|
|
||||||
"favicon.png",
|
|
||||||
"logo.svg",
|
|
||||||
"download.js",
|
|
||||||
"prefixfree.min.js",
|
|
||||||
"utopia.js",
|
|
||||||
"code.js"
|
|
||||||
]
|
|
||||||
}
|
|
603
dashboard-ui/bower_components/prism/components.js
vendored
603
dashboard-ui/bower_components/prism/components.js
vendored
|
@ -1,603 +0,0 @@
|
||||||
var components = {
|
|
||||||
"core": {
|
|
||||||
"meta": {
|
|
||||||
"path": "components/prism-core.js",
|
|
||||||
"option": "mandatory"
|
|
||||||
},
|
|
||||||
"core": "Core"
|
|
||||||
},
|
|
||||||
"themes": {
|
|
||||||
"meta": {
|
|
||||||
"path": "themes/{id}.css",
|
|
||||||
"link": "index.html?theme={id}",
|
|
||||||
"exclusive": true
|
|
||||||
},
|
|
||||||
"prism": {
|
|
||||||
"title": "Default",
|
|
||||||
"option": "default"
|
|
||||||
},
|
|
||||||
"prism-dark": "Dark",
|
|
||||||
"prism-funky": "Funky",
|
|
||||||
"prism-okaidia": {
|
|
||||||
"title": "Okaidia",
|
|
||||||
"owner": "ocodia"
|
|
||||||
},
|
|
||||||
"prism-twilight": {
|
|
||||||
"title": "Twilight",
|
|
||||||
"owner": "remybach"
|
|
||||||
},
|
|
||||||
"prism-coy": {
|
|
||||||
"title": "Coy",
|
|
||||||
"owner": "tshedor"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"languages": {
|
|
||||||
"meta": {
|
|
||||||
"path": "components/prism-{id}",
|
|
||||||
"noCSS": true,
|
|
||||||
"examplesPath": "examples/prism-{id}",
|
|
||||||
"addCheckAll": true
|
|
||||||
},
|
|
||||||
"markup": {
|
|
||||||
"title": "Markup",
|
|
||||||
"option": "default"
|
|
||||||
},
|
|
||||||
"css": {
|
|
||||||
"title": "CSS",
|
|
||||||
"option": "default"
|
|
||||||
},
|
|
||||||
"clike": {
|
|
||||||
"title": "C-like",
|
|
||||||
"option": "default"
|
|
||||||
},
|
|
||||||
"javascript": {
|
|
||||||
"title": "JavaScript",
|
|
||||||
"option": "default",
|
|
||||||
"require": "clike"
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"abap": {
|
|
||||||
"title": "ABAP",
|
|
||||||
"owner": "dellagustin"
|
|
||||||
},
|
|
||||||
"actionscript": {
|
|
||||||
"title": "ActionScript",
|
|
||||||
"require": "javascript",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"apacheconf": {
|
|
||||||
"title": "Apache Configuration",
|
|
||||||
"owner": "GuiTeK"
|
|
||||||
},
|
|
||||||
"apl": {
|
|
||||||
"title": "APL",
|
|
||||||
"owner": "ngn"
|
|
||||||
},
|
|
||||||
"applescript": {
|
|
||||||
"title": "AppleScript",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"asciidoc": {
|
|
||||||
"title": "AsciiDoc",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"aspnet": {
|
|
||||||
"title": "ASP.NET (C#)",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "nauzilus"
|
|
||||||
},
|
|
||||||
"autoit": {
|
|
||||||
"title": "AutoIt",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"autohotkey": {
|
|
||||||
"title": "AutoHotkey",
|
|
||||||
"owner": "aviaryan"
|
|
||||||
},
|
|
||||||
"bash": {
|
|
||||||
"title": "Bash",
|
|
||||||
"owner": "zeitgeist87"
|
|
||||||
},
|
|
||||||
"basic": {
|
|
||||||
"title": "BASIC",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"batch": {
|
|
||||||
"title": "Batch",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"bison": {
|
|
||||||
"title": "Bison",
|
|
||||||
"require": "c",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"brainfuck": {
|
|
||||||
"title": "Brainfuck",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"c": {
|
|
||||||
"title": "C",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "zeitgeist87"
|
|
||||||
},
|
|
||||||
"csharp": {
|
|
||||||
"title": "C#",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "mvalipour"
|
|
||||||
},
|
|
||||||
"cpp": {
|
|
||||||
"title": "C++",
|
|
||||||
"require": "c",
|
|
||||||
"owner": "zeitgeist87"
|
|
||||||
},
|
|
||||||
"coffeescript": {
|
|
||||||
"title": "CoffeeScript",
|
|
||||||
"require": "javascript",
|
|
||||||
"owner": "R-osey"
|
|
||||||
},
|
|
||||||
"crystal": {
|
|
||||||
"title": "Crystal",
|
|
||||||
"require": "ruby",
|
|
||||||
"owner": "MakeNowJust"
|
|
||||||
},
|
|
||||||
"css-extras": {
|
|
||||||
"title": "CSS Extras",
|
|
||||||
"require": "css",
|
|
||||||
"owner": "milesj"
|
|
||||||
},
|
|
||||||
"d": {
|
|
||||||
"title": "D",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"dart": {
|
|
||||||
"title": "Dart",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"diff": {
|
|
||||||
"title": "Diff",
|
|
||||||
"owner": "uranusjr"
|
|
||||||
},
|
|
||||||
"docker": {
|
|
||||||
"title": "Docker",
|
|
||||||
"owner": "JustinBeckwith"
|
|
||||||
},
|
|
||||||
"eiffel": {
|
|
||||||
"title": "Eiffel",
|
|
||||||
"owner": "Conaclos"
|
|
||||||
},
|
|
||||||
"elixir": {
|
|
||||||
"title": "Elixir",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"erlang": {
|
|
||||||
"title": "Erlang",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"fsharp": {
|
|
||||||
"title": "F#",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "simonreynolds7"
|
|
||||||
},
|
|
||||||
"fortran": {
|
|
||||||
"title": "Fortran",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"gherkin": {
|
|
||||||
"title": "Gherkin",
|
|
||||||
"owner": "hason"
|
|
||||||
},
|
|
||||||
"git": {
|
|
||||||
"title": "Git",
|
|
||||||
"owner": "lgiraudel"
|
|
||||||
},
|
|
||||||
"glsl": {
|
|
||||||
"title": "GLSL",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"go": {
|
|
||||||
"title": "Go",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "arnehormann"
|
|
||||||
},
|
|
||||||
"groovy": {
|
|
||||||
"title": "Groovy",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "robfletcher"
|
|
||||||
},
|
|
||||||
"haml": {
|
|
||||||
"title": "Haml",
|
|
||||||
"require": "ruby",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"handlebars": {
|
|
||||||
"title": "Handlebars",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"haskell": {
|
|
||||||
"title": "Haskell",
|
|
||||||
"owner": "bholst"
|
|
||||||
},
|
|
||||||
"haxe": {
|
|
||||||
"title": "Haxe",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"http": {
|
|
||||||
"title": "HTTP",
|
|
||||||
"owner": "danielgtaylor"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"title": "Icon",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"inform7": {
|
|
||||||
"title": "Inform 7",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"ini": {
|
|
||||||
"title": "Ini",
|
|
||||||
"owner": "aviaryan"
|
|
||||||
},
|
|
||||||
"j": {
|
|
||||||
"title": "J",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"jade": {
|
|
||||||
"title": "Jade",
|
|
||||||
"require": "javascript",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"java": {
|
|
||||||
"title": "Java",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "sherblot"
|
|
||||||
},
|
|
||||||
"julia": {
|
|
||||||
"title": "Julia",
|
|
||||||
"owner": "cdagnino"
|
|
||||||
},
|
|
||||||
"keyman": {
|
|
||||||
"title": "Keyman",
|
|
||||||
"owner": "mcdurdin"
|
|
||||||
},
|
|
||||||
"kotlin": {
|
|
||||||
"title": "Kotlin",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"latex": {
|
|
||||||
"title": "LaTeX",
|
|
||||||
"owner": "japborst"
|
|
||||||
},
|
|
||||||
"less": {
|
|
||||||
"title": "Less",
|
|
||||||
"require": "css",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"lolcode": {
|
|
||||||
"title": "LOLCODE",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"lua": {
|
|
||||||
"title": "Lua",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"makefile": {
|
|
||||||
"title": "Makefile",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"markdown": {
|
|
||||||
"title": "Markdown",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"matlab": {
|
|
||||||
"title": "MATLAB",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"mel": {
|
|
||||||
"title": "MEL",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"mizar": {
|
|
||||||
"title": "Mizar",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"monkey": {
|
|
||||||
"title": "Monkey",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"nasm": {
|
|
||||||
"title": "NASM",
|
|
||||||
"owner": "rbmj"
|
|
||||||
},
|
|
||||||
"nginx": {
|
|
||||||
"title": "nginx",
|
|
||||||
"owner": "westonganger",
|
|
||||||
"require": "clike"
|
|
||||||
},
|
|
||||||
"nim": {
|
|
||||||
"title": "Nim",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"nix": {
|
|
||||||
"title": "Nix",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"nsis": {
|
|
||||||
"title": "NSIS",
|
|
||||||
"owner": "idleberg"
|
|
||||||
},
|
|
||||||
"objectivec": {
|
|
||||||
"title": "Objective-C",
|
|
||||||
"require": "c",
|
|
||||||
"owner": "uranusjr"
|
|
||||||
},
|
|
||||||
"ocaml": {
|
|
||||||
"title": "OCaml",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"oz": {
|
|
||||||
"title": "Oz",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"parigp": {
|
|
||||||
"title": "PARI/GP",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"parser": {
|
|
||||||
"title": "Parser",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"pascal": {
|
|
||||||
"title": "Pascal",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"perl": {
|
|
||||||
"title": "Perl",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"php": {
|
|
||||||
"title": "PHP",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "milesj"
|
|
||||||
},
|
|
||||||
"php-extras": {
|
|
||||||
"title": "PHP Extras",
|
|
||||||
"require": "php",
|
|
||||||
"owner": "milesj"
|
|
||||||
},
|
|
||||||
"powershell": {
|
|
||||||
"title": "PowerShell",
|
|
||||||
"owner": "nauzilus"
|
|
||||||
},
|
|
||||||
"processing": {
|
|
||||||
"title": "Processing",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"prolog": {
|
|
||||||
"title": "Prolog",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"puppet": {
|
|
||||||
"title": "Puppet",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"pure": {
|
|
||||||
"title": "Pure",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"python": {
|
|
||||||
"title": "Python",
|
|
||||||
"owner": "multipetros"
|
|
||||||
},
|
|
||||||
"q": {
|
|
||||||
"title": "Q",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"qore": {
|
|
||||||
"title": "Qore",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "temnroegg"
|
|
||||||
},
|
|
||||||
"r": {
|
|
||||||
"title": "R",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"jsx":{
|
|
||||||
"title": "React JSX",
|
|
||||||
"require": ["markup", "javascript"],
|
|
||||||
"owner": "vkbansal"
|
|
||||||
},
|
|
||||||
"rest": {
|
|
||||||
"title": "reST (reStructuredText)",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"rip": {
|
|
||||||
"title": "Rip",
|
|
||||||
"owner": "ravinggenius"
|
|
||||||
},
|
|
||||||
"roboconf": {
|
|
||||||
"title": "Roboconf",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"ruby": {
|
|
||||||
"title": "Ruby",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "samflores"
|
|
||||||
},
|
|
||||||
"rust": {
|
|
||||||
"title": "Rust",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"sas": {
|
|
||||||
"title": "SAS",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"sass": {
|
|
||||||
"title": "Sass (Sass)",
|
|
||||||
"require": "css",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"scss": {
|
|
||||||
"title": "Sass (Scss)",
|
|
||||||
"require": "css",
|
|
||||||
"owner": "MoOx"
|
|
||||||
},
|
|
||||||
"scala": {
|
|
||||||
"title": "Scala",
|
|
||||||
"require": "java",
|
|
||||||
"owner": "jozic"
|
|
||||||
},
|
|
||||||
"scheme" : {
|
|
||||||
"title": "Scheme",
|
|
||||||
"owner" : "bacchus123"
|
|
||||||
},
|
|
||||||
"smalltalk": {
|
|
||||||
"title": "Smalltalk",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"smarty": {
|
|
||||||
"title": "Smarty",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"sql": {
|
|
||||||
"title": "SQL",
|
|
||||||
"owner": "multipetros"
|
|
||||||
},
|
|
||||||
"stylus" : {
|
|
||||||
"title": "Stylus",
|
|
||||||
"owner": "vkbansal"
|
|
||||||
},
|
|
||||||
"swift": {
|
|
||||||
"title": "Swift",
|
|
||||||
"require": "clike",
|
|
||||||
"owner": "chrischares"
|
|
||||||
},
|
|
||||||
"tcl": {
|
|
||||||
"title": "Tcl",
|
|
||||||
"owner": "PeterChaplin"
|
|
||||||
},
|
|
||||||
"textile": {
|
|
||||||
"title": "Textile",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"twig": {
|
|
||||||
"title": "Twig",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "brandonkelly"
|
|
||||||
},
|
|
||||||
"typescript":{
|
|
||||||
"title": "TypeScript",
|
|
||||||
"require": "javascript",
|
|
||||||
"owner": "vkbansal"
|
|
||||||
},
|
|
||||||
"verilog": {
|
|
||||||
"title": "Verilog",
|
|
||||||
"owner": "a-rey"
|
|
||||||
},
|
|
||||||
"vhdl": {
|
|
||||||
"title": "VHDL",
|
|
||||||
"owner": "a-rey"
|
|
||||||
},
|
|
||||||
"vim": {
|
|
||||||
"title": "vim",
|
|
||||||
"owner": "westonganger"
|
|
||||||
},
|
|
||||||
"wiki": {
|
|
||||||
"title": "Wiki markup",
|
|
||||||
"require": "markup",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"yaml": {
|
|
||||||
"title": "YAML",
|
|
||||||
"owner": "hason"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"plugins": {
|
|
||||||
"meta": {
|
|
||||||
"path": "plugins/{id}/prism-{id}",
|
|
||||||
"link": "plugins/{id}/"
|
|
||||||
},
|
|
||||||
"line-highlight": "Line Highlight",
|
|
||||||
"line-numbers": {
|
|
||||||
"title": "Line Numbers",
|
|
||||||
"owner": "kuba-kubula"
|
|
||||||
},
|
|
||||||
"show-invisibles": "Show Invisibles",
|
|
||||||
"autolinker": "Autolinker",
|
|
||||||
"wpd": "WebPlatform Docs",
|
|
||||||
"file-highlight": {
|
|
||||||
"title": "File Highlight",
|
|
||||||
"noCSS": true
|
|
||||||
},
|
|
||||||
"show-language": {
|
|
||||||
"title": "Show Language",
|
|
||||||
"owner": "nauzilus"
|
|
||||||
},
|
|
||||||
"jsonp-highlight": {
|
|
||||||
"title": "JSONP Highlight",
|
|
||||||
"noCSS": true,
|
|
||||||
"owner": "nauzilus"
|
|
||||||
},
|
|
||||||
"highlight-keywords": {
|
|
||||||
"title": "Highlight Keywords",
|
|
||||||
"owner": "vkbansal",
|
|
||||||
"noCSS": true
|
|
||||||
},
|
|
||||||
"remove-initial-line-feed": {
|
|
||||||
"title": "Remove initial line feed",
|
|
||||||
"owner": "Golmote",
|
|
||||||
"noCSS": true
|
|
||||||
},
|
|
||||||
"previewer-base": {
|
|
||||||
"title": "Previewer: Base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"previewer-color": {
|
|
||||||
"title": "Previewer: Color",
|
|
||||||
"require": "previewer-base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"previewer-gradient": {
|
|
||||||
"title": "Previewer: Gradient",
|
|
||||||
"require": "previewer-base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"previewer-easing": {
|
|
||||||
"title": "Previewer: Easing",
|
|
||||||
"require": "previewer-base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"previewer-time": {
|
|
||||||
"title": "Previewer: Time",
|
|
||||||
"require": "previewer-base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"previewer-angle": {
|
|
||||||
"title": "Previewer: Angle",
|
|
||||||
"require": "previewer-base",
|
|
||||||
"owner": "Golmote"
|
|
||||||
},
|
|
||||||
"autoloader": {
|
|
||||||
"title": "Autoloader",
|
|
||||||
"owner": "Golmote",
|
|
||||||
"noCSS": true
|
|
||||||
},
|
|
||||||
"keep-markup": {
|
|
||||||
"title": "Keep Markup",
|
|
||||||
"owner": "Golmote",
|
|
||||||
"noCSS": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,17 +0,0 @@
|
||||||
Prism.languages.actionscript = Prism.languages.extend('javascript', {
|
|
||||||
'keyword': /\b(?:as|break|case|catch|class|const|default|delete|do|else|extends|finally|for|function|if|implements|import|in|instanceof|interface|internal|is|native|new|null|package|private|protected|public|return|super|switch|this|throw|try|typeof|use|var|void|while|with|dynamic|each|final|get|include|namespace|native|override|set|static)\b/,
|
|
||||||
'operator': /\+\+|--|(?:[+\-*\/%^]|&&?|\|\|?|<<?|>>?>?|[!=]=?)=?|[~?@]/
|
|
||||||
});
|
|
||||||
Prism.languages.actionscript['class-name'].alias = 'function';
|
|
||||||
|
|
||||||
if (Prism.languages.markup) {
|
|
||||||
Prism.languages.insertBefore('actionscript', 'string', {
|
|
||||||
'xml': {
|
|
||||||
pattern: /(^|[^.])<\/?\w+(?:\s+[^\s>\/=]+=("|')(?:\\\1|\\?(?!\1)[\w\W])*\2)*\s*\/?>/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.markup
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.actionscript=Prism.languages.extend("javascript",{keyword:/\b(?:as|break|case|catch|class|const|default|delete|do|else|extends|finally|for|function|if|implements|import|in|instanceof|interface|internal|is|native|new|null|package|private|protected|public|return|super|switch|this|throw|try|typeof|use|var|void|while|with|dynamic|each|final|get|include|namespace|native|override|set|static)\b/,operator:/\+\+|--|(?:[+\-*\/%^]|&&?|\|\|?|<<?|>>?>?|[!=]=?)=?|[~?@]/}),Prism.languages.actionscript["class-name"].alias="function",Prism.languages.markup&&Prism.languages.insertBefore("actionscript","string",{xml:{pattern:/(^|[^.])<\/?\w+(?:\s+[^\s>\/=]+=("|')(?:\\\1|\\?(?!\1)[\w\W])*\2)*\s*\/?>/,lookbehind:!0,inside:{rest:Prism.languages.markup}}});
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,29 +0,0 @@
|
||||||
Prism.languages.apl = {
|
|
||||||
'comment': /(?:⍝|#[! ]).*$/m,
|
|
||||||
'string': /'(?:[^'\r\n]|'')*'/,
|
|
||||||
'number': /¯?(?:\d*\.?\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:\d*\.?\d+(?:e[\+¯]?\d+)?|¯|∞))?/i,
|
|
||||||
'statement': /:[A-Z][a-z][A-Za-z]*\b/,
|
|
||||||
'system-function': {
|
|
||||||
pattern: /⎕[A-Z]+/i,
|
|
||||||
alias: 'function'
|
|
||||||
},
|
|
||||||
'constant': /[⍬⌾#⎕⍞]/,
|
|
||||||
'function': /[-+×÷⌈⌊∣|⍳?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,
|
|
||||||
'monadic-operator': {
|
|
||||||
pattern: /[\\\/⌿⍀¨⍨⌶&∥]/,
|
|
||||||
alias: 'operator'
|
|
||||||
},
|
|
||||||
'dyadic-operator': {
|
|
||||||
pattern: /[.⍣⍠⍤∘⌸]/,
|
|
||||||
alias: 'operator'
|
|
||||||
},
|
|
||||||
'assignment': {
|
|
||||||
pattern: /←/,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
'punctuation': /[\[;\]()◇⋄]/,
|
|
||||||
'dfn': {
|
|
||||||
pattern: /[{}⍺⍵⍶⍹∇⍫:]/,
|
|
||||||
alias: 'builtin'
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.apl={comment:/(?:⍝|#[! ]).*$/m,string:/'(?:[^'\r\n]|'')*'/,number:/¯?(?:\d*\.?\d+(?:e[+¯]?\d+)?|¯|∞)(?:j¯?(?:\d*\.?\d+(?:e[\+¯]?\d+)?|¯|∞))?/i,statement:/:[A-Z][a-z][A-Za-z]*\b/,"system-function":{pattern:/⎕[A-Z]+/i,alias:"function"},constant:/[⍬⌾#⎕⍞]/,"function":/[-+×÷⌈⌊∣|⍳?*⍟○!⌹<≤=>≥≠≡≢∊⍷∪∩~∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⌷⍋⍒⊤⊥⍕⍎⊣⊢⍁⍂≈⍯↗¤→]/,"monadic-operator":{pattern:/[\\\/⌿⍀¨⍨⌶&∥]/,alias:"operator"},"dyadic-operator":{pattern:/[.⍣⍠⍤∘⌸]/,alias:"operator"},assignment:{pattern:/←/,alias:"keyword"},punctuation:/[\[;\]()◇⋄]/,dfn:{pattern:/[{}⍺⍵⍶⍹∇⍫:]/,alias:"builtin"}};
|
|
|
@ -1,20 +0,0 @@
|
||||||
Prism.languages.applescript = {
|
|
||||||
'comment': [
|
|
||||||
// Allow one level of nesting
|
|
||||||
/\(\*(?:\(\*[\w\W]*?\*\)|[\w\W])*?\*\)/,
|
|
||||||
/--.+/,
|
|
||||||
/#.+/
|
|
||||||
],
|
|
||||||
'string': /"(?:\\?.)*?"/,
|
|
||||||
'number': /\b-?\d*\.?\d+([Ee]-?\d+)?\b/,
|
|
||||||
'operator': [
|
|
||||||
/[&=≠≤≥*+\-\/÷^]|[<>]=?/,
|
|
||||||
/\b(?:(?:start|begin|end)s? with|(?:(?:does not|doesn't) contain|contains?)|(?:is|isn't|is not) (?:in|contained by)|(?:(?:is|isn't|is not) )?(?:greater|less) than(?: or equal)?(?: to)?|(?:(?:does not|doesn't) come|comes) (?:before|after)|(?:is|isn't|is not) equal(?: to)?|(?:(?:does not|doesn't) equal|equals|equal to|isn't|is not)|(?:a )?(?:ref(?: to)?|reference to)|(?:and|or|div|mod|as|not))\b/
|
|
||||||
],
|
|
||||||
'keyword': /\b(?:about|above|after|against|apart from|around|aside from|at|back|before|beginning|behind|below|beneath|beside|between|but|by|considering|continue|copy|does|eighth|else|end|equal|error|every|exit|false|fifth|first|for|fourth|from|front|get|given|global|if|ignoring|in|instead of|into|is|it|its|last|local|me|middle|my|ninth|of|on|onto|out of|over|prop|property|put|repeat|return|returning|second|set|seventh|since|sixth|some|tell|tenth|that|the|then|third|through|thru|timeout|times|to|transaction|true|try|until|where|while|whose|with|without)\b/,
|
|
||||||
'class': {
|
|
||||||
pattern: /\b(?:alias|application|boolean|class|constant|date|file|integer|list|number|POSIX file|real|record|reference|RGB color|script|text|centimetres|centimeters|feet|inches|kilometres|kilometers|metres|meters|miles|yards|square feet|square kilometres|square kilometers|square metres|square meters|square miles|square yards|cubic centimetres|cubic centimeters|cubic feet|cubic inches|cubic metres|cubic meters|cubic yards|gallons|litres|liters|quarts|grams|kilograms|ounces|pounds|degrees Celsius|degrees Fahrenheit|degrees Kelvin)\b/,
|
|
||||||
alias: 'builtin'
|
|
||||||
},
|
|
||||||
'punctuation': /[{}():,¬«»《》]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.applescript={comment:[/\(\*(?:\(\*[\w\W]*?\*\)|[\w\W])*?\*\)/,/--.+/,/#.+/],string:/"(?:\\?.)*?"/,number:/\b-?\d*\.?\d+([Ee]-?\d+)?\b/,operator:[/[&=≠≤≥*+\-\/÷^]|[<>]=?/,/\b(?:(?:start|begin|end)s? with|(?:(?:does not|doesn't) contain|contains?)|(?:is|isn't|is not) (?:in|contained by)|(?:(?:is|isn't|is not) )?(?:greater|less) than(?: or equal)?(?: to)?|(?:(?:does not|doesn't) come|comes) (?:before|after)|(?:is|isn't|is not) equal(?: to)?|(?:(?:does not|doesn't) equal|equals|equal to|isn't|is not)|(?:a )?(?:ref(?: to)?|reference to)|(?:and|or|div|mod|as|not))\b/],keyword:/\b(?:about|above|after|against|apart from|around|aside from|at|back|before|beginning|behind|below|beneath|beside|between|but|by|considering|continue|copy|does|eighth|else|end|equal|error|every|exit|false|fifth|first|for|fourth|from|front|get|given|global|if|ignoring|in|instead of|into|is|it|its|last|local|me|middle|my|ninth|of|on|onto|out of|over|prop|property|put|repeat|return|returning|second|set|seventh|since|sixth|some|tell|tenth|that|the|then|third|through|thru|timeout|times|to|transaction|true|try|until|where|while|whose|with|without)\b/,"class":{pattern:/\b(?:alias|application|boolean|class|constant|date|file|integer|list|number|POSIX file|real|record|reference|RGB color|script|text|centimetres|centimeters|feet|inches|kilometres|kilometers|metres|meters|miles|yards|square feet|square kilometres|square kilometers|square metres|square meters|square miles|square yards|cubic centimetres|cubic centimeters|cubic feet|cubic inches|cubic metres|cubic meters|cubic yards|gallons|litres|liters|quarts|grams|kilograms|ounces|pounds|degrees Celsius|degrees Fahrenheit|degrees Kelvin)\b/,alias:"builtin"},punctuation:/[{}():,¬«»《》]/};
|
|
|
@ -1,271 +0,0 @@
|
||||||
(function (Prism) {
|
|
||||||
|
|
||||||
var attributes = {
|
|
||||||
pattern: /(^[ \t]*)\[(?!\[)(?:(["'$`])(?:(?!\2)[^\\]|\\.)*\2|\[(?:[^\]\\]|\\.)*\]|[^\]\\]|\\.)*\]/m,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'quoted': {
|
|
||||||
pattern: /([$`])(?:(?!\1)[^\\]|\\.)*\1/,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^[$`]|[$`]$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'interpreted': {
|
|
||||||
pattern: /'(?:[^'\\]|\\.)*'/,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^'|'$/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'string': /"(?:[^"\\]|\\.)*"/,
|
|
||||||
'variable': /\w+(?==)/,
|
|
||||||
'punctuation': /^\[|\]$|,/,
|
|
||||||
'operator': /=/,
|
|
||||||
// The negative look-ahead prevents blank matches
|
|
||||||
'attr-value': /(?!^\s+$).+/
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Prism.languages.asciidoc = {
|
|
||||||
'comment-block': {
|
|
||||||
pattern: /^(\/{4,})(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?\1/m,
|
|
||||||
alias: 'comment'
|
|
||||||
},
|
|
||||||
'table': {
|
|
||||||
pattern: /^\|={3,}(?:(?:\r?\n|\r).*)*?(?:\r?\n|\r)\|={3,}$/m,
|
|
||||||
inside: {
|
|
||||||
'specifiers': {
|
|
||||||
pattern: /(?!\|)(?:(?:(?:\d+(?:\.\d+)?|\.\d+)[+*])?(?:[<^>](?:\.[<^>])?|\.[<^>])?[a-z]*)(?=\|)/,
|
|
||||||
alias: 'attr-value'
|
|
||||||
},
|
|
||||||
'punctuation': {
|
|
||||||
pattern: /(^|[^\\])[|!]=*/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
'passthrough-block': {
|
|
||||||
pattern: /^(\+{4,})(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?\1$/m,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^\++|\++$/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Literal blocks and listing blocks
|
|
||||||
'literal-block': {
|
|
||||||
pattern: /^(-{4,}|\.{4,})(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?\1$/m,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^(?:-+|\.+)|(?:-+|\.+)$/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Sidebar blocks, quote blocks, example blocks and open blocks
|
|
||||||
'other-block': {
|
|
||||||
pattern: /^(--|\*{4,}|_{4,}|={4,})(?:\r?\n|\r)(?:.*(?:\r?\n|\r))*?\1$/m,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^(?:-+|\*+|_+|=+)|(?:-+|\*+|_+|=+)$/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// list-punctuation and list-label must appear before indented-block
|
|
||||||
'list-punctuation': {
|
|
||||||
pattern: /(^[ \t]*)(?:-|\*{1,5}|\.{1,5}|(?:[a-z]|\d+)\.|[xvi]+\))(?= )/im,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
'list-label': {
|
|
||||||
pattern: /(^[ \t]*)[a-z\d].+(?::{2,4}|;;)(?=\s)/im,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'symbol'
|
|
||||||
},
|
|
||||||
'indented-block': {
|
|
||||||
pattern: /((\r?\n|\r)\2)([ \t]+)\S.*(?:(?:\r?\n|\r)\3.+)*(?=\2{2}|$)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
|
|
||||||
'comment': /^\/\/.*/m,
|
|
||||||
'title': {
|
|
||||||
pattern: /^.+(?:\r?\n|\r)(?:={3,}|-{3,}|~{3,}|\^{3,}|\+{3,})$|^={1,5} +.+|^\.(?![\s.]).*/m,
|
|
||||||
alias: 'important',
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^(?:\.|=+)|(?:=+|-+|~+|\^+|\++)$/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'attribute-entry': {
|
|
||||||
pattern: /^:[^:\r\n]+:(?: .*?(?: \+(?:\r?\n|\r).*?)*)?$/m,
|
|
||||||
alias: 'tag'
|
|
||||||
},
|
|
||||||
'attributes': attributes,
|
|
||||||
'hr': {
|
|
||||||
pattern: /^'{3,}$/m,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
'page-break': {
|
|
||||||
pattern: /^<{3,}$/m,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
'admonition': {
|
|
||||||
pattern: /^(?:TIP|NOTE|IMPORTANT|WARNING|CAUTION):/m,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
'callout': [
|
|
||||||
{
|
|
||||||
pattern: /(^[ \t]*)<?\d*>/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'symbol'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /<\d+>/,
|
|
||||||
alias: 'symbol'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'macro': {
|
|
||||||
pattern: /\b[a-z\d][a-z\d-]*::?(?:(?:\S+)??\[(?:[^\]\\"]|(["'])(?:(?!\1)[^\\]|\\.)*\1|\\.)*\])/,
|
|
||||||
inside: {
|
|
||||||
'function': /^[a-z\d-]+(?=:)/,
|
|
||||||
'punctuation': /^::?/,
|
|
||||||
'attributes': {
|
|
||||||
pattern: /(?:\[(?:[^\]\\"]|(["'])(?:(?!\1)[^\\]|\\.)*\1|\\.)*\])/,
|
|
||||||
inside: attributes.inside
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'inline': {
|
|
||||||
/*
|
|
||||||
The initial look-behind prevents the highlighting of escaped quoted text.
|
|
||||||
|
|
||||||
Quoted text can be multi-line but cannot span an empty line.
|
|
||||||
All quoted text can have attributes before [foobar, 'foobar', baz="bar"].
|
|
||||||
|
|
||||||
First, we handle the constrained quotes.
|
|
||||||
Those must be bounded by non-word chars and cannot have spaces between the delimiter and the first char.
|
|
||||||
They are, in order: _emphasis_, ``double quotes'', `single quotes', `monospace`, 'emphasis', *strong*, +monospace+ and #unquoted#
|
|
||||||
|
|
||||||
Then we handle the unconstrained quotes.
|
|
||||||
Those do not have the restrictions of the constrained quotes.
|
|
||||||
They are, in order: __emphasis__, **strong**, ++monospace++, +++passthrough+++, ##unquoted##, $$passthrough$$, ~subscript~, ^superscript^, {attribute-reference}, [[anchor]], [[[bibliography anchor]]], <<xref>>, (((indexes))) and ((indexes))
|
|
||||||
*/
|
|
||||||
pattern: /(^|[^\\])(?:(?:\B\[(?:[^\]\\"]|(["'])(?:(?!\2)[^\\]|\\.)*\2|\\.)*\])?(?:\b_(?!\s)(?: _|[^_\\\r\n]|\\.)+(?:(?:\r?\n|\r)(?: _|[^_\\\r\n]|\\.)+)*_\b|\B``(?!\s).+?(?:(?:\r?\n|\r).+?)*''\B|\B`(?!\s)(?: ['`]|.)+?(?:(?:\r?\n|\r)(?: ['`]|.)+?)*['`]\B|\B(['*+#])(?!\s)(?: \3|(?!\3)[^\\\r\n]|\\.)+(?:(?:\r?\n|\r)(?: \3|(?!\3)[^\\\r\n]|\\.)+)*\3\B)|(?:\[(?:[^\]\\"]|(["'])(?:(?!\4)[^\\]|\\.)*\4|\\.)*\])?(?:(__|\*\*|\+\+\+?|##|\$\$|[~^]).+?(?:(?:\r?\n|\r).+?)*\5|\{[^}\r\n]+\}|\[\[\[?.+?(?:(?:\r?\n|\r).+?)*\]?\]\]|<<.+?(?:(?:\r?\n|\r).+?)*>>|\(\(\(?.+?(?:(?:\r?\n|\r).+?)*\)?\)\)))/m,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'attributes': attributes,
|
|
||||||
'url': {
|
|
||||||
pattern: /^(?:\[\[\[?.+?\]?\]\]|<<.+?>>)$/,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^(?:\[\[\[?|<<)|(?:\]\]\]?|>>)$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'attribute-ref': {
|
|
||||||
pattern: /^\{.+\}$/,
|
|
||||||
inside: {
|
|
||||||
'variable': {
|
|
||||||
pattern: /(^\{)[a-z\d,+_-]+/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'operator': /^[=?!#%@$]|!(?=[:}])/,
|
|
||||||
'punctuation': /^\{|\}$|::?/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'italic': {
|
|
||||||
pattern: /^(['_])[\s\S]+\1$/,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^(?:''?|__?)|(?:''?|__?)$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'bold': {
|
|
||||||
pattern: /^\*[\s\S]+\*$/,
|
|
||||||
inside: {
|
|
||||||
punctuation: /^\*\*?|\*\*?$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'punctuation': /^(?:``?|\+{1,3}|##?|\$\$|[~^]|\(\(\(?)|(?:''?|\+{1,3}|##?|\$\$|[~^`]|\)?\)\))$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'replacement': {
|
|
||||||
pattern: /\((?:C|TM|R)\)/,
|
|
||||||
alias: 'builtin'
|
|
||||||
},
|
|
||||||
'entity': /&#?[\da-z]{1,8};/i,
|
|
||||||
'line-continuation': {
|
|
||||||
pattern: /(^| )\+$/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'punctuation'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
// Allow some nesting. There is no recursion though, so cloning should not be needed.
|
|
||||||
|
|
||||||
attributes.inside['interpreted'].inside.rest = {
|
|
||||||
'macro': Prism.languages.asciidoc['macro'],
|
|
||||||
'inline': Prism.languages.asciidoc['inline'],
|
|
||||||
'replacement': Prism.languages.asciidoc['replacement'],
|
|
||||||
'entity': Prism.languages.asciidoc['entity']
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.asciidoc['passthrough-block'].inside.rest = {
|
|
||||||
'macro': Prism.languages.asciidoc['macro']
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.asciidoc['literal-block'].inside.rest = {
|
|
||||||
'callout': Prism.languages.asciidoc['callout']
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.asciidoc['table'].inside.rest = {
|
|
||||||
'comment-block': Prism.languages.asciidoc['comment-block'],
|
|
||||||
'passthrough-block': Prism.languages.asciidoc['passthrough-block'],
|
|
||||||
'literal-block': Prism.languages.asciidoc['literal-block'],
|
|
||||||
'other-block': Prism.languages.asciidoc['other-block'],
|
|
||||||
'list-punctuation': Prism.languages.asciidoc['list-punctuation'],
|
|
||||||
'indented-block': Prism.languages.asciidoc['indented-block'],
|
|
||||||
'comment': Prism.languages.asciidoc['comment'],
|
|
||||||
'title': Prism.languages.asciidoc['title'],
|
|
||||||
'attribute-entry': Prism.languages.asciidoc['attribute-entry'],
|
|
||||||
'attributes': Prism.languages.asciidoc['attributes'],
|
|
||||||
'hr': Prism.languages.asciidoc['hr'],
|
|
||||||
'page-break': Prism.languages.asciidoc['page-break'],
|
|
||||||
'admonition': Prism.languages.asciidoc['admonition'],
|
|
||||||
'list-label': Prism.languages.asciidoc['list-label'],
|
|
||||||
'callout': Prism.languages.asciidoc['callout'],
|
|
||||||
'macro': Prism.languages.asciidoc['macro'],
|
|
||||||
'inline': Prism.languages.asciidoc['inline'],
|
|
||||||
'replacement': Prism.languages.asciidoc['replacement'],
|
|
||||||
'entity': Prism.languages.asciidoc['entity'],
|
|
||||||
'line-continuation': Prism.languages.asciidoc['line-continuation']
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.asciidoc['other-block'].inside.rest = {
|
|
||||||
'table': Prism.languages.asciidoc['table'],
|
|
||||||
'list-punctuation': Prism.languages.asciidoc['list-punctuation'],
|
|
||||||
'indented-block': Prism.languages.asciidoc['indented-block'],
|
|
||||||
'comment': Prism.languages.asciidoc['comment'],
|
|
||||||
'attribute-entry': Prism.languages.asciidoc['attribute-entry'],
|
|
||||||
'attributes': Prism.languages.asciidoc['attributes'],
|
|
||||||
'hr': Prism.languages.asciidoc['hr'],
|
|
||||||
'page-break': Prism.languages.asciidoc['page-break'],
|
|
||||||
'admonition': Prism.languages.asciidoc['admonition'],
|
|
||||||
'list-label': Prism.languages.asciidoc['list-label'],
|
|
||||||
'macro': Prism.languages.asciidoc['macro'],
|
|
||||||
'inline': Prism.languages.asciidoc['inline'],
|
|
||||||
'replacement': Prism.languages.asciidoc['replacement'],
|
|
||||||
'entity': Prism.languages.asciidoc['entity'],
|
|
||||||
'line-continuation': Prism.languages.asciidoc['line-continuation']
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.asciidoc['title'].inside.rest = {
|
|
||||||
'macro': Prism.languages.asciidoc['macro'],
|
|
||||||
'inline': Prism.languages.asciidoc['inline'],
|
|
||||||
'replacement': Prism.languages.asciidoc['replacement'],
|
|
||||||
'entity': Prism.languages.asciidoc['entity']
|
|
||||||
};
|
|
||||||
|
|
||||||
// Plugin to make entity title show the real entity, idea by Roman Komarov
|
|
||||||
Prism.hooks.add('wrap', function(env) {
|
|
||||||
if (env.type === 'entity') {
|
|
||||||
env.attributes['title'] = env.content.replace(/&/, '&');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}(Prism));
|
|
File diff suppressed because one or more lines are too long
|
@ -1,36 +0,0 @@
|
||||||
Prism.languages.aspnet = Prism.languages.extend('markup', {
|
|
||||||
'page-directive tag': {
|
|
||||||
pattern: /<%\s*@.*%>/i,
|
|
||||||
inside: {
|
|
||||||
'page-directive tag': /<%\s*@\s*(?:Assembly|Control|Implements|Import|Master(?:Type)?|OutputCache|Page|PreviousPageType|Reference|Register)?|%>/i,
|
|
||||||
rest: Prism.languages.markup.tag.inside
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'directive tag': {
|
|
||||||
pattern: /<%.*%>/i,
|
|
||||||
inside: {
|
|
||||||
'directive tag': /<%\s*?[$=%#:]{0,2}|%>/i,
|
|
||||||
rest: Prism.languages.csharp
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// Regexp copied from prism-markup, with a negative look-ahead added
|
|
||||||
Prism.languages.aspnet.tag.pattern = /<(?!%)\/?[^\s>\/]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i;
|
|
||||||
|
|
||||||
// match directives of attribute value foo="<% Bar %>"
|
|
||||||
Prism.languages.insertBefore('inside', 'punctuation', {
|
|
||||||
'directive tag': Prism.languages.aspnet['directive tag']
|
|
||||||
}, Prism.languages.aspnet.tag.inside["attr-value"]);
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('aspnet', 'comment', {
|
|
||||||
'asp comment': /<%--[\w\W]*?--%>/
|
|
||||||
});
|
|
||||||
|
|
||||||
// script runat="server" contains csharp, not javascript
|
|
||||||
Prism.languages.insertBefore('aspnet', Prism.languages.javascript ? 'script' : 'tag', {
|
|
||||||
'asp script': {
|
|
||||||
pattern: /(<script(?=.*runat=['"]?server['"]?)[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: Prism.languages.csharp || {}
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.aspnet=Prism.languages.extend("markup",{"page-directive tag":{pattern:/<%\s*@.*%>/i,inside:{"page-directive tag":/<%\s*@\s*(?:Assembly|Control|Implements|Import|Master(?:Type)?|OutputCache|Page|PreviousPageType|Reference|Register)?|%>/i,rest:Prism.languages.markup.tag.inside}},"directive tag":{pattern:/<%.*%>/i,inside:{"directive tag":/<%\s*?[$=%#:]{0,2}|%>/i,rest:Prism.languages.csharp}}}),Prism.languages.aspnet.tag.pattern=/<(?!%)\/?[^\s>\/]+(?:\s+[^\s>\/=]+(?:=(?:("|')(?:\\\1|\\?(?!\1)[\w\W])*\1|[^\s'">=]+))?)*\s*\/?>/i,Prism.languages.insertBefore("inside","punctuation",{"directive tag":Prism.languages.aspnet["directive tag"]},Prism.languages.aspnet.tag.inside["attr-value"]),Prism.languages.insertBefore("aspnet","comment",{"asp comment":/<%--[\w\W]*?--%>/}),Prism.languages.insertBefore("aspnet",Prism.languages.javascript?"script":"tag",{"asp script":{pattern:/(<script(?=.*runat=['"]?server['"]?)[\w\W]*?>)[\w\W]*?(?=<\/script>)/i,lookbehind:!0,inside:Prism.languages.csharp||{}}});
|
|
|
@ -1,27 +0,0 @@
|
||||||
// NOTES - follows first-first highlight method, block is locked after highlight, different from SyntaxHl
|
|
||||||
Prism.languages.autohotkey= {
|
|
||||||
'comment': {
|
|
||||||
pattern: /(^[^";\n]*("[^"\n]*?"[^"\n]*?)*)(;.*$|^\s*\/\*[\s\S]*\n\*\/)/m,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'string': /"(([^"\n\r]|"")*)"/m,
|
|
||||||
'function': /[^\(\); \t,\n\+\*\-=\?>:\\\/<&%\[\]]+?(?=\()/m, //function - don't use .*\) in the end bcoz string locks it
|
|
||||||
'tag': /^[ \t]*[^\s:]+?(?=:(?:[^:]|$))/m, //labels
|
|
||||||
'variable': /%\w+%/,
|
|
||||||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee]-?\d+)?)\b/,
|
|
||||||
'operator': /\?|\/\/?=?|:=|\|[=|]?|&[=&]?|\+[=+]?|-[=-]?|\*[=*]?|<(?:<=?|>|=)?|>>?=?|[.^!=~]=?|\b(?:AND|NOT|OR)\b/,
|
|
||||||
'punctuation': /[\{}[\]\(\):,]/,
|
|
||||||
'boolean': /\b(true|false)\b/,
|
|
||||||
|
|
||||||
'selector': /\b(AutoTrim|BlockInput|Break|Click|ClipWait|Continue|Control|ControlClick|ControlFocus|ControlGet|ControlGetFocus|ControlGetPos|ControlGetText|ControlMove|ControlSend|ControlSendRaw|ControlSetText|CoordMode|Critical|DetectHiddenText|DetectHiddenWindows|Drive|DriveGet|DriveSpaceFree|EnvAdd|EnvDiv|EnvGet|EnvMult|EnvSet|EnvSub|EnvUpdate|Exit|ExitApp|FileAppend|FileCopy|FileCopyDir|FileCreateDir|FileCreateShortcut|FileDelete|FileEncoding|FileGetAttrib|FileGetShortcut|FileGetSize|FileGetTime|FileGetVersion|FileInstall|FileMove|FileMoveDir|FileRead|FileReadLine|FileRecycle|FileRecycleEmpty|FileRemoveDir|FileSelectFile|FileSelectFolder|FileSetAttrib|FileSetTime|FormatTime|GetKeyState|Gosub|Goto|GroupActivate|GroupAdd|GroupClose|GroupDeactivate|Gui|GuiControl|GuiControlGet|Hotkey|ImageSearch|IniDelete|IniRead|IniWrite|Input|InputBox|KeyWait|ListHotkeys|ListLines|ListVars|Loop|Menu|MouseClick|MouseClickDrag|MouseGetPos|MouseMove|MsgBox|OnExit|OutputDebug|Pause|PixelGetColor|PixelSearch|PostMessage|Process|Progress|Random|RegDelete|RegRead|RegWrite|Reload|Repeat|Return|Run|RunAs|RunWait|Send|SendEvent|SendInput|SendMessage|SendMode|SendPlay|SendRaw|SetBatchLines|SetCapslockState|SetControlDelay|SetDefaultMouseSpeed|SetEnv|SetFormat|SetKeyDelay|SetMouseDelay|SetNumlockState|SetScrollLockState|SetStoreCapslockMode|SetTimer|SetTitleMatchMode|SetWinDelay|SetWorkingDir|Shutdown|Sleep|Sort|SoundBeep|SoundGet|SoundGetWaveVolume|SoundPlay|SoundSet|SoundSetWaveVolume|SplashImage|SplashTextOff|SplashTextOn|SplitPath|StatusBarGetText|StatusBarWait|StringCaseSense|StringGetPos|StringLeft|StringLen|StringLower|StringMid|StringReplace|StringRight|StringSplit|StringTrimLeft|StringTrimRight|StringUpper|Suspend|SysGet|Thread|ToolTip|Transform|TrayTip|URLDownloadToFile|WinActivate|WinActivateBottom|WinClose|WinGet|WinGetActiveStats|WinGetActiveTitle|WinGetClass|WinGetPos|WinGetText|WinGetTitle|WinHide|WinKill|WinMaximize|WinMenuSelectItem|WinMinimize|WinMinimizeAll|WinMinimizeAllUndo|WinMove|WinRestore|WinSet|WinSetTitle|WinShow|WinWait|WinWaitActive|WinWaitClose|WinWaitNotActive)\b/i,
|
|
||||||
|
|
||||||
'constant': /\b(a_ahkpath|a_ahkversion|a_appdata|a_appdatacommon|a_autotrim|a_batchlines|a_caretx|a_carety|a_computername|a_controldelay|a_cursor|a_dd|a_ddd|a_dddd|a_defaultmousespeed|a_desktop|a_desktopcommon|a_detecthiddentext|a_detecthiddenwindows|a_endchar|a_eventinfo|a_exitreason|a_formatfloat|a_formatinteger|a_gui|a_guievent|a_guicontrol|a_guicontrolevent|a_guiheight|a_guiwidth|a_guix|a_guiy|a_hour|a_iconfile|a_iconhidden|a_iconnumber|a_icontip|a_index|a_ipaddress1|a_ipaddress2|a_ipaddress3|a_ipaddress4|a_isadmin|a_iscompiled|a_iscritical|a_ispaused|a_issuspended|a_isunicode|a_keydelay|a_language|a_lasterror|a_linefile|a_linenumber|a_loopfield|a_loopfileattrib|a_loopfiledir|a_loopfileext|a_loopfilefullpath|a_loopfilelongpath|a_loopfilename|a_loopfileshortname|a_loopfileshortpath|a_loopfilesize|a_loopfilesizekb|a_loopfilesizemb|a_loopfiletimeaccessed|a_loopfiletimecreated|a_loopfiletimemodified|a_loopreadline|a_loopregkey|a_loopregname|a_loopregsubkey|a_loopregtimemodified|a_loopregtype|a_mday|a_min|a_mm|a_mmm|a_mmmm|a_mon|a_mousedelay|a_msec|a_mydocuments|a_now|a_nowutc|a_numbatchlines|a_ostype|a_osversion|a_priorhotkey|programfiles|a_programfiles|a_programs|a_programscommon|a_screenheight|a_screenwidth|a_scriptdir|a_scriptfullpath|a_scriptname|a_sec|a_space|a_startmenu|a_startmenucommon|a_startup|a_startupcommon|a_stringcasesense|a_tab|a_temp|a_thisfunc|a_thishotkey|a_thislabel|a_thismenu|a_thismenuitem|a_thismenuitempos|a_tickcount|a_timeidle|a_timeidlephysical|a_timesincepriorhotkey|a_timesincethishotkey|a_titlematchmode|a_titlematchmodespeed|a_username|a_wday|a_windelay|a_windir|a_workingdir|a_yday|a_year|a_yweek|a_yyyy|clipboard|clipboardall|comspec|errorlevel)\b/i,
|
|
||||||
|
|
||||||
'builtin': /\b(abs|acos|asc|asin|atan|ceil|chr|class|cos|dllcall|exp|fileexist|Fileopen|floor|il_add|il_create|il_destroy|instr|substr|isfunc|islabel|IsObject|ln|log|lv_add|lv_delete|lv_deletecol|lv_getcount|lv_getnext|lv_gettext|lv_insert|lv_insertcol|lv_modify|lv_modifycol|lv_setimagelist|mod|onmessage|numget|numput|registercallback|regexmatch|regexreplace|round|sin|tan|sqrt|strlen|sb_seticon|sb_setparts|sb_settext|strsplit|tv_add|tv_delete|tv_getchild|tv_getcount|tv_getnext|tv_get|tv_getparent|tv_getprev|tv_getselection|tv_gettext|tv_modify|varsetcapacity|winactive|winexist|__New|__Call|__Get|__Set)\b/i,
|
|
||||||
|
|
||||||
'symbol': /\b(alt|altdown|altup|appskey|backspace|browser_back|browser_favorites|browser_forward|browser_home|browser_refresh|browser_search|browser_stop|bs|capslock|ctrl|ctrlbreak|ctrldown|ctrlup|del|delete|down|end|enter|esc|escape|f1|f10|f11|f12|f13|f14|f15|f16|f17|f18|f19|f2|f20|f21|f22|f23|f24|f3|f4|f5|f6|f7|f8|f9|home|ins|insert|joy1|joy10|joy11|joy12|joy13|joy14|joy15|joy16|joy17|joy18|joy19|joy2|joy20|joy21|joy22|joy23|joy24|joy25|joy26|joy27|joy28|joy29|joy3|joy30|joy31|joy32|joy4|joy5|joy6|joy7|joy8|joy9|joyaxes|joybuttons|joyinfo|joyname|joypov|joyr|joyu|joyv|joyx|joyy|joyz|lalt|launch_app1|launch_app2|launch_mail|launch_media|lbutton|lcontrol|lctrl|left|lshift|lwin|lwindown|lwinup|mbutton|media_next|media_play_pause|media_prev|media_stop|numlock|numpad0|numpad1|numpad2|numpad3|numpad4|numpad5|numpad6|numpad7|numpad8|numpad9|numpadadd|numpadclear|numpaddel|numpaddiv|numpaddot|numpaddown|numpadend|numpadenter|numpadhome|numpadins|numpadleft|numpadmult|numpadpgdn|numpadpgup|numpadright|numpadsub|numpadup|pgdn|pgup|printscreen|ralt|rbutton|rcontrol|rctrl|right|rshift|rwin|rwindown|rwinup|scrolllock|shift|shiftdown|shiftup|space|tab|up|volume_down|volume_mute|volume_up|wheeldown|wheelleft|wheelright|wheelup|xbutton1|xbutton2)\b/i,
|
|
||||||
|
|
||||||
'important': /#\b(AllowSameLineComments|ClipboardTimeout|CommentFlag|ErrorStdOut|EscapeChar|HotkeyInterval|HotkeyModifierTimeout|Hotstring|IfWinActive|IfWinExist|IfWinNotActive|IfWinNotExist|Include|IncludeAgain|InstallKeybdHook|InstallMouseHook|KeyHistory|LTrim|MaxHotkeysPerInterval|MaxMem|MaxThreads|MaxThreadsBuffer|MaxThreadsPerHotkey|NoEnv|NoTrayIcon|Persistent|SingleInstance|UseHook|WinActivateForce)\b/i,
|
|
||||||
|
|
||||||
'keyword': /\b(Abort|AboveNormal|Add|ahk_class|ahk_group|ahk_id|ahk_pid|All|Alnum|Alpha|AltSubmit|AltTab|AltTabAndMenu|AltTabMenu|AltTabMenuDismiss|AlwaysOnTop|AutoSize|Background|BackgroundTrans|BelowNormal|between|BitAnd|BitNot|BitOr|BitShiftLeft|BitShiftRight|BitXOr|Bold|Border|Button|ByRef|Checkbox|Checked|CheckedGray|Choose|ChooseString|Close|Color|ComboBox|Contains|ControlList|Count|Date|DateTime|Days|DDL|Default|DeleteAll|Delimiter|Deref|Destroy|Digit|Disable|Disabled|DropDownList|Edit|Eject|Else|Enable|Enabled|Error|Exist|Expand|ExStyle|FileSystem|First|Flash|Float|FloatFast|Focus|Font|for|global|Grid|Group|GroupBox|GuiClose|GuiContextMenu|GuiDropFiles|GuiEscape|GuiSize|Hdr|Hidden|Hide|High|HKCC|HKCR|HKCU|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_LOCAL_MACHINE|HKEY_USERS|HKLM|HKU|Hours|HScroll|Icon|IconSmall|ID|IDLast|If|IfEqual|IfExist|IfGreater|IfGreaterOrEqual|IfInString|IfLess|IfLessOrEqual|IfMsgBox|IfNotEqual|IfNotExist|IfNotInString|IfWinActive|IfWinExist|IfWinNotActive|IfWinNotExist|Ignore|ImageList|in|Integer|IntegerFast|Interrupt|is|italic|Join|Label|LastFound|LastFoundExist|Limit|Lines|List|ListBox|ListView|local|Lock|Logoff|Low|Lower|Lowercase|MainWindow|Margin|Maximize|MaximizeBox|MaxSize|Minimize|MinimizeBox|MinMax|MinSize|Minutes|MonthCal|Mouse|Move|Multi|NA|No|NoActivate|NoDefault|NoHide|NoIcon|NoMainWindow|norm|Normal|NoSort|NoSortHdr|NoStandard|Not|NoTab|NoTimers|Number|Off|Ok|On|OwnDialogs|Owner|Parse|Password|Picture|Pixel|Pos|Pow|Priority|ProcessName|Radio|Range|Read|ReadOnly|Realtime|Redraw|REG_BINARY|REG_DWORD|REG_EXPAND_SZ|REG_MULTI_SZ|REG_SZ|Region|Relative|Rename|Report|Resize|Restore|Retry|RGB|Screen|Seconds|Section|Serial|SetLabel|ShiftAltTab|Show|Single|Slider|SortDesc|Standard|static|Status|StatusBar|StatusCD|strike|Style|Submit|SysMenu|Tab2|TabStop|Text|Theme|Tile|ToggleCheck|ToggleEnable|ToolWindow|Top|Topmost|TransColor|Transparent|Tray|TreeView|TryAgain|Type|UnCheck|underline|Unicode|Unlock|UpDown|Upper|Uppercase|UseErrorLevel|Vis|VisFirst|Visible|VScroll|Wait|WaitClose|WantCtrlA|WantF2|WantReturn|While|Wrap|Xdigit|xm|xp|xs|Yes|ym|yp|ys)\b/i
|
|
||||||
};
|
|
File diff suppressed because one or more lines are too long
|
@ -1,33 +0,0 @@
|
||||||
Prism.languages.autoit = {
|
|
||||||
"comment": [
|
|
||||||
/;.*/,
|
|
||||||
{
|
|
||||||
// The multi-line comments delimiters can actually be commented out with ";"
|
|
||||||
pattern: /(^\s*)#(?:comments-start|cs)[\s\S]*?^\s*#(?:comments-end|ce)/m,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"url": {
|
|
||||||
pattern: /(^\s*#include\s+)(?:<[^\r\n>]+>|"[^\r\n"]+")/m,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
"string": {
|
|
||||||
pattern: /(["'])(?:\1\1|(?!\1)[^\r\n])*\1/,
|
|
||||||
inside: {
|
|
||||||
"variable": /([%$@])\w+\1/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"directive": {
|
|
||||||
pattern: /(^\s*)#\w+/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
"function": /\b\w+(?=\()/,
|
|
||||||
// Variables and macros
|
|
||||||
"variable": /[$@]\w+/,
|
|
||||||
"keyword": /\b(?:Case|Const|Continue(?:Case|Loop)|Default|Dim|Do|Else(?:If)?|End(?:Func|If|Select|Switch|With)|Enum|Exit(?:Loop)?|For|Func|Global|If|In|Local|Next|Null|ReDim|Select|Static|Step|Switch|Then|To|Until|Volatile|WEnd|While|With)\b/i,
|
|
||||||
"number": /\b(?:0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b/i,
|
|
||||||
"boolean": /\b(?:True|False)\b/i,
|
|
||||||
"operator": /<[=>]?|[-+*\/=&>]=?|[?^]|\b(?:And|Or|Not)\b/i,
|
|
||||||
"punctuation": /[\[\]().,:]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.autoit={comment:[/;.*/,{pattern:/(^\s*)#(?:comments-start|cs)[\s\S]*?^\s*#(?:comments-end|ce)/m,lookbehind:!0}],url:{pattern:/(^\s*#include\s+)(?:<[^\r\n>]+>|"[^\r\n"]+")/m,lookbehind:!0},string:{pattern:/(["'])(?:\1\1|(?!\1)[^\r\n])*\1/,inside:{variable:/([%$@])\w+\1/}},directive:{pattern:/(^\s*)#\w+/m,lookbehind:!0,alias:"keyword"},"function":/\b\w+(?=\()/,variable:/[$@]\w+/,keyword:/\b(?:Case|Const|Continue(?:Case|Loop)|Default|Dim|Do|Else(?:If)?|End(?:Func|If|Select|Switch|With)|Enum|Exit(?:Loop)?|For|Func|Global|If|In|Local|Next|Null|ReDim|Select|Static|Step|Switch|Then|To|Until|Volatile|WEnd|While|With)\b/i,number:/\b(?:0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b/i,"boolean":/\b(?:True|False)\b/i,operator:/<[=>]?|[-+*\/=&>]=?|[?^]|\b(?:And|Or|Not)\b/i,punctuation:/[\[\]().,:]/};
|
|
|
@ -1,78 +0,0 @@
|
||||||
(function(Prism) {
|
|
||||||
var insideString = {
|
|
||||||
variable: [
|
|
||||||
// Arithmetic Environment
|
|
||||||
{
|
|
||||||
pattern: /\$?\(\([\w\W]+?\)\)/,
|
|
||||||
inside: {
|
|
||||||
// If there is a $ sign at the beginning highlight $(( and )) as variable
|
|
||||||
variable: [{
|
|
||||||
pattern: /(^\$\(\([\w\W]+)\)\)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
/^\$\(\(/,
|
|
||||||
],
|
|
||||||
number: /\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+(?:[Ee]-?\d+)?)\b/,
|
|
||||||
// Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
|
|
||||||
operator: /--?|-=|\+\+?|\+=|!=?|~|\*\*?|\*=|\/=?|%=?|<<=?|>>=?|<=?|>=?|==?|&&?|&=|\^=?|\|\|?|\|=|\?|:/,
|
|
||||||
// If there is no $ sign at the beginning highlight (( and )) as punctuation
|
|
||||||
punctuation: /\(\(?|\)\)?|,|;/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Command Substitution
|
|
||||||
{
|
|
||||||
pattern: /\$\([^)]+\)|`[^`]+`/,
|
|
||||||
inside: {
|
|
||||||
variable: /^\$\(|^`|\)$|`$/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/\$(?:[a-z0-9_#\?\*!@]+|\{[^}]+\})/i
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.bash = {
|
|
||||||
'shebang': {
|
|
||||||
pattern: /^#!\s*\/bin\/bash|^#!\s*\/bin\/sh/,
|
|
||||||
alias: 'important'
|
|
||||||
},
|
|
||||||
'comment': {
|
|
||||||
pattern: /(^|[^"{\\])#.*/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'string': [
|
|
||||||
//Support for Here-Documents https://en.wikipedia.org/wiki/Here_document
|
|
||||||
{
|
|
||||||
pattern: /((?:^|[^<])<<\s*)(?:"|')?(\w+?)(?:"|')?\s*\r?\n(?:[\s\S])*?\r?\n\2/g,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: insideString
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /("|')(?:\\?[\s\S])*?\1/g,
|
|
||||||
inside: insideString
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'variable': insideString.variable,
|
|
||||||
// Originally based on http://ss64.com/bash/
|
|
||||||
'function': {
|
|
||||||
pattern: /(^|\s|;|\||&)(?:alias|apropos|apt-get|aptitude|aspell|awk|basename|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|jobs|join|kill|killall|less|link|ln|locate|logname|logout|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|make|man|mkdir|mkfifo|mkisofs|mknod|more|most|mount|mtools|mtr|mv|mmv|nano|netstat|nice|nl|nohup|notify-send|nslookup|open|op|passwd|paste|pathchk|ping|pkill|popd|pr|printcap|printenv|printf|ps|pushd|pv|pwd|quota|quotacheck|quotactl|ram|rar|rcp|read|readarray|readonly|reboot|rename|renice|remsync|rev|rm|rmdir|rsync|screen|scp|sdiff|sed|seq|service|sftp|shift|shopt|shutdown|sleep|slocate|sort|source|split|ssh|stat|strace|su|sudo|sum|suspend|sync|tail|tar|tee|test|time|timeout|times|touch|top|traceroute|trap|tr|tsort|tty|type|ulimit|umask|umount|unalias|uname|unexpand|uniq|units|unrar|unshar|uptime|useradd|userdel|usermod|users|uuencode|uudecode|v|vdir|vi|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yes|zip)(?=$|\s|;|\||&)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'keyword': {
|
|
||||||
pattern: /(^|\s|;|\||&)(?:let|:|\.|if|then|else|elif|fi|for|break|continue|while|in|case|function|select|do|done|until|echo|exit|return|set|declare)(?=$|\s|;|\||&)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'boolean': {
|
|
||||||
pattern: /(^|\s|;|\||&)(?:true|false)(?=$|\s|;|\||&)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'operator': /&&?|\|\|?|==?|!=?|<<<?|>>|<=?|>=?|=~/,
|
|
||||||
'punctuation': /\$?\(\(?|\)\)?|\.\.|[{}[\];]/
|
|
||||||
};
|
|
||||||
|
|
||||||
var inside = insideString.variable[1].inside;
|
|
||||||
inside['function'] = Prism.languages.bash['function'];
|
|
||||||
inside.keyword = Prism.languages.bash.keyword;
|
|
||||||
inside.boolean = Prism.languages.bash.boolean;
|
|
||||||
inside.operator = Prism.languages.bash.operator;
|
|
||||||
inside.punctuation = Prism.languages.bash.punctuation;
|
|
||||||
})(Prism);
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){var t={variable:[{pattern:/\$?\(\([\w\W]+?\)\)/,inside:{variable:[{pattern:/(^\$\(\([\w\W]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b-?(?:0x[\dA-Fa-f]+|\d*\.?\d+(?:[Ee]-?\d+)?)\b/,operator:/--?|-=|\+\+?|\+=|!=?|~|\*\*?|\*=|\/=?|%=?|<<=?|>>=?|<=?|>=?|==?|&&?|&=|\^=?|\|\|?|\|=|\?|:/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\([^)]+\)|`[^`]+`/,inside:{variable:/^\$\(|^`|\)$|`$/}},/\$(?:[a-z0-9_#\?\*!@]+|\{[^}]+\})/i]};e.languages.bash={shebang:{pattern:/^#!\s*\/bin\/bash|^#!\s*\/bin\/sh/,alias:"important"},comment:{pattern:/(^|[^"{\\])#.*/,lookbehind:!0},string:[{pattern:/((?:^|[^<])<<\s*)(?:"|')?(\w+?)(?:"|')?\s*\r?\n(?:[\s\S])*?\r?\n\2/g,lookbehind:!0,inside:t},{pattern:/("|')(?:\\?[\s\S])*?\1/g,inside:t}],variable:t.variable,"function":{pattern:/(^|\s|;|\||&)(?:alias|apropos|apt-get|aptitude|aspell|awk|basename|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|getopts|git|grep|groupadd|groupdel|groupmod|groups|gzip|hash|head|help|hg|history|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|jobs|join|kill|killall|less|link|ln|locate|logname|logout|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|make|man|mkdir|mkfifo|mkisofs|mknod|more|most|mount|mtools|mtr|mv|mmv|nano|netstat|nice|nl|nohup|notify-send|nslookup|open|op|passwd|paste|pathchk|ping|pkill|popd|pr|printcap|printenv|printf|ps|pushd|pv|pwd|quota|quotacheck|quotactl|ram|rar|rcp|read|readarray|readonly|reboot|rename|renice|remsync|rev|rm|rmdir|rsync|screen|scp|sdiff|sed|seq|service|sftp|shift|shopt|shutdown|sleep|slocate|sort|source|split|ssh|stat|strace|su|sudo|sum|suspend|sync|tail|tar|tee|test|time|timeout|times|touch|top|traceroute|trap|tr|tsort|tty|type|ulimit|umask|umount|unalias|uname|unexpand|uniq|units|unrar|unshar|uptime|useradd|userdel|usermod|users|uuencode|uudecode|v|vdir|vi|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yes|zip)(?=$|\s|;|\||&)/,lookbehind:!0},keyword:{pattern:/(^|\s|;|\||&)(?:let|:|\.|if|then|else|elif|fi|for|break|continue|while|in|case|function|select|do|done|until|echo|exit|return|set|declare)(?=$|\s|;|\||&)/,lookbehind:!0},"boolean":{pattern:/(^|\s|;|\||&)(?:true|false)(?=$|\s|;|\||&)/,lookbehind:!0},operator:/&&?|\|\|?|==?|!=?|<<<?|>>|<=?|>=?|=~/,punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];]/};var a=t.variable[1].inside;a["function"]=e.languages.bash["function"],a.keyword=e.languages.bash.keyword,a.boolean=e.languages.bash.boolean,a.operator=e.languages.bash.operator,a.punctuation=e.languages.bash.punctuation}(Prism);
|
|
|
@ -1,14 +0,0 @@
|
||||||
Prism.languages.basic = {
|
|
||||||
'string': /"(?:""|[!#$%&'()*,\/:;<=>?^_ +\-.A-Z\d])*"/i,
|
|
||||||
'comment': {
|
|
||||||
pattern: /(?:!|REM\b).+/i,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^REM/i
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'number': /(?:\b|\B[.-])(?:\d+\.?\d*)(?:E[+-]?\d+)?/i,
|
|
||||||
'keyword': /\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SHARED|SINGLE|SELECT CASE|SHELL|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,
|
|
||||||
'function': /\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,
|
|
||||||
'operator': /<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,
|
|
||||||
'punctuation': /[,;:()]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.basic={string:/"(?:""|[!#$%&'()*,\/:;<=>?^_ +\-.A-Z\d])*"/i,comment:{pattern:/(?:!|REM\b).+/i,inside:{keyword:/^REM/i}},number:/(?:\b|\B[.-])(?:\d+\.?\d*)(?:E[+-]?\d+)?/i,keyword:/\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SHARED|SINGLE|SELECT CASE|SHELL|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,"function":/\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,operator:/<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,punctuation:/[,;:()]/};
|
|
|
@ -1,99 +0,0 @@
|
||||||
(function (Prism) {
|
|
||||||
var variable = /%%?[~:\w]+%?|!\S+!/;
|
|
||||||
var parameter = {
|
|
||||||
pattern: /\/[a-z?]+(?=[ :]|$):?|-[a-z]\b|--[a-z-]+\b/im,
|
|
||||||
alias: 'attr-name',
|
|
||||||
inside: {
|
|
||||||
'punctuation': /:/
|
|
||||||
}
|
|
||||||
};
|
|
||||||
var string = /"[^"]*"/;
|
|
||||||
var number = /(?:\b|-)\d+\b/;
|
|
||||||
|
|
||||||
Prism.languages.batch = {
|
|
||||||
'comment': [
|
|
||||||
/^::.*/m,
|
|
||||||
{
|
|
||||||
pattern: /((?:^|[&(])[ \t]*)rem\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'label': {
|
|
||||||
pattern: /^:.*/m,
|
|
||||||
alias: 'property'
|
|
||||||
},
|
|
||||||
'command': [
|
|
||||||
{
|
|
||||||
// FOR command
|
|
||||||
pattern: /((?:^|[&(])[ \t]*)for(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* \S+ in \([^)]+\) do/im,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^for\b|\b(?:in|do)\b/i,
|
|
||||||
'string': string,
|
|
||||||
'parameter': parameter,
|
|
||||||
'variable': variable,
|
|
||||||
'number': number,
|
|
||||||
'punctuation': /[()',]/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// IF command
|
|
||||||
pattern: /((?:^|[&(])[ \t]*)if(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* (?:not )?(?:cmdextversion \d+|defined \w+|errorlevel \d+|exist \S+|(?:"[^"]*"|\S+)?(?:==| (?:equ|neq|lss|leq|gtr|geq) )(?:"[^"]*"|\S+))/im,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^if\b|\b(?:not|cmdextversion|defined|errorlevel|exist)\b/i,
|
|
||||||
'string': string,
|
|
||||||
'parameter': parameter,
|
|
||||||
'variable': variable,
|
|
||||||
'number': number,
|
|
||||||
'operator': /\^|==|\b(?:equ|neq|lss|leq|gtr|geq)\b/i
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// ELSE command
|
|
||||||
pattern: /((?:^|[&()])[ \t]*)else\b/im,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^else\b/i
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// SET command
|
|
||||||
pattern: /((?:^|[&(])[ \t]*)set(?: ?\/[a-z](?:[ :](?:"[^"]*"|\S+))?)* (?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^set\b/i,
|
|
||||||
'string': string,
|
|
||||||
'parameter': parameter,
|
|
||||||
'variable': [
|
|
||||||
variable,
|
|
||||||
/\w+(?=(?:[*\/%+\-&^|]|<<|>>)?=)/
|
|
||||||
],
|
|
||||||
'number': number,
|
|
||||||
'operator': /[*\/%+\-&^|]=?|<<=?|>>=?|[!~_=]/,
|
|
||||||
'punctuation': /[()',]/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// Other commands
|
|
||||||
pattern: /((?:^|[&(])[ \t]*@?)\w+\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'keyword': /^\w+\b/i,
|
|
||||||
'string': string,
|
|
||||||
'parameter': parameter,
|
|
||||||
'label': {
|
|
||||||
pattern: /(^\s*):\S+/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'property'
|
|
||||||
},
|
|
||||||
'variable': variable,
|
|
||||||
'number': number,
|
|
||||||
'operator': /\^/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'operator': /[&@]/,
|
|
||||||
'punctuation': /[()']/
|
|
||||||
};
|
|
||||||
}(Prism));
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){var r=/%%?[~:\w]+%?|!\S+!/,t={pattern:/\/[a-z?]+(?=[ :]|$):?|-[a-z]\b|--[a-z-]+\b/im,alias:"attr-name",inside:{punctuation:/:/}},n=/"[^"]*"/,i=/(?:\b|-)\d+\b/;e.languages.batch={comment:[/^::.*/m,{pattern:/((?:^|[&(])[ \t]*)rem\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,lookbehind:!0}],label:{pattern:/^:.*/m,alias:"property"},command:[{pattern:/((?:^|[&(])[ \t]*)for(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* \S+ in \([^)]+\) do/im,lookbehind:!0,inside:{keyword:/^for\b|\b(?:in|do)\b/i,string:n,parameter:t,variable:r,number:i,punctuation:/[()',]/}},{pattern:/((?:^|[&(])[ \t]*)if(?: ?\/[a-z?](?:[ :](?:"[^"]*"|\S+))?)* (?:not )?(?:cmdextversion \d+|defined \w+|errorlevel \d+|exist \S+|(?:"[^"]*"|\S+)?(?:==| (?:equ|neq|lss|leq|gtr|geq) )(?:"[^"]*"|\S+))/im,lookbehind:!0,inside:{keyword:/^if\b|\b(?:not|cmdextversion|defined|errorlevel|exist)\b/i,string:n,parameter:t,variable:r,number:i,operator:/\^|==|\b(?:equ|neq|lss|leq|gtr|geq)\b/i}},{pattern:/((?:^|[&()])[ \t]*)else\b/im,lookbehind:!0,inside:{keyword:/^else\b/i}},{pattern:/((?:^|[&(])[ \t]*)set(?: ?\/[a-z](?:[ :](?:"[^"]*"|\S+))?)* (?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,lookbehind:!0,inside:{keyword:/^set\b/i,string:n,parameter:t,variable:[r,/\w+(?=(?:[*\/%+\-&^|]|<<|>>)?=)/],number:i,operator:/[*\/%+\-&^|]=?|<<=?|>>=?|[!~_=]/,punctuation:/[()',]/}},{pattern:/((?:^|[&(])[ \t]*@?)\w+\b(?:[^^&)\r\n]|\^(?:\r\n|[\s\S]))*/im,lookbehind:!0,inside:{keyword:/^\w+\b/i,string:n,parameter:t,label:{pattern:/(^\s*):\S+/m,lookbehind:!0,alias:"property"},variable:r,number:i,operator:/\^/}}],operator:/[&@]/,punctuation:/[()']/}}(Prism);
|
|
|
@ -1,39 +0,0 @@
|
||||||
Prism.languages.bison = Prism.languages.extend('c', {});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('bison', 'comment', {
|
|
||||||
'bison': {
|
|
||||||
// This should match all the beginning of the file
|
|
||||||
// including the prologue(s), the bison declarations and
|
|
||||||
// the grammar rules.
|
|
||||||
pattern: /^[\s\S]*?%%[\s\S]*?%%/,
|
|
||||||
inside: {
|
|
||||||
'c': {
|
|
||||||
// Allow for one level of nested braces
|
|
||||||
pattern: /%\{[\s\S]*?%\}|\{(?:\{[^}]*\}|[^{}])*\}/,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern: /^%?\{|%?\}$/,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
'bison-variable': {
|
|
||||||
pattern: /[$@](?:<[^\s>]+>)?[\w$]+/,
|
|
||||||
alias: 'variable',
|
|
||||||
inside: {
|
|
||||||
'punctuation': /<|>/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
rest: Prism.languages.c
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'comment': Prism.languages.c.comment,
|
|
||||||
'string': Prism.languages.c.string,
|
|
||||||
'property': /\S+(?=:)/,
|
|
||||||
'keyword': /%\w+/,
|
|
||||||
'number': {
|
|
||||||
pattern: /(^|[^@])\b(?:0x[\da-f]+|\d+)/i,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'punctuation': /%[%?]|[|:;\[\]<>]/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.bison=Prism.languages.extend("c",{}),Prism.languages.insertBefore("bison","comment",{bison:{pattern:/^[\s\S]*?%%[\s\S]*?%%/,inside:{c:{pattern:/%\{[\s\S]*?%\}|\{(?:\{[^}]*\}|[^{}])*\}/,inside:{delimiter:{pattern:/^%?\{|%?\}$/,alias:"punctuation"},"bison-variable":{pattern:/[$@](?:<[^\s>]+>)?[\w$]+/,alias:"variable",inside:{punctuation:/<|>/}},rest:Prism.languages.c}},comment:Prism.languages.c.comment,string:Prism.languages.c.string,property:/\S+(?=:)/,keyword:/%\w+/,number:{pattern:/(^|[^@])\b(?:0x[\da-f]+|\d+)/i,lookbehind:!0},punctuation:/%[%?]|[|:;\[\]<>]/}}});
|
|
|
@ -1,20 +0,0 @@
|
||||||
Prism.languages.brainfuck = {
|
|
||||||
'pointer': {
|
|
||||||
pattern: /<|>/,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
'increment': {
|
|
||||||
pattern: /\+/,
|
|
||||||
alias: 'inserted'
|
|
||||||
},
|
|
||||||
'decrement': {
|
|
||||||
pattern: /-/,
|
|
||||||
alias: 'deleted'
|
|
||||||
},
|
|
||||||
'branching': {
|
|
||||||
pattern: /\[|\]/,
|
|
||||||
alias: 'important'
|
|
||||||
},
|
|
||||||
'operator': /[.,]/,
|
|
||||||
'comment': /\S+/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.brainfuck={pointer:{pattern:/<|>/,alias:"keyword"},increment:{pattern:/\+/,alias:"inserted"},decrement:{pattern:/-/,alias:"deleted"},branching:{pattern:/\[|\]/,alias:"important"},operator:/[.,]/,comment:/\S+/};
|
|
|
@ -1,33 +0,0 @@
|
||||||
Prism.languages.c = Prism.languages.extend('clike', {
|
|
||||||
'keyword': /\b(asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while)\b/,
|
|
||||||
'operator': /\-[>-]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|?\||[~^%?*\/]/,
|
|
||||||
'number': /\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)[ful]*\b/i
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('c', 'string', {
|
|
||||||
'macro': {
|
|
||||||
// allow for multiline macro definitions
|
|
||||||
// spaces after the # character compile fine with gcc
|
|
||||||
pattern: /(^\s*)#\s*[a-z]+([^\r\n\\]|\\.|\\(?:\r\n?|\n))*/im,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'property',
|
|
||||||
inside: {
|
|
||||||
// highlight the path of the include statement as a string
|
|
||||||
'string': {
|
|
||||||
pattern: /(#\s*include\s*)(<.+?>|("|')(\\?.)+?\3)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
// highlight macro directives as keywords
|
|
||||||
'directive': {
|
|
||||||
pattern: /(#\s*)\b(define|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// highlight predefined macros as constants
|
|
||||||
'constant': /\b(__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|stdin|stdout|stderr)\b/
|
|
||||||
});
|
|
||||||
|
|
||||||
delete Prism.languages.c['class-name'];
|
|
||||||
delete Prism.languages.c['boolean'];
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.c=Prism.languages.extend("clike",{keyword:/\b(asm|typeof|inline|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|int|long|register|return|short|signed|sizeof|static|struct|switch|typedef|union|unsigned|void|volatile|while)\b/,operator:/\-[>-]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|?\||[~^%?*\/]/,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)[ful]*\b/i}),Prism.languages.insertBefore("c","string",{macro:{pattern:/(^\s*)#\s*[a-z]+([^\r\n\\]|\\.|\\(?:\r\n?|\n))*/im,lookbehind:!0,alias:"property",inside:{string:{pattern:/(#\s*include\s*)(<.+?>|("|')(\\?.)+?\3)/,lookbehind:!0},directive:{pattern:/(#\s*)\b(define|elif|else|endif|error|ifdef|ifndef|if|import|include|line|pragma|undef|using)\b/,lookbehind:!0,alias:"keyword"}}},constant:/\b(__FILE__|__LINE__|__DATE__|__TIME__|__TIMESTAMP__|__func__|EOF|NULL|stdin|stdout|stderr)\b/}),delete Prism.languages.c["class-name"],delete Prism.languages.c["boolean"];
|
|
|
@ -1,26 +0,0 @@
|
||||||
Prism.languages.clike = {
|
|
||||||
'comment': [
|
|
||||||
{
|
|
||||||
pattern: /(^|[^\\])\/\*[\w\W]*?\*\//,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /(^|[^\\:])\/\/.*/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'string': /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
|
||||||
'class-name': {
|
|
||||||
pattern: /((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
punctuation: /(\.|\\)/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'keyword': /\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,
|
|
||||||
'boolean': /\b(true|false)\b/,
|
|
||||||
'function': /[a-z0-9_]+(?=\()/i,
|
|
||||||
'number': /\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,
|
|
||||||
'operator': /--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,
|
|
||||||
'punctuation': /[{}[\];(),.:]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\w\W]*?\*\//,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],string:/(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,"class-name":{pattern:/((?:\b(?:class|interface|extends|implements|trait|instanceof|new)\s+)|(?:catch\s+\())[a-z0-9_\.\\]+/i,lookbehind:!0,inside:{punctuation:/(\.|\\)/}},keyword:/\b(if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,"boolean":/\b(true|false)\b/,"function":/[a-z0-9_]+(?=\()/i,number:/\b-?(?:0x[\da-f]+|\d*\.?\d+(?:e[+-]?\d+)?)\b/i,operator:/--?|\+\+?|!=?=?|<=?|>=?|==?=?|&&?|\|\|?|\?|\*|\/|~|\^|%/,punctuation:/[{}[\];(),.:]/};
|
|
|
@ -1,83 +0,0 @@
|
||||||
(function(Prism) {
|
|
||||||
|
|
||||||
// Ignore comments starting with { to privilege string interpolation highlighting
|
|
||||||
var comment = /#(?!\{).+/,
|
|
||||||
interpolation = {
|
|
||||||
pattern: /#\{[^}]+\}/,
|
|
||||||
alias: 'variable'
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.coffeescript = Prism.languages.extend('javascript', {
|
|
||||||
'comment': comment,
|
|
||||||
'string': [
|
|
||||||
|
|
||||||
// Strings are multiline
|
|
||||||
/'(?:\\?[^\\])*?'/,
|
|
||||||
|
|
||||||
{
|
|
||||||
// Strings are multiline
|
|
||||||
pattern: /"(?:\\?[^\\])*?"/,
|
|
||||||
inside: {
|
|
||||||
'interpolation': interpolation
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'keyword': /\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,
|
|
||||||
'class-member': {
|
|
||||||
pattern: /@(?!\d)\w+/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('coffeescript', 'comment', {
|
|
||||||
'multiline-comment': {
|
|
||||||
pattern: /###[\s\S]+?###/,
|
|
||||||
alias: 'comment'
|
|
||||||
},
|
|
||||||
|
|
||||||
// Block regexp can contain comments and interpolation
|
|
||||||
'block-regex': {
|
|
||||||
pattern: /\/{3}[\s\S]*?\/{3}/,
|
|
||||||
alias: 'regex',
|
|
||||||
inside: {
|
|
||||||
'comment': comment,
|
|
||||||
'interpolation': interpolation
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('coffeescript', 'string', {
|
|
||||||
'inline-javascript': {
|
|
||||||
pattern: /`(?:\\?[\s\S])*?`/,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern: /^`|`$/,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
rest: Prism.languages.javascript
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Block strings
|
|
||||||
'multiline-string': [
|
|
||||||
{
|
|
||||||
pattern: /'''[\s\S]*?'''/,
|
|
||||||
alias: 'string'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /"""[\s\S]*?"""/,
|
|
||||||
alias: 'string',
|
|
||||||
inside: {
|
|
||||||
interpolation: interpolation
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('coffeescript', 'keyword', {
|
|
||||||
// Object property
|
|
||||||
'property': /(?!\d)\w+(?=\s*:(?!:))/
|
|
||||||
});
|
|
||||||
|
|
||||||
}(Prism));
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){var n=/#(?!\{).+/,t={pattern:/#\{[^}]+\}/,alias:"variable"};e.languages.coffeescript=e.languages.extend("javascript",{comment:n,string:[/'(?:\\?[^\\])*?'/,{pattern:/"(?:\\?[^\\])*?"/,inside:{interpolation:t}}],keyword:/\b(and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,"class-member":{pattern:/@(?!\d)\w+/,alias:"variable"}}),e.languages.insertBefore("coffeescript","comment",{"multiline-comment":{pattern:/###[\s\S]+?###/,alias:"comment"},"block-regex":{pattern:/\/{3}[\s\S]*?\/{3}/,alias:"regex",inside:{comment:n,interpolation:t}}}),e.languages.insertBefore("coffeescript","string",{"inline-javascript":{pattern:/`(?:\\?[\s\S])*?`/,inside:{delimiter:{pattern:/^`|`$/,alias:"punctuation"},rest:e.languages.javascript}},"multiline-string":[{pattern:/'''[\s\S]*?'''/,alias:"string"},{pattern:/"""[\s\S]*?"""/,alias:"string",inside:{interpolation:t}}]}),e.languages.insertBefore("coffeescript","keyword",{property:/(?!\d)\w+(?=\s*:(?!:))/})}(Prism);
|
|
|
@ -1,434 +0,0 @@
|
||||||
var _self = (typeof window !== 'undefined')
|
|
||||||
? window // if in browser
|
|
||||||
: (
|
|
||||||
(typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope)
|
|
||||||
? self // if in worker
|
|
||||||
: {} // if in node js
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prism: Lightweight, robust, elegant syntax highlighting
|
|
||||||
* MIT license http://www.opensource.org/licenses/mit-license.php/
|
|
||||||
* @author Lea Verou http://lea.verou.me
|
|
||||||
*/
|
|
||||||
|
|
||||||
var Prism = (function(){
|
|
||||||
|
|
||||||
// Private helper vars
|
|
||||||
var lang = /\blang(?:uage)?-(?!\*)(\w+)\b/i;
|
|
||||||
|
|
||||||
var _ = _self.Prism = {
|
|
||||||
util: {
|
|
||||||
encode: function (tokens) {
|
|
||||||
if (tokens instanceof Token) {
|
|
||||||
return new Token(tokens.type, _.util.encode(tokens.content), tokens.alias);
|
|
||||||
} else if (_.util.type(tokens) === 'Array') {
|
|
||||||
return tokens.map(_.util.encode);
|
|
||||||
} else {
|
|
||||||
return tokens.replace(/&/g, '&').replace(/</g, '<').replace(/\u00a0/g, ' ');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
type: function (o) {
|
|
||||||
return Object.prototype.toString.call(o).match(/\[object (\w+)\]/)[1];
|
|
||||||
},
|
|
||||||
|
|
||||||
// Deep clone a language definition (e.g. to extend it)
|
|
||||||
clone: function (o) {
|
|
||||||
var type = _.util.type(o);
|
|
||||||
|
|
||||||
switch (type) {
|
|
||||||
case 'Object':
|
|
||||||
var clone = {};
|
|
||||||
|
|
||||||
for (var key in o) {
|
|
||||||
if (o.hasOwnProperty(key)) {
|
|
||||||
clone[key] = _.util.clone(o[key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return clone;
|
|
||||||
|
|
||||||
case 'Array':
|
|
||||||
// Check for existence for IE8
|
|
||||||
return o.map && o.map(function(v) { return _.util.clone(v); });
|
|
||||||
}
|
|
||||||
|
|
||||||
return o;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
languages: {
|
|
||||||
extend: function (id, redef) {
|
|
||||||
var lang = _.util.clone(_.languages[id]);
|
|
||||||
|
|
||||||
for (var key in redef) {
|
|
||||||
lang[key] = redef[key];
|
|
||||||
}
|
|
||||||
|
|
||||||
return lang;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Insert a token before another token in a language literal
|
|
||||||
* As this needs to recreate the object (we cannot actually insert before keys in object literals),
|
|
||||||
* we cannot just provide an object, we need anobject and a key.
|
|
||||||
* @param inside The key (or language id) of the parent
|
|
||||||
* @param before The key to insert before. If not provided, the function appends instead.
|
|
||||||
* @param insert Object with the key/value pairs to insert
|
|
||||||
* @param root The object that contains `inside`. If equal to Prism.languages, it can be omitted.
|
|
||||||
*/
|
|
||||||
insertBefore: function (inside, before, insert, root) {
|
|
||||||
root = root || _.languages;
|
|
||||||
var grammar = root[inside];
|
|
||||||
|
|
||||||
if (arguments.length == 2) {
|
|
||||||
insert = arguments[1];
|
|
||||||
|
|
||||||
for (var newToken in insert) {
|
|
||||||
if (insert.hasOwnProperty(newToken)) {
|
|
||||||
grammar[newToken] = insert[newToken];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return grammar;
|
|
||||||
}
|
|
||||||
|
|
||||||
var ret = {};
|
|
||||||
|
|
||||||
for (var token in grammar) {
|
|
||||||
|
|
||||||
if (grammar.hasOwnProperty(token)) {
|
|
||||||
|
|
||||||
if (token == before) {
|
|
||||||
|
|
||||||
for (var newToken in insert) {
|
|
||||||
|
|
||||||
if (insert.hasOwnProperty(newToken)) {
|
|
||||||
ret[newToken] = insert[newToken];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ret[token] = grammar[token];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update references in other language definitions
|
|
||||||
_.languages.DFS(_.languages, function(key, value) {
|
|
||||||
if (value === root[inside] && key != inside) {
|
|
||||||
this[key] = ret;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return root[inside] = ret;
|
|
||||||
},
|
|
||||||
|
|
||||||
// Traverse a language definition with Depth First Search
|
|
||||||
DFS: function(o, callback, type) {
|
|
||||||
for (var i in o) {
|
|
||||||
if (o.hasOwnProperty(i)) {
|
|
||||||
callback.call(o, i, o[i], type || i);
|
|
||||||
|
|
||||||
if (_.util.type(o[i]) === 'Object') {
|
|
||||||
_.languages.DFS(o[i], callback);
|
|
||||||
}
|
|
||||||
else if (_.util.type(o[i]) === 'Array') {
|
|
||||||
_.languages.DFS(o[i], callback, i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
plugins: {},
|
|
||||||
|
|
||||||
highlightAll: function(async, callback) {
|
|
||||||
var elements = document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code');
|
|
||||||
|
|
||||||
for (var i=0, element; element = elements[i++];) {
|
|
||||||
_.highlightElement(element, async === true, callback);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
highlightElement: function(element, async, callback) {
|
|
||||||
// Find language
|
|
||||||
var language, grammar, parent = element;
|
|
||||||
|
|
||||||
while (parent && !lang.test(parent.className)) {
|
|
||||||
parent = parent.parentNode;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (parent) {
|
|
||||||
language = (parent.className.match(lang) || [,''])[1];
|
|
||||||
grammar = _.languages[language];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set language on the element, if not present
|
|
||||||
element.className = element.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
|
|
||||||
|
|
||||||
// Set language on the parent, for styling
|
|
||||||
parent = element.parentNode;
|
|
||||||
|
|
||||||
if (/pre/i.test(parent.nodeName)) {
|
|
||||||
parent.className = parent.className.replace(lang, '').replace(/\s+/g, ' ') + ' language-' + language;
|
|
||||||
}
|
|
||||||
|
|
||||||
var code = element.textContent;
|
|
||||||
|
|
||||||
var env = {
|
|
||||||
element: element,
|
|
||||||
language: language,
|
|
||||||
grammar: grammar,
|
|
||||||
code: code
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!code || !grammar) {
|
|
||||||
_.hooks.run('complete', env);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
_.hooks.run('before-highlight', env);
|
|
||||||
|
|
||||||
if (async && _self.Worker) {
|
|
||||||
var worker = new Worker(_.filename);
|
|
||||||
|
|
||||||
worker.onmessage = function(evt) {
|
|
||||||
env.highlightedCode = evt.data;
|
|
||||||
|
|
||||||
_.hooks.run('before-insert', env);
|
|
||||||
|
|
||||||
env.element.innerHTML = env.highlightedCode;
|
|
||||||
|
|
||||||
callback && callback.call(env.element);
|
|
||||||
_.hooks.run('after-highlight', env);
|
|
||||||
_.hooks.run('complete', env);
|
|
||||||
};
|
|
||||||
|
|
||||||
worker.postMessage(JSON.stringify({
|
|
||||||
language: env.language,
|
|
||||||
code: env.code,
|
|
||||||
immediateClose: true
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
env.highlightedCode = _.highlight(env.code, env.grammar, env.language);
|
|
||||||
|
|
||||||
_.hooks.run('before-insert', env);
|
|
||||||
|
|
||||||
env.element.innerHTML = env.highlightedCode;
|
|
||||||
|
|
||||||
callback && callback.call(element);
|
|
||||||
|
|
||||||
_.hooks.run('after-highlight', env);
|
|
||||||
_.hooks.run('complete', env);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
highlight: function (text, grammar, language) {
|
|
||||||
var tokens = _.tokenize(text, grammar);
|
|
||||||
return Token.stringify(_.util.encode(tokens), language);
|
|
||||||
},
|
|
||||||
|
|
||||||
tokenize: function(text, grammar, language) {
|
|
||||||
var Token = _.Token;
|
|
||||||
|
|
||||||
var strarr = [text];
|
|
||||||
|
|
||||||
var rest = grammar.rest;
|
|
||||||
|
|
||||||
if (rest) {
|
|
||||||
for (var token in rest) {
|
|
||||||
grammar[token] = rest[token];
|
|
||||||
}
|
|
||||||
|
|
||||||
delete grammar.rest;
|
|
||||||
}
|
|
||||||
|
|
||||||
tokenloop: for (var token in grammar) {
|
|
||||||
if(!grammar.hasOwnProperty(token) || !grammar[token]) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var patterns = grammar[token];
|
|
||||||
patterns = (_.util.type(patterns) === "Array") ? patterns : [patterns];
|
|
||||||
|
|
||||||
for (var j = 0; j < patterns.length; ++j) {
|
|
||||||
var pattern = patterns[j],
|
|
||||||
inside = pattern.inside,
|
|
||||||
lookbehind = !!pattern.lookbehind,
|
|
||||||
lookbehindLength = 0,
|
|
||||||
alias = pattern.alias;
|
|
||||||
|
|
||||||
pattern = pattern.pattern || pattern;
|
|
||||||
|
|
||||||
for (var i=0; i<strarr.length; i++) { // Don’t cache length as it changes during the loop
|
|
||||||
|
|
||||||
var str = strarr[i];
|
|
||||||
|
|
||||||
if (strarr.length > text.length) {
|
|
||||||
// Something went terribly wrong, ABORT, ABORT!
|
|
||||||
break tokenloop;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (str instanceof Token) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
pattern.lastIndex = 0;
|
|
||||||
|
|
||||||
var match = pattern.exec(str);
|
|
||||||
|
|
||||||
if (match) {
|
|
||||||
if(lookbehind) {
|
|
||||||
lookbehindLength = match[1].length;
|
|
||||||
}
|
|
||||||
|
|
||||||
var from = match.index - 1 + lookbehindLength,
|
|
||||||
match = match[0].slice(lookbehindLength),
|
|
||||||
len = match.length,
|
|
||||||
to = from + len,
|
|
||||||
before = str.slice(0, from + 1),
|
|
||||||
after = str.slice(to + 1);
|
|
||||||
|
|
||||||
var args = [i, 1];
|
|
||||||
|
|
||||||
if (before) {
|
|
||||||
args.push(before);
|
|
||||||
}
|
|
||||||
|
|
||||||
var wrapped = new Token(token, inside? _.tokenize(match, inside) : match, alias);
|
|
||||||
|
|
||||||
args.push(wrapped);
|
|
||||||
|
|
||||||
if (after) {
|
|
||||||
args.push(after);
|
|
||||||
}
|
|
||||||
|
|
||||||
Array.prototype.splice.apply(strarr, args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return strarr;
|
|
||||||
},
|
|
||||||
|
|
||||||
hooks: {
|
|
||||||
all: {},
|
|
||||||
|
|
||||||
add: function (name, callback) {
|
|
||||||
var hooks = _.hooks.all;
|
|
||||||
|
|
||||||
hooks[name] = hooks[name] || [];
|
|
||||||
|
|
||||||
hooks[name].push(callback);
|
|
||||||
},
|
|
||||||
|
|
||||||
run: function (name, env) {
|
|
||||||
var callbacks = _.hooks.all[name];
|
|
||||||
|
|
||||||
if (!callbacks || !callbacks.length) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (var i=0, callback; callback = callbacks[i++];) {
|
|
||||||
callback(env);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var Token = _.Token = function(type, content, alias) {
|
|
||||||
this.type = type;
|
|
||||||
this.content = content;
|
|
||||||
this.alias = alias;
|
|
||||||
};
|
|
||||||
|
|
||||||
Token.stringify = function(o, language, parent) {
|
|
||||||
if (typeof o == 'string') {
|
|
||||||
return o;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_.util.type(o) === 'Array') {
|
|
||||||
return o.map(function(element) {
|
|
||||||
return Token.stringify(element, language, o);
|
|
||||||
}).join('');
|
|
||||||
}
|
|
||||||
|
|
||||||
var env = {
|
|
||||||
type: o.type,
|
|
||||||
content: Token.stringify(o.content, language, parent),
|
|
||||||
tag: 'span',
|
|
||||||
classes: ['token', o.type],
|
|
||||||
attributes: {},
|
|
||||||
language: language,
|
|
||||||
parent: parent
|
|
||||||
};
|
|
||||||
|
|
||||||
if (env.type == 'comment') {
|
|
||||||
env.attributes['spellcheck'] = 'true';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (o.alias) {
|
|
||||||
var aliases = _.util.type(o.alias) === 'Array' ? o.alias : [o.alias];
|
|
||||||
Array.prototype.push.apply(env.classes, aliases);
|
|
||||||
}
|
|
||||||
|
|
||||||
_.hooks.run('wrap', env);
|
|
||||||
|
|
||||||
var attributes = '';
|
|
||||||
|
|
||||||
for (var name in env.attributes) {
|
|
||||||
attributes += (attributes ? ' ' : '') + name + '="' + (env.attributes[name] || '') + '"';
|
|
||||||
}
|
|
||||||
|
|
||||||
return '<' + env.tag + ' class="' + env.classes.join(' ') + '" ' + attributes + '>' + env.content + '</' + env.tag + '>';
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!_self.document) {
|
|
||||||
if (!_self.addEventListener) {
|
|
||||||
// in Node.js
|
|
||||||
return _self.Prism;
|
|
||||||
}
|
|
||||||
// In worker
|
|
||||||
_self.addEventListener('message', function(evt) {
|
|
||||||
var message = JSON.parse(evt.data),
|
|
||||||
lang = message.language,
|
|
||||||
code = message.code,
|
|
||||||
immediateClose = message.immediateClose;
|
|
||||||
|
|
||||||
_self.postMessage(_.highlight(code, _.languages[lang], lang));
|
|
||||||
if (immediateClose) {
|
|
||||||
_self.close();
|
|
||||||
}
|
|
||||||
}, false);
|
|
||||||
|
|
||||||
return _self.Prism;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get current script and highlight
|
|
||||||
var script = document.getElementsByTagName('script');
|
|
||||||
|
|
||||||
script = script[script.length - 1];
|
|
||||||
|
|
||||||
if (script) {
|
|
||||||
_.filename = script.src;
|
|
||||||
|
|
||||||
if (document.addEventListener && !script.hasAttribute('data-manual')) {
|
|
||||||
document.addEventListener('DOMContentLoaded', _.highlightAll);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return _self.Prism;
|
|
||||||
|
|
||||||
})();
|
|
||||||
|
|
||||||
if (typeof module !== 'undefined' && module.exports) {
|
|
||||||
module.exports = Prism;
|
|
||||||
}
|
|
||||||
|
|
||||||
// hack for components to work correctly in node.js
|
|
||||||
if (typeof global !== 'undefined') {
|
|
||||||
global.Prism = Prism;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(){var e=/\blang(?:uage)?-(?!\*)(\w+)\b/i,t=_self.Prism={util:{encode:function(e){return e instanceof n?new n(e.type,t.util.encode(e.content),e.alias):"Array"===t.util.type(e)?e.map(t.util.encode):e.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).match(/\[object (\w+)\]/)[1]},clone:function(e){var n=t.util.type(e);switch(n){case"Object":var a={};for(var r in e)e.hasOwnProperty(r)&&(a[r]=t.util.clone(e[r]));return a;case"Array":return e.map&&e.map(function(e){return t.util.clone(e)})}return e}},languages:{extend:function(e,n){var a=t.util.clone(t.languages[e]);for(var r in n)a[r]=n[r];return a},insertBefore:function(e,n,a,r){r=r||t.languages;var l=r[e];if(2==arguments.length){a=arguments[1];for(var i in a)a.hasOwnProperty(i)&&(l[i]=a[i]);return l}var o={};for(var s in l)if(l.hasOwnProperty(s)){if(s==n)for(var i in a)a.hasOwnProperty(i)&&(o[i]=a[i]);o[s]=l[s]}return t.languages.DFS(t.languages,function(t,n){n===r[e]&&t!=e&&(this[t]=o)}),r[e]=o},DFS:function(e,n,a){for(var r in e)e.hasOwnProperty(r)&&(n.call(e,r,e[r],a||r),"Object"===t.util.type(e[r])?t.languages.DFS(e[r],n):"Array"===t.util.type(e[r])&&t.languages.DFS(e[r],n,r))}},plugins:{},highlightAll:function(e,n){for(var a,r=document.querySelectorAll('code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'),l=0;a=r[l++];)t.highlightElement(a,e===!0,n)},highlightElement:function(n,a,r){for(var l,i,o=n;o&&!e.test(o.className);)o=o.parentNode;o&&(l=(o.className.match(e)||[,""])[1],i=t.languages[l]),n.className=n.className.replace(e,"").replace(/\s+/g," ")+" language-"+l,o=n.parentNode,/pre/i.test(o.nodeName)&&(o.className=o.className.replace(e,"").replace(/\s+/g," ")+" language-"+l);var s=n.textContent,u={element:n,language:l,grammar:i,code:s};if(!s||!i)return t.hooks.run("complete",u),void 0;if(t.hooks.run("before-highlight",u),a&&_self.Worker){var g=new Worker(t.filename);g.onmessage=function(e){u.highlightedCode=e.data,t.hooks.run("before-insert",u),u.element.innerHTML=u.highlightedCode,r&&r.call(u.element),t.hooks.run("after-highlight",u),t.hooks.run("complete",u)},g.postMessage(JSON.stringify({language:u.language,code:u.code,immediateClose:!0}))}else u.highlightedCode=t.highlight(u.code,u.grammar,u.language),t.hooks.run("before-insert",u),u.element.innerHTML=u.highlightedCode,r&&r.call(n),t.hooks.run("after-highlight",u),t.hooks.run("complete",u)},highlight:function(e,a,r){var l=t.tokenize(e,a);return n.stringify(t.util.encode(l),r)},tokenize:function(e,n){var a=t.Token,r=[e],l=n.rest;if(l){for(var i in l)n[i]=l[i];delete n.rest}e:for(var i in n)if(n.hasOwnProperty(i)&&n[i]){var o=n[i];o="Array"===t.util.type(o)?o:[o];for(var s=0;s<o.length;++s){var u=o[s],g=u.inside,c=!!u.lookbehind,f=0,h=u.alias;u=u.pattern||u;for(var p=0;p<r.length;p++){var d=r[p];if(r.length>e.length)break e;if(!(d instanceof a)){u.lastIndex=0;var m=u.exec(d);if(m){c&&(f=m[1].length);var y=m.index-1+f,m=m[0].slice(f),v=m.length,k=y+v,b=d.slice(0,y+1),w=d.slice(k+1),P=[p,1];b&&P.push(b);var A=new a(i,g?t.tokenize(m,g):m,h);P.push(A),w&&P.push(w),Array.prototype.splice.apply(r,P)}}}}}return r},hooks:{all:{},add:function(e,n){var a=t.hooks.all;a[e]=a[e]||[],a[e].push(n)},run:function(e,n){var a=t.hooks.all[e];if(a&&a.length)for(var r,l=0;r=a[l++];)r(n)}}},n=t.Token=function(e,t,n){this.type=e,this.content=t,this.alias=n};if(n.stringify=function(e,a,r){if("string"==typeof e)return e;if("Array"===t.util.type(e))return e.map(function(t){return n.stringify(t,a,e)}).join("");var l={type:e.type,content:n.stringify(e.content,a,r),tag:"span",classes:["token",e.type],attributes:{},language:a,parent:r};if("comment"==l.type&&(l.attributes.spellcheck="true"),e.alias){var i="Array"===t.util.type(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(l.classes,i)}t.hooks.run("wrap",l);var o="";for(var s in l.attributes)o+=(o?" ":"")+s+'="'+(l.attributes[s]||"")+'"';return"<"+l.tag+' class="'+l.classes.join(" ")+'" '+o+">"+l.content+"</"+l.tag+">"},!_self.document)return _self.addEventListener?(_self.addEventListener("message",function(e){var n=JSON.parse(e.data),a=n.language,r=n.code,l=n.immediateClose;_self.postMessage(t.highlight(r,t.languages[a],a)),l&&_self.close()},!1),_self.Prism):_self.Prism;var a=document.getElementsByTagName("script");return a=a[a.length-1],a&&(t.filename=a.src,document.addEventListener&&!a.hasAttribute("data-manual")&&document.addEventListener("DOMContentLoaded",t.highlightAll)),_self.Prism}();"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism);
|
|
|
@ -1,12 +0,0 @@
|
||||||
Prism.languages.cpp = Prism.languages.extend('c', {
|
|
||||||
'keyword': /\b(alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|class|compl|const|constexpr|const_cast|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|float|for|friend|goto|if|inline|int|long|mutable|namespace|new|noexcept|nullptr|operator|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,
|
|
||||||
'boolean': /\b(true|false)\b/,
|
|
||||||
'operator': /[-+]{1,2}|!=?|<{1,2}=?|>{1,2}=?|\->|:{1,2}|={1,2}|\^|~|%|&{1,2}|\|?\||\?|\*|\/|\b(and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('cpp', 'keyword', {
|
|
||||||
'class-name': {
|
|
||||||
pattern: /(class\s+)[a-z0-9_]+/i,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.cpp=Prism.languages.extend("c",{keyword:/\b(alignas|alignof|asm|auto|bool|break|case|catch|char|char16_t|char32_t|class|compl|const|constexpr|const_cast|continue|decltype|default|delete|do|double|dynamic_cast|else|enum|explicit|export|extern|float|for|friend|goto|if|inline|int|long|mutable|namespace|new|noexcept|nullptr|operator|private|protected|public|register|reinterpret_cast|return|short|signed|sizeof|static|static_assert|static_cast|struct|switch|template|this|thread_local|throw|try|typedef|typeid|typename|union|unsigned|using|virtual|void|volatile|wchar_t|while)\b/,"boolean":/\b(true|false)\b/,operator:/[-+]{1,2}|!=?|<{1,2}=?|>{1,2}=?|\->|:{1,2}|={1,2}|\^|~|%|&{1,2}|\|?\||\?|\*|\/|\b(and|and_eq|bitand|bitor|not|not_eq|or|or_eq|xor|xor_eq)\b/}),Prism.languages.insertBefore("cpp","keyword",{"class-name":{pattern:/(class\s+)[a-z0-9_]+/i,lookbehind:!0}});
|
|
|
@ -1,53 +0,0 @@
|
||||||
(function(Prism) {
|
|
||||||
Prism.languages.crystal = Prism.languages.extend('ruby', {
|
|
||||||
keyword: [
|
|
||||||
/\b(?:abstract|alias|as|asm|begin|break|case|class|def|do|else|elsif|end|ensure|enum|extend|for|fun|if|ifdef|include|instance_sizeof|lib|macro|module|next|of|out|pointerof|private|protected|rescue|return|require|self|sizeof|struct|super|then|type|typeof|union|unless|until|when|while|with|yield|__DIR__|__FILE__|__LINE__)\b/,
|
|
||||||
{
|
|
||||||
pattern: /(\.\s*)(?:is_a|responds_to)\?/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
number: /\b(?:0b[01_]*[01]|0o[0-7_]*[0-7]|0x[0-9a-fA-F_]*[0-9a-fA-F]|(?:[0-9](?:[0-9_]*[0-9])?)(?:\.[0-9_]*[0-9])?(?:[eE][+-]?[0-9_]*[0-9])?)(?:_(?:[uif](?:8|16|32|64))?)?\b/,
|
|
||||||
});
|
|
||||||
|
|
||||||
var rest = Prism.util.clone(Prism.languages.crystal);
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('crystal', 'string', {
|
|
||||||
attribute: {
|
|
||||||
pattern: /@\[.+?\]/,
|
|
||||||
alias: 'attr-name',
|
|
||||||
inside: {
|
|
||||||
delimiter: {
|
|
||||||
pattern: /^@\[|\]$/,
|
|
||||||
alias: 'tag'
|
|
||||||
},
|
|
||||||
rest: rest
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
expansion: [
|
|
||||||
{
|
|
||||||
pattern: /\{\{.+?\}\}/,
|
|
||||||
inside: {
|
|
||||||
delimiter: {
|
|
||||||
pattern: /^\{\{|\}\}$/,
|
|
||||||
alias: 'tag'
|
|
||||||
},
|
|
||||||
rest: rest
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /\{%.+?%\}/,
|
|
||||||
inside: {
|
|
||||||
delimiter: {
|
|
||||||
pattern: /^\{%|%\}$/,
|
|
||||||
alias: 'tag'
|
|
||||||
},
|
|
||||||
rest: rest
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
}(Prism));
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){e.languages.crystal=e.languages.extend("ruby",{keyword:[/\b(?:abstract|alias|as|asm|begin|break|case|class|def|do|else|elsif|end|ensure|enum|extend|for|fun|if|ifdef|include|instance_sizeof|lib|macro|module|next|of|out|pointerof|private|protected|rescue|return|require|self|sizeof|struct|super|then|type|typeof|union|unless|until|when|while|with|yield|__DIR__|__FILE__|__LINE__)\b/,{pattern:/(\.\s*)(?:is_a|responds_to)\?/,lookbehind:!0}],number:/\b(?:0b[01_]*[01]|0o[0-7_]*[0-7]|0x[0-9a-fA-F_]*[0-9a-fA-F]|(?:[0-9](?:[0-9_]*[0-9])?)(?:\.[0-9_]*[0-9])?(?:[eE][+-]?[0-9_]*[0-9])?)(?:_(?:[uif](?:8|16|32|64))?)?\b/});var t=e.util.clone(e.languages.crystal);e.languages.insertBefore("crystal","string",{attribute:{pattern:/@\[.+?\]/,alias:"attr-name",inside:{delimiter:{pattern:/^@\[|\]$/,alias:"tag"},rest:t}},expansion:[{pattern:/\{\{.+?\}\}/,inside:{delimiter:{pattern:/^\{\{|\}\}$/,alias:"tag"},rest:t}},{pattern:/\{%.+?%\}/,inside:{delimiter:{pattern:/^\{%|%\}$/,alias:"tag"},rest:t}}]})}(Prism);
|
|
|
@ -1,24 +0,0 @@
|
||||||
Prism.languages.csharp = Prism.languages.extend('clike', {
|
|
||||||
'keyword': /\b(abstract|as|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|do|double|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|goto|if|implicit|in|int|interface|internal|is|lock|long|namespace|new|null|object|operator|out|override|params|private|protected|public|readonly|ref|return|sbyte|sealed|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|virtual|void|volatile|while|add|alias|ascending|async|await|descending|dynamic|from|get|global|group|into|join|let|orderby|partial|remove|select|set|value|var|where|yield)\b/,
|
|
||||||
'string': [
|
|
||||||
/@("|')(\1\1|\\\1|\\?(?!\1)[\s\S])*\1/,
|
|
||||||
/("|')(\\?.)*?\1/
|
|
||||||
],
|
|
||||||
'number': /\b-?(0x[\da-f]+|\d*\.?\d+f?)\b/i
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('csharp', 'keyword', {
|
|
||||||
'preprocessor': {
|
|
||||||
pattern: /(^\s*)#.*/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'property',
|
|
||||||
inside: {
|
|
||||||
// highlight preprocessor directives as keywords
|
|
||||||
'directive': {
|
|
||||||
pattern: /(\s*#)\b(define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.csharp=Prism.languages.extend("clike",{keyword:/\b(abstract|as|async|await|base|bool|break|byte|case|catch|char|checked|class|const|continue|decimal|default|delegate|do|double|else|enum|event|explicit|extern|false|finally|fixed|float|for|foreach|goto|if|implicit|in|int|interface|internal|is|lock|long|namespace|new|null|object|operator|out|override|params|private|protected|public|readonly|ref|return|sbyte|sealed|short|sizeof|stackalloc|static|string|struct|switch|this|throw|true|try|typeof|uint|ulong|unchecked|unsafe|ushort|using|virtual|void|volatile|while|add|alias|ascending|async|await|descending|dynamic|from|get|global|group|into|join|let|orderby|partial|remove|select|set|value|var|where|yield)\b/,string:[/@("|')(\1\1|\\\1|\\?(?!\1)[\s\S])*\1/,/("|')(\\?.)*?\1/],number:/\b-?(0x[\da-f]+|\d*\.?\d+f?)\b/i}),Prism.languages.insertBefore("csharp","keyword",{preprocessor:{pattern:/(^\s*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(\s*#)\b(define|elif|else|endif|endregion|error|if|line|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}});
|
|
|
@ -1,15 +0,0 @@
|
||||||
Prism.languages.css.selector = {
|
|
||||||
pattern: /[^\{\}\s][^\{\}]*(?=\s*\{)/,
|
|
||||||
inside: {
|
|
||||||
'pseudo-element': /:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,
|
|
||||||
'pseudo-class': /:[-\w]+(?:\(.*\))?/,
|
|
||||||
'class': /\.[-:\.\w]+/,
|
|
||||||
'id': /#[-:\.\w]+/
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('css', 'function', {
|
|
||||||
'hexcode': /#[\da-f]{3,6}/i,
|
|
||||||
'entity': /\\[\da-f]{1,8}/i,
|
|
||||||
'number': /[\d%\.]+/
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.css.selector={pattern:/[^\{\}\s][^\{\}]*(?=\s*\{)/,inside:{"pseudo-element":/:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,"pseudo-class":/:[-\w]+(?:\(.*\))?/,"class":/\.[-:\.\w]+/,id:/#[-:\.\w]+/}},Prism.languages.insertBefore("css","function",{hexcode:/#[\da-f]{3,6}/i,entity:/\\[\da-f]{1,8}/i,number:/[\d%\.]+/});
|
|
|
@ -1,48 +0,0 @@
|
||||||
Prism.languages.css = {
|
|
||||||
'comment': /\/\*[\w\W]*?\*\//,
|
|
||||||
'atrule': {
|
|
||||||
pattern: /@[\w-]+?.*?(;|(?=\s*\{))/i,
|
|
||||||
inside: {
|
|
||||||
'rule': /@[\w-]+/
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'url': /url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,
|
|
||||||
'selector': /[^\{\}\s][^\{\};]*?(?=\s*\{)/,
|
|
||||||
'string': /("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,
|
|
||||||
'property': /(\b|\B)[\w-]+(?=\s*:)/i,
|
|
||||||
'important': /\B!important\b/i,
|
|
||||||
'function': /[-a-z0-9]+(?=\()/i,
|
|
||||||
'punctuation': /[(){};:]/
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.css['atrule'].inside.rest = Prism.util.clone(Prism.languages.css);
|
|
||||||
|
|
||||||
if (Prism.languages.markup) {
|
|
||||||
Prism.languages.insertBefore('markup', 'tag', {
|
|
||||||
'style': {
|
|
||||||
pattern: /(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: Prism.languages.css,
|
|
||||||
alias: 'language-css'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('inside', 'attr-value', {
|
|
||||||
'style-attr': {
|
|
||||||
pattern: /\s*style=("|').*?\1/i,
|
|
||||||
inside: {
|
|
||||||
'attr-name': {
|
|
||||||
pattern: /^\s*style/i,
|
|
||||||
inside: Prism.languages.markup.tag.inside
|
|
||||||
},
|
|
||||||
'punctuation': /^\s*=\s*['"]|['"]\s*$/,
|
|
||||||
'attr-value': {
|
|
||||||
pattern: /.+/i,
|
|
||||||
inside: Prism.languages.css
|
|
||||||
}
|
|
||||||
},
|
|
||||||
alias: 'language-css'
|
|
||||||
}
|
|
||||||
}, Prism.languages.markup.tag);
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.css={comment:/\/\*[\w\W]*?\*\//,atrule:{pattern:/@[\w-]+?.*?(;|(?=\s*\{))/i,inside:{rule:/@[\w-]+/}},url:/url\((?:(["'])(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1|.*?)\)/i,selector:/[^\{\}\s][^\{\};]*?(?=\s*\{)/,string:/("|')(\\(?:\r\n|[\w\W])|(?!\1)[^\\\r\n])*\1/,property:/(\b|\B)[\w-]+(?=\s*:)/i,important:/\B!important\b/i,"function":/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:]/},Prism.languages.css.atrule.inside.rest=Prism.util.clone(Prism.languages.css),Prism.languages.markup&&(Prism.languages.insertBefore("markup","tag",{style:{pattern:/(<style[\w\W]*?>)[\w\W]*?(?=<\/style>)/i,lookbehind:!0,inside:Prism.languages.css,alias:"language-css"}}),Prism.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|').*?\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:Prism.languages.markup.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:Prism.languages.css}},alias:"language-css"}},Prism.languages.markup.tag));
|
|
|
@ -1,64 +0,0 @@
|
||||||
Prism.languages.d = Prism.languages.extend('clike', {
|
|
||||||
'string': [
|
|
||||||
// r"", x""
|
|
||||||
/\b[rx]"(\\.|[^\\"])*"[cwd]?/,
|
|
||||||
// q"[]", q"()", q"<>", q"{}"
|
|
||||||
/\bq"(?:\[[\s\S]*?\]|\([\s\S]*?\)|<[\s\S]*?>|\{[\s\S]*?\})"/,
|
|
||||||
// q"IDENT
|
|
||||||
// ...
|
|
||||||
// IDENT"
|
|
||||||
/\bq"([_a-zA-Z][_a-zA-Z\d]*)(?:\r?\n|\r)[\s\S]*?(?:\r?\n|\r)\1"/,
|
|
||||||
// q"//", q"||", etc.
|
|
||||||
/\bq"(.)[\s\S]*?\1"/,
|
|
||||||
// Characters
|
|
||||||
/'(?:\\'|\\?[^']+)'/,
|
|
||||||
|
|
||||||
/(["`])(\\.|(?!\1)[^\\])*\1[cwd]?/
|
|
||||||
],
|
|
||||||
|
|
||||||
'number': [
|
|
||||||
// The lookbehind and the negative look-ahead try to prevent bad highlighting of the .. operator
|
|
||||||
// Hexadecimal numbers must be handled separately to avoid problems with exponent "e"
|
|
||||||
/\b0x\.?[a-f\d_]+(?:(?!\.\.)\.[a-f\d_]*)?(?:p[+-]?[a-f\d_]+)?[ulfi]*/i,
|
|
||||||
{
|
|
||||||
pattern: /((?:\.\.)?)(?:\b0b\.?|\b|\.)\d[\d_]*(?:(?!\.\.)\.[\d_]*)?(?:e[+-]?\d[\d_]*)?[ulfi]*/i,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
// In order: $, keywords and special tokens, globally defined symbols
|
|
||||||
'keyword': /\$|\b(?:abstract|alias|align|asm|assert|auto|body|bool|break|byte|case|cast|catch|cdouble|cent|cfloat|char|class|const|continue|creal|dchar|debug|default|delegate|delete|deprecated|do|double|else|enum|export|extern|false|final|finally|float|for|foreach|foreach_reverse|function|goto|idouble|if|ifloat|immutable|import|inout|int|interface|invariant|ireal|lazy|long|macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|real|ref|return|scope|shared|short|static|struct|super|switch|synchronized|template|this|throw|true|try|typedef|typeid|typeof|ubyte|ucent|uint|ulong|union|unittest|ushort|version|void|volatile|wchar|while|with|__(?:(?:FILE|MODULE|LINE|FUNCTION|PRETTY_FUNCTION|DATE|EOF|TIME|TIMESTAMP|VENDOR|VERSION)__|gshared|traits|vector|parameters)|string|wstring|dstring|size_t|ptrdiff_t)\b/,
|
|
||||||
'operator': /\|[|=]?|&[&=]?|\+[+=]?|-[-=]?|\.?\.\.|=[>=]?|!(?:i[ns]\b|<>?=?|>=?|=)?|\bi[ns]\b|(?:<[<>]?|>>?>?|\^\^|[*\/%^~])=?/
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
Prism.languages.d.comment = [
|
|
||||||
// Shebang
|
|
||||||
/^\s*#!.+/,
|
|
||||||
// /+ +/
|
|
||||||
{
|
|
||||||
// Allow one level of nesting
|
|
||||||
pattern: /(^|[^\\])\/\+(?:\/\+[\w\W]*?\+\/|[\w\W])*?\+\//,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
].concat(Prism.languages.d.comment);
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('d', 'comment', {
|
|
||||||
'token-string': {
|
|
||||||
// Allow one level of nesting
|
|
||||||
pattern: /\bq\{(?:|\{[^}]*\}|[^}])*\}/,
|
|
||||||
alias: 'string'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('d', 'keyword', {
|
|
||||||
'property': /\B@\w*/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('d', 'function', {
|
|
||||||
'register': {
|
|
||||||
// Iasm registers
|
|
||||||
pattern: /\b(?:[ABCD][LHX]|E[ABCD]X|E?(?:BP|SP|DI|SI)|[ECSDGF]S|CR[0234]|DR[012367]|TR[3-7]|X?MM[0-7]|R[ABCD]X|[BS]PL|R[BS]P|[DS]IL|R[DS]I|R(?:[89]|1[0-5])[BWD]?|XMM(?:[89]|1[0-5])|YMM(?:1[0-5]|\d))\b|\bST(?:\([0-7]\)|\b)/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.d=Prism.languages.extend("clike",{string:[/\b[rx]"(\\.|[^\\"])*"[cwd]?/,/\bq"(?:\[[\s\S]*?\]|\([\s\S]*?\)|<[\s\S]*?>|\{[\s\S]*?\})"/,/\bq"([_a-zA-Z][_a-zA-Z\d]*)(?:\r?\n|\r)[\s\S]*?(?:\r?\n|\r)\1"/,/\bq"(.)[\s\S]*?\1"/,/'(?:\\'|\\?[^']+)'/,/(["`])(\\.|(?!\1)[^\\])*\1[cwd]?/],number:[/\b0x\.?[a-f\d_]+(?:(?!\.\.)\.[a-f\d_]*)?(?:p[+-]?[a-f\d_]+)?[ulfi]*/i,{pattern:/((?:\.\.)?)(?:\b0b\.?|\b|\.)\d[\d_]*(?:(?!\.\.)\.[\d_]*)?(?:e[+-]?\d[\d_]*)?[ulfi]*/i,lookbehind:!0}],keyword:/\$|\b(?:abstract|alias|align|asm|assert|auto|body|bool|break|byte|case|cast|catch|cdouble|cent|cfloat|char|class|const|continue|creal|dchar|debug|default|delegate|delete|deprecated|do|double|else|enum|export|extern|false|final|finally|float|for|foreach|foreach_reverse|function|goto|idouble|if|ifloat|immutable|import|inout|int|interface|invariant|ireal|lazy|long|macro|mixin|module|new|nothrow|null|out|override|package|pragma|private|protected|public|pure|real|ref|return|scope|shared|short|static|struct|super|switch|synchronized|template|this|throw|true|try|typedef|typeid|typeof|ubyte|ucent|uint|ulong|union|unittest|ushort|version|void|volatile|wchar|while|with|__(?:(?:FILE|MODULE|LINE|FUNCTION|PRETTY_FUNCTION|DATE|EOF|TIME|TIMESTAMP|VENDOR|VERSION)__|gshared|traits|vector|parameters)|string|wstring|dstring|size_t|ptrdiff_t)\b/,operator:/\|[|=]?|&[&=]?|\+[+=]?|-[-=]?|\.?\.\.|=[>=]?|!(?:i[ns]\b|<>?=?|>=?|=)?|\bi[ns]\b|(?:<[<>]?|>>?>?|\^\^|[*\/%^~])=?/}),Prism.languages.d.comment=[/^\s*#!.+/,{pattern:/(^|[^\\])\/\+(?:\/\+[\w\W]*?\+\/|[\w\W])*?\+\//,lookbehind:!0}].concat(Prism.languages.d.comment),Prism.languages.insertBefore("d","comment",{"token-string":{pattern:/\bq\{(?:|\{[^}]*\}|[^}])*\}/,alias:"string"}}),Prism.languages.insertBefore("d","keyword",{property:/\B@\w*/}),Prism.languages.insertBefore("d","function",{register:{pattern:/\b(?:[ABCD][LHX]|E[ABCD]X|E?(?:BP|SP|DI|SI)|[ECSDGF]S|CR[0234]|DR[012367]|TR[3-7]|X?MM[0-7]|R[ABCD]X|[BS]PL|R[BS]P|[DS]IL|R[DS]I|R(?:[89]|1[0-5])[BWD]?|XMM(?:[89]|1[0-5])|YMM(?:1[0-5]|\d))\b|\bST(?:\([0-7]\)|\b)/,alias:"variable"}});
|
|
|
@ -1,18 +0,0 @@
|
||||||
Prism.languages.dart = Prism.languages.extend('clike', {
|
|
||||||
'string': [
|
|
||||||
/r?("""|''')[\s\S]*?\1/,
|
|
||||||
/r?("|')(\\?.)*?\1/
|
|
||||||
],
|
|
||||||
'keyword': [
|
|
||||||
/\b(?:async|sync|yield)\*/,
|
|
||||||
/\b(?:abstract|assert|async|await|break|case|catch|class|const|continue|default|deferred|do|dynamic|else|enum|export|external|extends|factory|final|finally|for|get|if|implements|import|in|library|new|null|operator|part|rethrow|return|set|static|super|switch|this|throw|try|typedef|var|void|while|with|yield)\b/
|
|
||||||
],
|
|
||||||
'operator': /\bis!|\b(?:as|is)\b|\+\+|--|&&|\|\||<<=?|>>=?|~(?:\/=?)?|[+\-*\/%&^|=!<>]=?|\?/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('dart','function',{
|
|
||||||
'metadata': {
|
|
||||||
pattern: /@\w+/,
|
|
||||||
alias: 'symbol'
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.dart=Prism.languages.extend("clike",{string:[/r?("""|''')[\s\S]*?\1/,/r?("|')(\\?.)*?\1/],keyword:[/\b(?:async|sync|yield)\*/,/\b(?:abstract|assert|async|await|break|case|catch|class|const|continue|default|deferred|do|dynamic|else|enum|export|external|extends|factory|final|finally|for|get|if|implements|import|in|library|new|null|operator|part|rethrow|return|set|static|super|switch|this|throw|try|typedef|var|void|while|with|yield)\b/],operator:/\bis!|\b(?:as|is)\b|\+\+|--|&&|\|\||<<=?|>>=?|~(?:\/=?)?|[+\-*\/%&^|=!<>]=?|\?/}),Prism.languages.insertBefore("dart","function",{metadata:{pattern:/@\w+/,alias:"symbol"}});
|
|
|
@ -1,20 +0,0 @@
|
||||||
Prism.languages.diff = {
|
|
||||||
'coord': [
|
|
||||||
// Match all kinds of coord lines (prefixed by "+++", "---" or "***").
|
|
||||||
/^(?:\*{3}|-{3}|\+{3}).*$/m,
|
|
||||||
// Match "@@ ... @@" coord lines in unified diff.
|
|
||||||
/^@@.*@@$/m,
|
|
||||||
// Match coord lines in normal diff (starts with a number).
|
|
||||||
/^\d+.*$/m
|
|
||||||
],
|
|
||||||
|
|
||||||
// Match inserted and deleted lines. Support both +/- and >/< styles.
|
|
||||||
'deleted': /^[-<].+$/m,
|
|
||||||
'inserted': /^[+>].+$/m,
|
|
||||||
|
|
||||||
// Match "different" lines (prefixed with "!") in context diff.
|
|
||||||
'diff': {
|
|
||||||
'pattern': /^!(?!!).+$/m,
|
|
||||||
'alias': 'important'
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d+.*$/m],deleted:/^[-<].+$/m,inserted:/^[+>].+$/m,diff:{pattern:/^!(?!!).+$/m,alias:"important"}};
|
|
|
@ -1,9 +0,0 @@
|
||||||
Prism.languages.docker = {
|
|
||||||
'keyword': {
|
|
||||||
pattern: /(^\s*)(?:ONBUILD|FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|COPY|VOLUME|USER|WORKDIR|CMD|LABEL|ENTRYPOINT)(?=\s)/mi,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'string': /("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/,
|
|
||||||
'comment': /#.*/,
|
|
||||||
'punctuation': /---|\.\.\.|[:[\]{}\-,|>?]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.docker={keyword:{pattern:/(^\s*)(?:ONBUILD|FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|COPY|VOLUME|USER|WORKDIR|CMD|LABEL|ENTRYPOINT)(?=\s)/im,lookbehind:!0},string:/("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/,comment:/#.*/,punctuation:/---|\.\.\.|[:[\]{}\-,|>?]/};
|
|
|
@ -1,24 +0,0 @@
|
||||||
Prism.languages.eiffel = {
|
|
||||||
'string': [
|
|
||||||
// Aligned-verbatim-strings
|
|
||||||
/"([^[]*)\[[\s\S]+?\]\1"/,
|
|
||||||
// Non-aligned-verbatim-strings
|
|
||||||
/"([^{]*)\{[\s\S]+?\}\1"/,
|
|
||||||
// Single-line string
|
|
||||||
/"(?:%\s+%|%"|.)*?"/
|
|
||||||
],
|
|
||||||
// (comments including quoted strings not supported)
|
|
||||||
'comment': /--.*/,
|
|
||||||
// normal char | special char | char code
|
|
||||||
'char': /'(?:%'|.)+?'/,
|
|
||||||
'keyword': /\b(?:across|agent|alias|all|and|attached|as|assign|attribute|check|class|convert|create|Current|debug|deferred|detachable|do|else|elseif|end|ensure|expanded|export|external|feature|from|frozen|if|implies|inherit|inspect|invariant|like|local|loop|not|note|obsolete|old|once|or|Precursor|redefine|rename|require|rescue|Result|retry|select|separate|some|then|undefine|until|variant|Void|when|xor)\b/i,
|
|
||||||
'boolean': /\b(?:True|False)\b/i,
|
|
||||||
'number': [
|
|
||||||
// hexa | octal | bin
|
|
||||||
/\b0[xcb][\da-f](?:_*[\da-f])*\b/i,
|
|
||||||
// Decimal
|
|
||||||
/(?:\d(?:_*\d)*)?\.(?:(?:\d(?:_*\d)*)?[eE][+-]?)?\d(?:_*\d)*|\d(?:_*\d)*\.?/
|
|
||||||
],
|
|
||||||
'punctuation': /:=|<<|>>|\(\||\|\)|->|\.(?=\w)|[{}[\];(),:?]/,
|
|
||||||
'operator': /\\\\|\|\.\.\||\.\.|\/[~\/=]?|[><]=?|[-+*^=~]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.eiffel={string:[/"([^[]*)\[[\s\S]+?\]\1"/,/"([^{]*)\{[\s\S]+?\}\1"/,/"(?:%\s+%|%"|.)*?"/],comment:/--.*/,"char":/'(?:%'|.)+?'/,keyword:/\b(?:across|agent|alias|all|and|attached|as|assign|attribute|check|class|convert|create|Current|debug|deferred|detachable|do|else|elseif|end|ensure|expanded|export|external|feature|from|frozen|if|implies|inherit|inspect|invariant|like|local|loop|not|note|obsolete|old|once|or|Precursor|redefine|rename|require|rescue|Result|retry|select|separate|some|then|undefine|until|variant|Void|when|xor)\b/i,"boolean":/\b(?:True|False)\b/i,number:[/\b0[xcb][\da-f](?:_*[\da-f])*\b/i,/(?:\d(?:_*\d)*)?\.(?:(?:\d(?:_*\d)*)?[eE][+-]?)?\d(?:_*\d)*|\d(?:_*\d)*\.?/],punctuation:/:=|<<|>>|\(\||\|\)|->|\.(?=\w)|[{}[\];(),:?]/,operator:/\\\\|\|\.\.\||\.\.|\/[~\/=]?|[><]=?|[-+*^=~]/};
|
|
|
@ -1,90 +0,0 @@
|
||||||
Prism.languages.elixir = {
|
|
||||||
// Negative look-ahead is needed for string interpolation
|
|
||||||
// Negative look-behind is needed to avoid highlighting markdown headers in
|
|
||||||
// multi-line doc strings
|
|
||||||
'comment': {
|
|
||||||
pattern: /(^|[^#])#(?![{#]).*/m,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
// ~r"""foo""", ~r'''foo''', ~r/foo/, ~r|foo|, ~r"foo", ~r'foo', ~r(foo), ~r[foo], ~r{foo}, ~r<foo>
|
|
||||||
'regex': /~[rR](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|[^}])+\}|<(?:\\>|[^>])+>)[uismxfr]*/,
|
|
||||||
'string': [
|
|
||||||
{
|
|
||||||
// ~s"""foo""", ~s'''foo''', ~s/foo/, ~s|foo|, ~s"foo", ~s'foo', ~s(foo), ~s[foo], ~s{foo}, ~s<foo>
|
|
||||||
pattern: /~[cCsSwW](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|#\{[^}]+\}|[^}])+\}|<(?:\\>|[^>])+>)[csa]?/,
|
|
||||||
inside: {
|
|
||||||
// See interpolation below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /("""|''')[\s\S]*?\1/,
|
|
||||||
inside: {
|
|
||||||
// See interpolation below
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// Multi-line strings are allowed
|
|
||||||
pattern: /("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/,
|
|
||||||
inside: {
|
|
||||||
// See interpolation below
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'atom': {
|
|
||||||
// Look-behind prevents bad highlighting of the :: operator
|
|
||||||
pattern: /(^|[^:]):\w+/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'symbol'
|
|
||||||
},
|
|
||||||
// Look-ahead prevents bad highlighting of the :: operator
|
|
||||||
'attr-name': /\w+:(?!:)/,
|
|
||||||
'capture': {
|
|
||||||
// Look-behind prevents bad highlighting of the && operator
|
|
||||||
pattern: /(^|[^&])&(?:[^&\s\d()][^\s()]*|(?=\())/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'function'
|
|
||||||
},
|
|
||||||
'argument': {
|
|
||||||
// Look-behind prevents bad highlighting of the && operator
|
|
||||||
pattern: /(^|[^&])&\d+/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'attribute': {
|
|
||||||
pattern: /@[\S]+/,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'number': /\b(?:0[box][a-f\d_]+|\d[\d_]*)(?:\.[\d_]+)?(?:e[+-]?[\d_]+)?\b/i,
|
|
||||||
'keyword': /\b(?:after|alias|and|case|catch|cond|def(?:callback|exception|impl|module|p|protocol|struct)?|do|else|end|fn|for|if|import|not|or|require|rescue|try|unless|use|when)\b/,
|
|
||||||
'boolean': /\b(?:true|false|nil)\b/,
|
|
||||||
'operator': [
|
|
||||||
/\bin\b|&&?|\|[|>]?|\\\\|::|\.\.\.?|\+\+?|-[->]?|<[-=>]|>=|!==?|\B!|=(?:==?|[>~])?|[*\/^]/,
|
|
||||||
{
|
|
||||||
// We don't want to match <<
|
|
||||||
pattern: /([^<])<(?!<)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// We don't want to match >>
|
|
||||||
pattern: /([^>])>(?!>)/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'punctuation': /<<|>>|[.,%\[\]{}()]/
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.elixir.string.forEach(function(o) {
|
|
||||||
o.inside = {
|
|
||||||
'interpolation': {
|
|
||||||
pattern: /#\{[^}]+\}/,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern: /^#\{|\}$/,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
rest: Prism.util.clone(Prism.languages.elixir)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.elixir={comment:{pattern:/(^|[^#])#(?![{#]).*/m,lookbehind:!0},regex:/~[rR](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|[^}])+\}|<(?:\\>|[^>])+>)[uismxfr]*/,string:[{pattern:/~[cCsSwW](?:("""|'''|[\/|"'])(?:\\.|(?!\1)[^\\])+\1|\((?:\\\)|[^)])+\)|\[(?:\\\]|[^\]])+\]|\{(?:\\\}|#\{[^}]+\}|[^}])+\}|<(?:\\>|[^>])+>)[csa]?/,inside:{}},{pattern:/("""|''')[\s\S]*?\1/,inside:{}},{pattern:/("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/,inside:{}}],atom:{pattern:/(^|[^:]):\w+/,lookbehind:!0,alias:"symbol"},"attr-name":/\w+:(?!:)/,capture:{pattern:/(^|[^&])&(?:[^&\s\d()][^\s()]*|(?=\())/,lookbehind:!0,alias:"function"},argument:{pattern:/(^|[^&])&\d+/,lookbehind:!0,alias:"variable"},attribute:{pattern:/@[\S]+/,alias:"variable"},number:/\b(?:0[box][a-f\d_]+|\d[\d_]*)(?:\.[\d_]+)?(?:e[+-]?[\d_]+)?\b/i,keyword:/\b(?:after|alias|and|case|catch|cond|def(?:callback|exception|impl|module|p|protocol|struct)?|do|else|end|fn|for|if|import|not|or|require|rescue|try|unless|use|when)\b/,"boolean":/\b(?:true|false|nil)\b/,operator:[/\bin\b|&&?|\|[|>]?|\\\\|::|\.\.\.?|\+\+?|-[->]?|<[-=>]|>=|!==?|\B!|=(?:==?|[>~])?|[*\/^]/,{pattern:/([^<])<(?!<)/,lookbehind:!0},{pattern:/([^>])>(?!>)/,lookbehind:!0}],punctuation:/<<|>>|[.,%\[\]{}()]/},Prism.languages.elixir.string.forEach(function(e){e.inside={interpolation:{pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"},rest:Prism.util.clone(Prism.languages.elixir)}}}});
|
|
|
@ -1,41 +0,0 @@
|
||||||
Prism.languages.erlang = {
|
|
||||||
'comment': /%.+/,
|
|
||||||
'string': /"(?:\\?.)*?"/,
|
|
||||||
'quoted-function': {
|
|
||||||
pattern: /'(?:\\.|[^'\\])+'(?=\()/,
|
|
||||||
alias: 'function'
|
|
||||||
},
|
|
||||||
'quoted-atom': {
|
|
||||||
pattern: /'(?:\\.|[^'\\])+'/,
|
|
||||||
alias: 'atom'
|
|
||||||
},
|
|
||||||
'boolean': /\b(?:true|false)\b/,
|
|
||||||
'keyword': /\b(?:fun|when|case|of|end|if|receive|after|try|catch)\b/,
|
|
||||||
'number': [
|
|
||||||
/\$\\?./,
|
|
||||||
/\d+#[a-z0-9]+/i,
|
|
||||||
/(?:\b|-)\d*\.?\d+([Ee][+-]?\d+)?\b/
|
|
||||||
],
|
|
||||||
'function': /\b[a-z][\w@]*(?=\()/,
|
|
||||||
'variable': {
|
|
||||||
// Look-behind is used to prevent wrong highlighting of atoms containing "@"
|
|
||||||
pattern: /(^|[^@])(?:\b|\?)[A-Z_][\w@]*/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'operator': [
|
|
||||||
/[=\/<>:]=|=[:\/]=|\+\+?|--?|[=*\/!]|\b(?:bnot|div|rem|band|bor|bxor|bsl|bsr|not|and|or|xor|orelse|andalso)\b/,
|
|
||||||
{
|
|
||||||
// We don't want to match <<
|
|
||||||
pattern: /(^|[^<])<(?!<)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
// We don't want to match >>
|
|
||||||
pattern: /(^|[^>])>(?!>)/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'atom': /\b[a-z][\w@]*/,
|
|
||||||
'punctuation': /[()[\]{}:;,.#|]|<<|>>/
|
|
||||||
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.erlang={comment:/%.+/,string:/"(?:\\?.)*?"/,"quoted-function":{pattern:/'(?:\\.|[^'\\])+'(?=\()/,alias:"function"},"quoted-atom":{pattern:/'(?:\\.|[^'\\])+'/,alias:"atom"},"boolean":/\b(?:true|false)\b/,keyword:/\b(?:fun|when|case|of|end|if|receive|after|try|catch)\b/,number:[/\$\\?./,/\d+#[a-z0-9]+/i,/(?:\b|-)\d*\.?\d+([Ee][+-]?\d+)?\b/],"function":/\b[a-z][\w@]*(?=\()/,variable:{pattern:/(^|[^@])(?:\b|\?)[A-Z_][\w@]*/,lookbehind:!0},operator:[/[=\/<>:]=|=[:\/]=|\+\+?|--?|[=*\/!]|\b(?:bnot|div|rem|band|bor|bxor|bsl|bsr|not|and|or|xor|orelse|andalso)\b/,{pattern:/(^|[^<])<(?!<)/,lookbehind:!0},{pattern:/(^|[^>])>(?!>)/,lookbehind:!0}],atom:/\b[a-z][\w@]*/,punctuation:/[()[\]{}:;,.#|]|<<|>>/};
|
|
|
@ -1,37 +0,0 @@
|
||||||
Prism.languages.fortran = {
|
|
||||||
'quoted-number': {
|
|
||||||
pattern: /[BOZ](['"])[A-F0-9]+\1/i,
|
|
||||||
alias: 'number'
|
|
||||||
},
|
|
||||||
'string': {
|
|
||||||
pattern: /(?:\w+_)?(['"])(?:\1\1|&(?:\r\n?|\n)(?:\s*!.+(?:\r\n?|\n))?|(?!\1).)*(?:\1|&)/,
|
|
||||||
inside: {
|
|
||||||
'comment': {
|
|
||||||
pattern: /(&(?:\r\n?|\n)\s*)!.*/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'comment': /!.*/,
|
|
||||||
'boolean': /\.(?:TRUE|FALSE)\.(?:_\w+)?/i,
|
|
||||||
'number': /(?:\b|[+-])(?:\d+(?:\.\d*)?|\.\d+)(?:[ED][+-]?\d+)?(?:_\w+)?/i,
|
|
||||||
'keyword': [
|
|
||||||
// Types
|
|
||||||
/\b(?:INTEGER|REAL|DOUBLE ?PRECISION|COMPLEX|CHARACTER|LOGICAL)\b/i,
|
|
||||||
// END statements
|
|
||||||
/\b(?:END ?)?(?:BLOCK ?DATA|DO|FILE|FORALL|FUNCTION|IF|INTERFACE|MODULE(?! PROCEDURE)|PROGRAM|SELECT|SUBROUTINE|TYPE|WHERE)\b/i,
|
|
||||||
// Statements
|
|
||||||
/\b(?:ALLOCATABLE|ALLOCATE|BACKSPACE|CALL|CASE|CLOSE|COMMON|CONTAINS|CONTINUE|CYCLE|DATA|DEALLOCATE|DIMENSION|DO|END|EQUIVALENCE|EXIT|EXTERNAL|FORMAT|GO ?TO|IMPLICIT(?: NONE)?|INQUIRE|INTENT|INTRINSIC|MODULE PROCEDURE|NAMELIST|NULLIFY|OPEN|OPTIONAL|PARAMETER|POINTER|PRINT|PRIVATE|PUBLIC|READ|RETURN|REWIND|SAVE|SELECT|STOP|TARGET|WHILE|WRITE)\b/i,
|
|
||||||
// Others
|
|
||||||
/\b(?:ASSIGNMENT|DEFAULT|ELEMENTAL|ELSE|ELSEWHERE|ELSEIF|ENTRY|IN|INCLUDE|INOUT|KIND|NULL|ONLY|OPERATOR|OUT|PURE|RECURSIVE|RESULT|SEQUENCE|STAT|THEN|USE)\b/i
|
|
||||||
],
|
|
||||||
'operator': [
|
|
||||||
/\*\*|\/\/|=>|[=\/]=|[<>]=?|::|[+\-*=%]|\.(?:EQ|NE|LT|LE|GT|GE|NOT|AND|OR|EQV|NEQV)\.|\.[A-Z]+\./i,
|
|
||||||
{
|
|
||||||
// Use lookbehind to prevent confusion with (/ /)
|
|
||||||
pattern: /(^|(?!\().)\/(?!\))/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'punctuation': /\(\/|\/\)|[(),;:&]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.fortran={"quoted-number":{pattern:/[BOZ](['"])[A-F0-9]+\1/i,alias:"number"},string:{pattern:/(?:\w+_)?(['"])(?:\1\1|&(?:\r\n?|\n)(?:\s*!.+(?:\r\n?|\n))?|(?!\1).)*(?:\1|&)/,inside:{comment:{pattern:/(&(?:\r\n?|\n)\s*)!.*/,lookbehind:!0}}},comment:/!.*/,"boolean":/\.(?:TRUE|FALSE)\.(?:_\w+)?/i,number:/(?:\b|[+-])(?:\d+(?:\.\d*)?|\.\d+)(?:[ED][+-]?\d+)?(?:_\w+)?/i,keyword:[/\b(?:INTEGER|REAL|DOUBLE ?PRECISION|COMPLEX|CHARACTER|LOGICAL)\b/i,/\b(?:END ?)?(?:BLOCK ?DATA|DO|FILE|FORALL|FUNCTION|IF|INTERFACE|MODULE(?! PROCEDURE)|PROGRAM|SELECT|SUBROUTINE|TYPE|WHERE)\b/i,/\b(?:ALLOCATABLE|ALLOCATE|BACKSPACE|CALL|CASE|CLOSE|COMMON|CONTAINS|CONTINUE|CYCLE|DATA|DEALLOCATE|DIMENSION|DO|END|EQUIVALENCE|EXIT|EXTERNAL|FORMAT|GO ?TO|IMPLICIT(?: NONE)?|INQUIRE|INTENT|INTRINSIC|MODULE PROCEDURE|NAMELIST|NULLIFY|OPEN|OPTIONAL|PARAMETER|POINTER|PRINT|PRIVATE|PUBLIC|READ|RETURN|REWIND|SAVE|SELECT|STOP|TARGET|WHILE|WRITE)\b/i,/\b(?:ASSIGNMENT|DEFAULT|ELEMENTAL|ELSE|ELSEWHERE|ELSEIF|ENTRY|IN|INCLUDE|INOUT|KIND|NULL|ONLY|OPERATOR|OUT|PURE|RECURSIVE|RESULT|SEQUENCE|STAT|THEN|USE)\b/i],operator:[/\*\*|\/\/|=>|[=\/]=|[<>]=?|::|[+\-*=%]|\.(?:EQ|NE|LT|LE|GT|GE|NOT|AND|OR|EQV|NEQV)\.|\.[A-Z]+\./i,{pattern:/(^|(?!\().)\/(?!\))/,lookbehind:!0}],punctuation:/\(\/|\/\)|[(),;:&]/};
|
|
|
@ -1,33 +0,0 @@
|
||||||
Prism.languages.fsharp = Prism.languages.extend('clike', {
|
|
||||||
'comment': [
|
|
||||||
{
|
|
||||||
pattern: /(^|[^\\])\(\*[\w\W]*?\*\)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /(^|[^\\:])\/\/.*/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'keyword': /\b(?:let|return|use|yield)(?:!\B|\b)|\b(abstract|and|as|assert|base|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|global|if|in|inherit|inline|interface|internal|lazy|match|member|module|mutable|namespace|new|not|null|of|open|or|override|private|public|rec|select|static|struct|then|to|true|try|type|upcast|val|void|when|while|with|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|include|method|mixin|object|parallel|process|protected|pure|sealed|tailcall|trait|virtual|volatile)\b/,
|
|
||||||
'string': /(?:"""[\s\S]*?"""|@"(?:""|[^"])*"|("|')(?:\\\1|\\?(?!\1)[\s\S])*\1)B?/,
|
|
||||||
'number': [
|
|
||||||
/\b-?0x[\da-fA-F]+(un|lf|LF)?\b/,
|
|
||||||
/\b-?0b[01]+(y|uy)?\b/,
|
|
||||||
/\b-?(\d*\.?\d+|\d+\.)([fFmM]|[eE][+-]?\d+)?\b/,
|
|
||||||
/\b-?\d+(y|uy|s|us|l|u|ul|L|UL|I)?\b/
|
|
||||||
]
|
|
||||||
});
|
|
||||||
Prism.languages.insertBefore('fsharp', 'keyword', {
|
|
||||||
'preprocessor': {
|
|
||||||
pattern: /^[^\r\n\S]*#.*/m,
|
|
||||||
alias: 'property',
|
|
||||||
inside: {
|
|
||||||
'directive': {
|
|
||||||
pattern: /(\s*#)\b(else|endif|if|light|line|nowarn)\b/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.fsharp=Prism.languages.extend("clike",{comment:[{pattern:/(^|[^\\])\(\*[\w\W]*?\*\)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0}],keyword:/\b(?:let|return|use|yield)(?:!\B|\b)|\b(abstract|and|as|assert|base|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|global|if|in|inherit|inline|interface|internal|lazy|match|member|module|mutable|namespace|new|not|null|of|open|or|override|private|public|rec|select|static|struct|then|to|true|try|type|upcast|val|void|when|while|with|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|include|method|mixin|object|parallel|process|protected|pure|sealed|tailcall|trait|virtual|volatile)\b/,string:/(?:"""[\s\S]*?"""|@"(?:""|[^"])*"|("|')(?:\\\1|\\?(?!\1)[\s\S])*\1)B?/,number:[/\b-?0x[\da-fA-F]+(un|lf|LF)?\b/,/\b-?0b[01]+(y|uy)?\b/,/\b-?(\d*\.?\d+|\d+\.)([fFmM]|[eE][+-]?\d+)?\b/,/\b-?\d+(y|uy|s|us|l|u|ul|L|UL|I)?\b/]}),Prism.languages.insertBefore("fsharp","keyword",{preprocessor:{pattern:/^[^\r\n\S]*#.*/m,alias:"property",inside:{directive:{pattern:/(\s*#)\b(else|endif|if|light|line|nowarn)\b/,lookbehind:!0,alias:"keyword"}}}});
|
|
|
@ -1,78 +0,0 @@
|
||||||
Prism.languages.gherkin = {
|
|
||||||
'pystring': {
|
|
||||||
pattern: /("""|''')[\s\S]+?\1/,
|
|
||||||
alias: 'string'
|
|
||||||
},
|
|
||||||
'comment': {
|
|
||||||
pattern: /((^|\r?\n|\r)[ \t]*)#.*/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'tag': {
|
|
||||||
pattern: /((^|\r?\n|\r)[ \t]*)@\S*/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'feature': {
|
|
||||||
pattern: /((^|\r?\n|\r)[ \t]*)(Ability|Ahoy matey!|Arwedd|Aspekt|Besigheid Behoefte|Business Need|Caracteristica|Característica|Egenskab|Egenskap|Eiginleiki|Feature|Fīča|Fitur|Fonctionnalité|Fonksyonalite|Funcionalidade|Funcionalitat|Functionalitate|Funcţionalitate|Funcționalitate|Functionaliteit|Fungsi|Funkcia|Funkcija|Funkcionalitāte|Funkcionalnost|Funkcja|Funksie|Funktionalität|Funktionalitéit|Funzionalità|Hwaet|Hwæt|Jellemző|Karakteristik|laH|Lastnost|Mak|Mogucnost|Mogućnost|Moznosti|Možnosti|OH HAI|Omadus|Ominaisuus|Osobina|Özellik|perbogh|poQbogh malja'|Potrzeba biznesowa|Požadavek|Požiadavka|Pretty much|Qap|Qu'meH 'ut|Savybė|Tính năng|Trajto|Vermoë|Vlastnosť|Właściwość|Značilnost|Δυνατότητα|Λειτουργία|Могућност|Мөмкинлек|Особина|Свойство|Үзенчәлеклелек|Функционал|Функционалност|Функция|Функціонал|תכונה|خاصية|خصوصیت|صلاحیت|کاروبار کی ضرورت|وِیژگی|रूप लेख|ਖਾਸੀਅਤ|ਨਕਸ਼ ਨੁਹਾਰ|ਮੁਹਾਂਦਰਾ|గుణము|ಹೆಚ್ಚಳ|ความต้องการทางธุรกิจ|ความสามารถ|โครงหลัก|기능|フィーチャ|功能|機能):([^:]+(?:\r?\n|\r|$))*/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'important': {
|
|
||||||
pattern: /(:)[^\r\n]+/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
keyword: /[^:\r\n]+:/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'scenario': {
|
|
||||||
pattern: /((^|\r?\n|\r)[ \t]*)(Abstract Scenario|Abstrakt Scenario|Achtergrond|Aer|Ær|Agtergrond|All y'all|Antecedentes|Antecedents|Atburðarás|Atburðarásir|Awww, look mate|B4|Background|Baggrund|Bakgrund|Bakgrunn|Bakgrunnur|Beispiele|Beispiller|Bối cảnh|Cefndir|Cenario|Cenário|Cenario de Fundo|Cenário de Fundo|Cenarios|Cenários|Contesto|Context|Contexte|Contexto|Conto|Contoh|Contone|Dæmi|Dasar|Dead men tell no tales|Delineacao do Cenario|Delineação do Cenário|Dis is what went down|Dữ liệu|Dyagram senaryo|Dyagram Senaryo|Egzanp|Ejemplos|Eksempler|Ekzemploj|Enghreifftiau|Esbozo do escenario|Escenari|Escenario|Esempi|Esquema de l'escenari|Esquema del escenario|Esquema do Cenario|Esquema do Cenário|Examples|EXAMPLZ|Exempel|Exemple|Exemples|Exemplos|First off|Fono|Forgatókönyv|Forgatókönyv vázlat|Fundo|Geçmiş|ghantoH|Grundlage|Hannergrond|Háttér|Heave to|Istorik|Juhtumid|Keadaan|Khung kịch bản|Khung tình huống|Kịch bản|Koncept|Konsep skenario|Kontèks|Kontekst|Kontekstas|Konteksts|Kontext|Konturo de la scenaro|Latar Belakang|lut|lut chovnatlh|lutmey|Lýsing Atburðarásar|Lýsing Dæma|Menggariskan Senario|MISHUN|MISHUN SRSLY|mo'|Náčrt Scenára|Náčrt Scénáře|Náčrt Scenáru|Oris scenarija|Örnekler|Osnova|Osnova Scenára|Osnova scénáře|Osnutek|Ozadje|Paraugs|Pavyzdžiai|Példák|Piemēri|Plan du scénario|Plan du Scénario|Plan senaryo|Plan Senaryo|Plang vum Szenario|Pozadí|Pozadie|Pozadina|Príklady|Příklady|Primer|Primeri|Primjeri|Przykłady|Raamstsenaarium|Reckon it's like|Rerefons|Scenár|Scénář|Scenarie|Scenarij|Scenarijai|Scenarijaus šablonas|Scenariji|Scenārijs|Scenārijs pēc parauga|Scenarijus|Scenario|Scénario|Scenario Amlinellol|Scenario Outline|Scenario Template|Scenariomal|Scenariomall|Scenarios|Scenariu|Scenariusz|Scenaro|Schema dello scenario|Se ðe|Se the|Se þe|Senario|Senaryo|Senaryo deskripsyon|Senaryo Deskripsyon|Senaryo taslağı|Shiver me timbers|Situācija|Situai|Situasie|Situasie Uiteensetting|Skenario|Skenario konsep|Skica|Structura scenariu|Structură scenariu|Struktura scenarija|Stsenaarium|Swa|Swa hwaer swa|Swa hwær swa|Szablon scenariusza|Szenario|Szenariogrundriss|Tapaukset|Tapaus|Tapausaihio|Taust|Tausta|Template Keadaan|Template Senario|Template Situai|The thing of it is|Tình huống|Variantai|Voorbeelde|Voorbeelden|Wharrimean is|Yo\-ho\-ho|You'll wanna|Założenia|Παραδείγματα|Περιγραφή Σεναρίου|Σενάρια|Σενάριο|Υπόβαθρο|Кереш|Контекст|Концепт|Мисаллар|Мисоллар|Основа|Передумова|Позадина|Предистория|Предыстория|Приклади|Пример|Примери|Примеры|Рамка на сценарий|Скица|Структура сценарија|Структура сценария|Структура сценарію|Сценарий|Сценарий структураси|Сценарийның төзелеше|Сценарији|Сценарио|Сценарій|Тарих|Үрнәкләр|דוגמאות|רקע|תבנית תרחיש|תרחיש|الخلفية|الگوی سناریو|امثلة|پس منظر|زمینه|سناریو|سيناريو|سيناريو مخطط|مثالیں|منظر نامے کا خاکہ|منظرنامہ|نمونه ها|उदाहरण|परिदृश्य|परिदृश्य रूपरेखा|पृष्ठभूमि|ਉਦਾਹਰਨਾਂ|ਪਟਕਥਾ|ਪਟਕਥਾ ਢਾਂਚਾ|ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ|ਪਿਛੋਕੜ|ఉదాహరణలు|కథనం|నేపథ్యం|సన్నివేశం|ಉದಾಹರಣೆಗಳು|ಕಥಾಸಾರಾಂಶ|ವಿವರಣೆ|ಹಿನ್ನೆಲೆ|โครงสร้างของเหตุการณ์|ชุดของตัวอย่าง|ชุดของเหตุการณ์|แนวคิด|สรุปเหตุการณ์|เหตุการณ์|배경|시나리오|시나리오 개요|예|サンプル|シナリオ|シナリオアウトライン|シナリオテンプレ|シナリオテンプレート|テンプレ|例|例子|剧本|剧本大纲|劇本|劇本大綱|场景|场景大纲|場景|場景大綱|背景):[^:\r\n]*/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'important': {
|
|
||||||
pattern: /(:)[^\r\n]*/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
keyword: /[^:\r\n]+:/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'table-body': {
|
|
||||||
pattern: /((?:\r?\n|\r)[ \t]*\|.+\|[^\r\n]*)+/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'outline': {
|
|
||||||
pattern: /<[^>]+?>/,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'td': {
|
|
||||||
pattern: /\s*[^\s|][^|]*/,
|
|
||||||
alias: 'string'
|
|
||||||
},
|
|
||||||
'punctuation': /\|/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'table-head': {
|
|
||||||
pattern: /((?:\r?\n|\r)[ \t]*\|.+\|[^\r\n]*)/,
|
|
||||||
inside: {
|
|
||||||
'th': {
|
|
||||||
pattern: /\s*[^\s|][^|]*/,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'punctuation': /\|/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'atrule': {
|
|
||||||
pattern: /((?:\r?\n|\r)[ \t]+)('ach|'a|'ej|7|a|A také|A taktiež|A tiež|A zároveň|Aber|Ac|Adott|Akkor|Ak|Aleshores|Ale|Ali|Allora|Alors|Als|Ama|Amennyiben|Amikor|Ampak|an|AN|Ananging|And y'all|And|Angenommen|Anrhegedig a|An|Apabila|Atès|Atesa|Atunci|Avast!|Aye|A|awer|Bagi|Banjur|Bet|Biết|Blimey!|Buh|But at the end of the day I reckon|But y'all|But|BUT|Cal|Când|Cando|Cand|Ce|Cuando|Če|Ða ðe|Ða|Dadas|Dada|Dados|Dado|DaH ghu' bejlu'|dann|Dann|Dano|Dan|Dar|Dat fiind|Data|Date fiind|Date|Dati fiind|Dati|Daţi fiind|Dați fiind|Dato|DEN|Den youse gotta|Dengan|De|Diberi|Diyelim ki|Donada|Donat|Donitaĵo|Do|Dun|Duota|Ðurh|Eeldades|Ef|Eğer ki|Entao|Então|Entón|Entonces|En|Epi|E|És|Etant donnée|Etant donné|Et|Étant données|Étant donnée|Étant donné|Etant données|Etant donnés|Étant donnés|Fakat|Gangway!|Gdy|Gegeben seien|Gegeben sei|Gegeven|Gegewe|ghu' noblu'|Gitt|Given y'all|Given|Givet|Givun|Ha|Cho|I CAN HAZ|In|Ir|It's just unbelievable|I|Ja|Jeśli|Jeżeli|Kadar|Kada|Kad|Kai|Kaj|Když|Keď|Kemudian|Ketika|Khi|Kiedy|Ko|Kuid|Kui|Kun|Lan|latlh|Le sa a|Let go and haul|Le|Lè sa a|Lè|Logo|Lorsqu'<|Lorsque|mä|Maar|Mais|Mając|Majd|Maka|Manawa|Mas|Ma|Menawa|Men|Mutta|Nalikaning|Nalika|Nanging|Når|När|Nato|Nhưng|Niin|Njuk|O zaman|Og|Och|Oletetaan|Onda|Ond|Oraz|Pak|Pero|Però|Podano|Pokiaľ|Pokud|Potem|Potom|Privzeto|Pryd|qaSDI'|Quando|Quand|Quan|Så|Sed|Se|Siis|Sipoze ke|Sipoze Ke|Sipoze|Si|Şi|Și|Soit|Stel|Tada|Tad|Takrat|Tak|Tapi|Ter|Tetapi|Tha the|Tha|Then y'all|Then|Thì|Thurh|Toda|Too right|ugeholl|Und|Un|Và|vaj|Vendar|Ve|wann|Wanneer|WEN|Wenn|When y'all|When|Wtedy|Wun|Y'know|Yeah nah|Yna|Youse know like when|Youse know when youse got|Y|Za predpokladu|Za předpokladu|Zadani|Zadano|Zadan|Zadate|Zadato|Zakładając|Zaradi|Zatati|Þa þe|Þa|Þá|Þegar|Þurh|Αλλά|Δεδομένου|Και|Όταν|Τότε|А також|Агар|Але|Али|Аммо|А|Әгәр|Әйтик|Әмма|Бирок|Ва|Вә|Дадено|Дано|Допустим|Если|Задате|Задати|Задато|И|І|К тому же|Када|Кад|Когато|Когда|Коли|Ләкин|Лекин|Нәтиҗәдә|Нехай|Но|Онда|Припустимо, що|Припустимо|Пусть|Также|Та|Тогда|Тоді|То|Унда|Һәм|Якщо|אבל|אזי|אז|בהינתן|וגם|כאשר|آنگاه|اذاً|اگر|اما|اور|با فرض|بالفرض|بفرض|پھر|تب|ثم|جب|عندما|فرض کیا|لكن|لیکن|متى|هنگامی|و|अगर|और|कदा|किन्तु|चूंकि|जब|तथा|तदा|तब|परन्तु|पर|यदि|ਅਤੇ|ਜਦੋਂ|ਜਿਵੇਂ ਕਿ|ਜੇਕਰ|ਤਦ|ਪਰ|అప్పుడు|ఈ పరిస్థితిలో|కాని|చెప్పబడినది|మరియు|ಆದರೆ|ನಂತರ|ನೀಡಿದ|ಮತ್ತು|ಸ್ಥಿತಿಯನ್ನು|กำหนดให้|ดังนั้น|แต่|เมื่อ|และ|그러면<|그리고<|단<|만약<|만일<|먼저<|조건<|하지만<|かつ<|しかし<|ただし<|ならば<|もし<|並且<|但し<|但是<|假如<|假定<|假設<|假设<|前提<|同时<|同時<|并且<|当<|當<|而且<|那么<|那麼<)(?=[ \t]+)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'string': {
|
|
||||||
pattern: /("(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*')/,
|
|
||||||
inside: {
|
|
||||||
'outline': {
|
|
||||||
pattern: /<[^>]+?>/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'outline': {
|
|
||||||
pattern: /<[^>]+?>/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
};
|
|
File diff suppressed because one or more lines are too long
|
@ -1,68 +0,0 @@
|
||||||
Prism.languages.git = {
|
|
||||||
/*
|
|
||||||
* A simple one line comment like in a git status command
|
|
||||||
* For instance:
|
|
||||||
* $ git status
|
|
||||||
* # On branch infinite-scroll
|
|
||||||
* # Your branch and 'origin/sharedBranches/frontendTeam/infinite-scroll' have diverged,
|
|
||||||
* # and have 1 and 2 different commits each, respectively.
|
|
||||||
* nothing to commit (working directory clean)
|
|
||||||
*/
|
|
||||||
'comment': /^#.*/m,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Regexp to match the changed lines in a git diff output. Check the example below.
|
|
||||||
*/
|
|
||||||
'deleted': /^[-–].*/m,
|
|
||||||
'inserted': /^\+.*/m,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* a string (double and simple quote)
|
|
||||||
*/
|
|
||||||
'string': /("|')(\\?.)*?\1/m,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* a git command. It starts with a random prompt finishing by a $, then "git" then some other parameters
|
|
||||||
* For instance:
|
|
||||||
* $ git add file.txt
|
|
||||||
*/
|
|
||||||
'command': {
|
|
||||||
pattern: /^.*\$ git .*$/m,
|
|
||||||
inside: {
|
|
||||||
/*
|
|
||||||
* A git command can contain a parameter starting by a single or a double dash followed by a string
|
|
||||||
* For instance:
|
|
||||||
* $ git diff --cached
|
|
||||||
* $ git log -p
|
|
||||||
*/
|
|
||||||
'parameter': /\s(--|-)\w+/m
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Coordinates displayed in a git diff command
|
|
||||||
* For instance:
|
|
||||||
* $ git diff
|
|
||||||
* diff --git file.txt file.txt
|
|
||||||
* index 6214953..1d54a52 100644
|
|
||||||
* --- file.txt
|
|
||||||
* +++ file.txt
|
|
||||||
* @@ -1 +1,2 @@
|
|
||||||
* -Here's my tetx file
|
|
||||||
* +Here's my text file
|
|
||||||
* +And this is the second line
|
|
||||||
*/
|
|
||||||
'coord': /^@@.*@@$/m,
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Match a "commit [SHA1]" line in a git log output.
|
|
||||||
* For instance:
|
|
||||||
* $ git log
|
|
||||||
* commit a11a14ef7e26f2ca62d4b35eac455ce636d0dc09
|
|
||||||
* Author: lgiraudel
|
|
||||||
* Date: Mon Feb 17 11:18:34 2014 +0100
|
|
||||||
*
|
|
||||||
* Add of a new line
|
|
||||||
*/
|
|
||||||
'commit_sha1': /^commit \w{40}$/m
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(\\?.)*?\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s(--|-)\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m};
|
|
|
@ -1,16 +0,0 @@
|
||||||
Prism.languages.glsl = Prism.languages.extend('clike', {
|
|
||||||
'comment': [
|
|
||||||
/\/\*[\w\W]*?\*\//,
|
|
||||||
/\/\/(?:\\(?:\r\n|[\s\S])|.)*/
|
|
||||||
],
|
|
||||||
'number': /\b(?:0x[\da-f]+|(?:\.\d+|\d+\.?\d*)(?:e[+-]?\d+)?)[ulf]*\b/i,
|
|
||||||
'keyword': /\b(?:attribute|const|uniform|varying|buffer|shared|coherent|volatile|restrict|readonly|writeonly|atomic_uint|layout|centroid|flat|smooth|noperspective|patch|sample|break|continue|do|for|while|switch|case|default|if|else|subroutine|in|out|inout|float|double|int|void|bool|true|false|invariant|precise|discard|return|d?mat[234](?:x[234])?|[ibdu]?vec[234]|uint|lowp|mediump|highp|precision|[iu]?sampler[123]D|[iu]?samplerCube|sampler[12]DShadow|samplerCubeShadow|[iu]?sampler[12]DArray|sampler[12]DArrayShadow|[iu]?sampler2DRect|sampler2DRectShadow|[iu]?samplerBuffer|[iu]?sampler2DMS(?:Array)?|[iu]?samplerCubeArray|samplerCubeArrayShadow|[iu]?image[123]D|[iu]?image2DRect|[iu]?imageCube|[iu]?imageBuffer|[iu]?image[12]DArray|[iu]?imageCubeArray|[iu]?image2DMS(?:Array)?|struct|common|partition|active|asm|class|union|enum|typedef|template|this|resource|goto|inline|noinline|public|static|extern|external|interface|long|short|half|fixed|unsigned|superp|input|output|hvec[234]|fvec[234]|sampler3DRect|filter|sizeof|cast|namespace|using)\b/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('glsl', 'comment', {
|
|
||||||
'preprocessor': {
|
|
||||||
pattern: /(^[ \t]*)#(?:(?:define|undef|if|ifdef|ifndef|else|elif|endif|error|pragma|extension|version|line)\b)?/m,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'builtin'
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.glsl=Prism.languages.extend("clike",{comment:[/\/\*[\w\W]*?\*\//,/\/\/(?:\\(?:\r\n|[\s\S])|.)*/],number:/\b(?:0x[\da-f]+|(?:\.\d+|\d+\.?\d*)(?:e[+-]?\d+)?)[ulf]*\b/i,keyword:/\b(?:attribute|const|uniform|varying|buffer|shared|coherent|volatile|restrict|readonly|writeonly|atomic_uint|layout|centroid|flat|smooth|noperspective|patch|sample|break|continue|do|for|while|switch|case|default|if|else|subroutine|in|out|inout|float|double|int|void|bool|true|false|invariant|precise|discard|return|d?mat[234](?:x[234])?|[ibdu]?vec[234]|uint|lowp|mediump|highp|precision|[iu]?sampler[123]D|[iu]?samplerCube|sampler[12]DShadow|samplerCubeShadow|[iu]?sampler[12]DArray|sampler[12]DArrayShadow|[iu]?sampler2DRect|sampler2DRectShadow|[iu]?samplerBuffer|[iu]?sampler2DMS(?:Array)?|[iu]?samplerCubeArray|samplerCubeArrayShadow|[iu]?image[123]D|[iu]?image2DRect|[iu]?imageCube|[iu]?imageBuffer|[iu]?image[12]DArray|[iu]?imageCubeArray|[iu]?image2DMS(?:Array)?|struct|common|partition|active|asm|class|union|enum|typedef|template|this|resource|goto|inline|noinline|public|static|extern|external|interface|long|short|half|fixed|unsigned|superp|input|output|hvec[234]|fvec[234]|sampler3DRect|filter|sizeof|cast|namespace|using)\b/}),Prism.languages.insertBefore("glsl","comment",{preprocessor:{pattern:/(^[ \t]*)#(?:(?:define|undef|if|ifdef|ifndef|else|elif|endif|error|pragma|extension|version|line)\b)?/m,lookbehind:!0,alias:"builtin"}});
|
|
|
@ -1,9 +0,0 @@
|
||||||
Prism.languages.go = Prism.languages.extend('clike', {
|
|
||||||
'keyword': /\b(break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,
|
|
||||||
'builtin': /\b(bool|byte|complex(64|128)|error|float(32|64)|rune|string|u?int(8|16|32|64|)|uintptr|append|cap|close|complex|copy|delete|imag|len|make|new|panic|print(ln)?|real|recover)\b/,
|
|
||||||
'boolean': /\b(_|iota|nil|true|false)\b/,
|
|
||||||
'operator': /[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,
|
|
||||||
'number': /\b(-?(0x[a-f\d]+|(\d+\.?\d*|\.\d+)(e[-+]?\d+)?)i?)\b/i,
|
|
||||||
'string': /("|'|`)(\\?.|\r|\n)*?\1/
|
|
||||||
});
|
|
||||||
delete Prism.languages.go['class-name'];
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.go=Prism.languages.extend("clike",{keyword:/\b(break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,builtin:/\b(bool|byte|complex(64|128)|error|float(32|64)|rune|string|u?int(8|16|32|64|)|uintptr|append|cap|close|complex|copy|delete|imag|len|make|new|panic|print(ln)?|real|recover)\b/,"boolean":/\b(_|iota|nil|true|false)\b/,operator:/[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,number:/\b(-?(0x[a-f\d]+|(\d+\.?\d*|\.\d+)(e[-+]?\d+)?)i?)\b/i,string:/("|'|`)(\\?.|\r|\n)*?\1/}),delete Prism.languages.go["class-name"];
|
|
|
@ -1,51 +0,0 @@
|
||||||
Prism.languages.groovy = Prism.languages.extend('clike', {
|
|
||||||
'keyword': /\b(as|def|in|abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|native|new|package|private|protected|public|return|short|static|strictfp|super|switch|synchronized|this|throw|throws|trait|transient|try|void|volatile|while)\b/,
|
|
||||||
'string': /("""|''')[\W\w]*?\1|("|'|\/)(?:\\?.)*?\2|(\$\/)(\$\/\$|[\W\w])*?\/\$/,
|
|
||||||
'number': /\b(?:0b[01_]+|0x[\da-f_]+(?:\.[\da-f_p\-]+)?|[\d_]+(?:\.[\d_]+)?(?:e[+-]?[\d]+)?)[glidf]?\b/i,
|
|
||||||
'operator': {
|
|
||||||
pattern: /(^|[^.])(~|==?~?|\?[.:]?|\*(?:[.=]|\*=?)?|\.[@&]|\.\.<|\.{1,2}(?!\.)|-[-=>]?|\+[+=]?|!=?|<(?:<=?|=>?)?|>(?:>>?=?|=)?|&[&=]?|\|[|=]?|\/=?|\^=?|%=?)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'punctuation': /\.+|[{}[\];(),:$]/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('groovy', 'string', {
|
|
||||||
'shebang': {
|
|
||||||
pattern: /#!.+/,
|
|
||||||
alias: 'comment'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('groovy', 'punctuation', {
|
|
||||||
'spock-block': /\b(setup|given|when|then|and|cleanup|expect|where):/
|
|
||||||
});
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('groovy', 'function', {
|
|
||||||
'annotation': {
|
|
||||||
pattern: /(^|[^.])@\w+/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Handle string interpolation
|
|
||||||
Prism.hooks.add('wrap', function(env) {
|
|
||||||
if (env.language === 'groovy' && env.type === 'string') {
|
|
||||||
var delimiter = env.content[0];
|
|
||||||
|
|
||||||
if (delimiter != "'") {
|
|
||||||
var pattern = /([^\\])(\$(\{.*?\}|[\w\.]+))/;
|
|
||||||
if (delimiter === '$') {
|
|
||||||
pattern = /([^\$])(\$(\{.*?\}|[\w\.]+))/;
|
|
||||||
}
|
|
||||||
env.content = Prism.highlight(env.content, {
|
|
||||||
'expression': {
|
|
||||||
pattern: pattern,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: Prism.languages.groovy
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
env.classes.push(delimiter === '/' ? 'regex' : 'gstring');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.groovy=Prism.languages.extend("clike",{keyword:/\b(as|def|in|abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|native|new|package|private|protected|public|return|short|static|strictfp|super|switch|synchronized|this|throw|throws|trait|transient|try|void|volatile|while)\b/,string:/("""|''')[\W\w]*?\1|("|'|\/)(?:\\?.)*?\2|(\$\/)(\$\/\$|[\W\w])*?\/\$/,number:/\b(?:0b[01_]+|0x[\da-f_]+(?:\.[\da-f_p\-]+)?|[\d_]+(?:\.[\d_]+)?(?:e[+-]?[\d]+)?)[glidf]?\b/i,operator:{pattern:/(^|[^.])(~|==?~?|\?[.:]?|\*(?:[.=]|\*=?)?|\.[@&]|\.\.<|\.{1,2}(?!\.)|-[-=>]?|\+[+=]?|!=?|<(?:<=?|=>?)?|>(?:>>?=?|=)?|&[&=]?|\|[|=]?|\/=?|\^=?|%=?)/,lookbehind:!0},punctuation:/\.+|[{}[\];(),:$]/}),Prism.languages.insertBefore("groovy","string",{shebang:{pattern:/#!.+/,alias:"comment"}}),Prism.languages.insertBefore("groovy","punctuation",{"spock-block":/\b(setup|given|when|then|and|cleanup|expect|where):/}),Prism.languages.insertBefore("groovy","function",{annotation:{pattern:/(^|[^.])@\w+/,lookbehind:!0}}),Prism.hooks.add("wrap",function(e){if("groovy"===e.language&&"string"===e.type){var t=e.content[0];if("'"!=t){var n=/([^\\])(\$(\{.*?\}|[\w\.]+))/;"$"===t&&(n=/([^\$])(\$(\{.*?\}|[\w\.]+))/),e.content=Prism.highlight(e.content,{expression:{pattern:n,lookbehind:!0,inside:Prism.languages.groovy}}),e.classes.push("/"===t?"regex":"gstring")}}});
|
|
|
@ -1,154 +0,0 @@
|
||||||
/* TODO
|
|
||||||
Handle multiline code after tag
|
|
||||||
%foo= some |
|
|
||||||
multiline |
|
|
||||||
code |
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function(Prism) {
|
|
||||||
|
|
||||||
Prism.languages.haml = {
|
|
||||||
// Multiline stuff should appear before the rest
|
|
||||||
|
|
||||||
'multiline-comment': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)([\t ]*))(?:\/|-#).*((?:\r?\n|\r)\2[\t ]+.+)*/,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'comment'
|
|
||||||
},
|
|
||||||
|
|
||||||
'multiline-code': [
|
|
||||||
{
|
|
||||||
pattern: /((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*,[\t ]*((?:\r?\n|\r)\2[\t ]+.*,[\t ]*)*((?:\r?\n|\r)\2[\t ]+.+)/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*\|[\t ]*((?:\r?\n|\r)\2[\t ]+.*\|[\t ]*)*/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
// See at the end of the file for known filters
|
|
||||||
'filter': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)([\t ]*)):[\w-]+((?:\r?\n|\r)(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'filter-name': {
|
|
||||||
pattern: /^:[\w-]+/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
'markup': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)[\t ]*)<.+/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.markup
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'doctype': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)[\t ]*)!!!(?: .+)?/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'tag': {
|
|
||||||
// Allows for one nested group of braces
|
|
||||||
pattern: /((?:^|\r?\n|\r)[\t ]*)[%.#][\w\-#.]*[\w\-](?:\([^)]+\)|\{(?:\{[^}]+\}|[^}])+\}|\[[^\]]+\])*[\/<>]*/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'attributes': [
|
|
||||||
{
|
|
||||||
// Lookbehind tries to prevent interpolations for breaking it all
|
|
||||||
// Allows for one nested group of braces
|
|
||||||
pattern: /(^|[^#])\{(?:\{[^}]+\}|[^}])+\}/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /\([^)]+\)/,
|
|
||||||
inside: {
|
|
||||||
'attr-value': {
|
|
||||||
pattern: /(=\s*)(?:"(?:\\?.)*?"|[^)\s]+)/,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'attr-name': /[\w:-]+(?=\s*!?=|\s*[,)])/,
|
|
||||||
'punctuation': /[=(),]/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pattern: /\[[^\]]+\]/,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
'punctuation': /[<>]/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'code': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)[\t ]*(?:[~-]|[&!]?=)).+/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Interpolations in plain text
|
|
||||||
'interpolation': {
|
|
||||||
pattern: /#\{[^}]+\}/,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern: /^#\{|\}$/,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
rest: Prism.languages.ruby
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'punctuation': {
|
|
||||||
pattern: /((?:^|\r?\n|\r)[\t ]*)[~=\-&!]+/,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
var filter_pattern = '((?:^|\\r?\\n|\\r)([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r)(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+';
|
|
||||||
|
|
||||||
// Non exhaustive list of available filters and associated languages
|
|
||||||
var filters = [
|
|
||||||
'css',
|
|
||||||
{filter:'coffee',language:'coffeescript'},
|
|
||||||
'erb',
|
|
||||||
'javascript',
|
|
||||||
'less',
|
|
||||||
'markdown',
|
|
||||||
'ruby',
|
|
||||||
'scss',
|
|
||||||
'textile'
|
|
||||||
];
|
|
||||||
var all_filters = {};
|
|
||||||
for (var i = 0, l = filters.length; i < l; i++) {
|
|
||||||
var filter = filters[i];
|
|
||||||
filter = typeof filter === 'string' ? {filter: filter, language: filter} : filter;
|
|
||||||
if (Prism.languages[filter.language]) {
|
|
||||||
all_filters['filter-' + filter.filter] = {
|
|
||||||
pattern: RegExp(filter_pattern.replace('{{filter_name}}', filter.filter)),
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'filter-name': {
|
|
||||||
pattern: /^:[\w-]+/,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
rest: Prism.languages[filter.language]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Prism.languages.insertBefore('haml', 'filter', all_filters);
|
|
||||||
|
|
||||||
}(Prism));
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){e.languages.haml={"multiline-comment":{pattern:/((?:^|\r?\n|\r)([\t ]*))(?:\/|-#).*((?:\r?\n|\r)\2[\t ]+.+)*/,lookbehind:!0,alias:"comment"},"multiline-code":[{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*,[\t ]*((?:\r?\n|\r)\2[\t ]+.*,[\t ]*)*((?:\r?\n|\r)\2[\t ]+.+)/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/((?:^|\r?\n|\r)([\t ]*)(?:[~-]|[&!]?=)).*\|[\t ]*((?:\r?\n|\r)\2[\t ]+.*\|[\t ]*)*/,lookbehind:!0,inside:{rest:e.languages.ruby}}],filter:{pattern:/((?:^|\r?\n|\r)([\t ]*)):[\w-]+((?:\r?\n|\r)(?:\2[\t ]+.+|\s*?(?=\r?\n|\r)))+/,lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"}}},markup:{pattern:/((?:^|\r?\n|\r)[\t ]*)<.+/,lookbehind:!0,inside:{rest:e.languages.markup}},doctype:{pattern:/((?:^|\r?\n|\r)[\t ]*)!!!(?: .+)?/,lookbehind:!0},tag:{pattern:/((?:^|\r?\n|\r)[\t ]*)[%.#][\w\-#.]*[\w\-](?:\([^)]+\)|\{(?:\{[^}]+\}|[^}])+\}|\[[^\]]+\])*[\/<>]*/,lookbehind:!0,inside:{attributes:[{pattern:/(^|[^#])\{(?:\{[^}]+\}|[^}])+\}/,lookbehind:!0,inside:{rest:e.languages.ruby}},{pattern:/\([^)]+\)/,inside:{"attr-value":{pattern:/(=\s*)(?:"(?:\\?.)*?"|[^)\s]+)/,lookbehind:!0},"attr-name":/[\w:-]+(?=\s*!?=|\s*[,)])/,punctuation:/[=(),]/}},{pattern:/\[[^\]]+\]/,inside:{rest:e.languages.ruby}}],punctuation:/[<>]/}},code:{pattern:/((?:^|\r?\n|\r)[\t ]*(?:[~-]|[&!]?=)).+/,lookbehind:!0,inside:{rest:e.languages.ruby}},interpolation:{pattern:/#\{[^}]+\}/,inside:{delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"},rest:e.languages.ruby}},punctuation:{pattern:/((?:^|\r?\n|\r)[\t ]*)[~=\-&!]+/,lookbehind:!0}};for(var t="((?:^|\\r?\\n|\\r)([\\t ]*)):{{filter_name}}((?:\\r?\\n|\\r)(?:\\2[\\t ]+.+|\\s*?(?=\\r?\\n|\\r)))+",r=["css",{filter:"coffee",language:"coffeescript"},"erb","javascript","less","markdown","ruby","scss","textile"],n={},a=0,i=r.length;i>a;a++){var l=r[a];l="string"==typeof l?{filter:l,language:l}:l,e.languages[l.language]&&(n["filter-"+l.filter]={pattern:RegExp(t.replace("{{filter_name}}",l.filter)),lookbehind:!0,inside:{"filter-name":{pattern:/^:[\w-]+/,alias:"variable"},rest:e.languages[l.language]}})}e.languages.insertBefore("haml","filter",n)}(Prism);
|
|
|
@ -1,83 +0,0 @@
|
||||||
(function(Prism) {
|
|
||||||
|
|
||||||
var handlebars_pattern = /\{\{\{[\w\W]+?\}\}\}|\{\{[\w\W]+?\}\}/g;
|
|
||||||
|
|
||||||
Prism.languages.handlebars = Prism.languages.extend('markup', {
|
|
||||||
'handlebars': {
|
|
||||||
pattern: handlebars_pattern,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern: /^\{\{\{?|\}\}\}?$/i,
|
|
||||||
alias: 'punctuation'
|
|
||||||
},
|
|
||||||
'string': /(["'])(\\?.)*?\1/,
|
|
||||||
'number': /\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/,
|
|
||||||
'boolean': /\b(true|false)\b/,
|
|
||||||
'block': {
|
|
||||||
pattern: /^(\s*~?\s*)[#\/]\S+?(?=\s*~?\s*$|\s)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
'brackets': {
|
|
||||||
pattern: /\[[^\]]+\]/,
|
|
||||||
inside: {
|
|
||||||
punctuation: /\[|\]/,
|
|
||||||
variable: /[\w\W]+/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'punctuation': /[!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]/,
|
|
||||||
'variable': /[^!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~\s]+/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Comments are inserted at top so that they can
|
|
||||||
// surround markup
|
|
||||||
Prism.languages.insertBefore('handlebars', 'tag', {
|
|
||||||
'handlebars-comment': {
|
|
||||||
pattern: /\{\{![\w\W]*?\}\}/,
|
|
||||||
alias: ['handlebars','comment']
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Tokenize all inline Handlebars expressions that are wrapped in {{ }} or {{{ }}}
|
|
||||||
// This allows for easy Handlebars + markup highlighting
|
|
||||||
Prism.hooks.add('before-highlight', function(env) {
|
|
||||||
if (env.language !== 'handlebars') {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
env.tokenStack = [];
|
|
||||||
|
|
||||||
env.backupCode = env.code;
|
|
||||||
env.code = env.code.replace(handlebars_pattern, function(match) {
|
|
||||||
env.tokenStack.push(match);
|
|
||||||
|
|
||||||
return '___HANDLEBARS' + env.tokenStack.length + '___';
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Restore env.code for other plugins (e.g. line-numbers)
|
|
||||||
Prism.hooks.add('before-insert', function(env) {
|
|
||||||
if (env.language === 'handlebars') {
|
|
||||||
env.code = env.backupCode;
|
|
||||||
delete env.backupCode;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Re-insert the tokens after highlighting
|
|
||||||
// and highlight them with defined grammar
|
|
||||||
Prism.hooks.add('after-highlight', function(env) {
|
|
||||||
if (env.language !== 'handlebars') {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (var i = 0, t; t = env.tokenStack[i]; i++) {
|
|
||||||
// The replace prevents $$, $&, $`, $', $n, $nn from being interpreted as special patterns
|
|
||||||
env.highlightedCode = env.highlightedCode.replace('___HANDLEBARS' + (i + 1) + '___', Prism.highlight(t, env.grammar, 'handlebars').replace(/\$/g, '$$$$'));
|
|
||||||
}
|
|
||||||
|
|
||||||
env.element.innerHTML = env.highlightedCode;
|
|
||||||
});
|
|
||||||
|
|
||||||
}(Prism));
|
|
|
@ -1 +0,0 @@
|
||||||
!function(e){var a=/\{\{\{[\w\W]+?\}\}\}|\{\{[\w\W]+?\}\}/g;e.languages.handlebars=e.languages.extend("markup",{handlebars:{pattern:a,inside:{delimiter:{pattern:/^\{\{\{?|\}\}\}?$/i,alias:"punctuation"},string:/(["'])(\\?.)*?\1/,number:/\b-?(0x[\dA-Fa-f]+|\d*\.?\d+([Ee][+-]?\d+)?)\b/,"boolean":/\b(true|false)\b/,block:{pattern:/^(\s*~?\s*)[#\/]\S+?(?=\s*~?\s*$|\s)/i,lookbehind:!0,alias:"keyword"},brackets:{pattern:/\[[^\]]+\]/,inside:{punctuation:/\[|\]/,variable:/[\w\W]+/}},punctuation:/[!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]/,variable:/[^!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~\s]+/}}}),e.languages.insertBefore("handlebars","tag",{"handlebars-comment":{pattern:/\{\{![\w\W]*?\}\}/,alias:["handlebars","comment"]}}),e.hooks.add("before-highlight",function(e){"handlebars"===e.language&&(e.tokenStack=[],e.backupCode=e.code,e.code=e.code.replace(a,function(a){return e.tokenStack.push(a),"___HANDLEBARS"+e.tokenStack.length+"___"}))}),e.hooks.add("before-insert",function(e){"handlebars"===e.language&&(e.code=e.backupCode,delete e.backupCode)}),e.hooks.add("after-highlight",function(a){if("handlebars"===a.language){for(var n,t=0;n=a.tokenStack[t];t++)a.highlightedCode=a.highlightedCode.replace("___HANDLEBARS"+(t+1)+"___",e.highlight(n,a.grammar,"handlebars").replace(/\$/g,"$$$$"));a.element.innerHTML=a.highlightedCode}})}(Prism);
|
|
|
@ -1,32 +0,0 @@
|
||||||
Prism.languages.haskell= {
|
|
||||||
'comment': {
|
|
||||||
pattern: /(^|[^-!#$%*+=?&@|~.:<>^\\\/])(--[^-!#$%*+=?&@|~.:<>^\\\/].*|{-[\w\W]*?-})/m,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'char': /'([^\\']|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+))'/,
|
|
||||||
'string': /"([^\\"]|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+)|\\\s+\\)*"/,
|
|
||||||
'keyword' : /\b(case|class|data|deriving|do|else|if|in|infixl|infixr|instance|let|module|newtype|of|primitive|then|type|where)\b/,
|
|
||||||
'import_statement' : {
|
|
||||||
// The imported or hidden names are not included in this import
|
|
||||||
// statement. This is because we want to highlight those exactly like
|
|
||||||
// we do for the names in the program.
|
|
||||||
pattern: /(\r?\n|\r|^)\s*import\s+(qualified\s+)?([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*(\s+as\s+([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*)?(\s+hiding\b)?/m,
|
|
||||||
inside: {
|
|
||||||
'keyword': /\b(import|qualified|as|hiding)\b/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// These are builtin variables only. Constructors are highlighted later as a constant.
|
|
||||||
'builtin': /\b(abs|acos|acosh|all|and|any|appendFile|approxRational|asTypeOf|asin|asinh|atan|atan2|atanh|basicIORun|break|catch|ceiling|chr|compare|concat|concatMap|const|cos|cosh|curry|cycle|decodeFloat|denominator|digitToInt|div|divMod|drop|dropWhile|either|elem|encodeFloat|enumFrom|enumFromThen|enumFromThenTo|enumFromTo|error|even|exp|exponent|fail|filter|flip|floatDigits|floatRadix|floatRange|floor|fmap|foldl|foldl1|foldr|foldr1|fromDouble|fromEnum|fromInt|fromInteger|fromIntegral|fromRational|fst|gcd|getChar|getContents|getLine|group|head|id|inRange|index|init|intToDigit|interact|ioError|isAlpha|isAlphaNum|isAscii|isControl|isDenormalized|isDigit|isHexDigit|isIEEE|isInfinite|isLower|isNaN|isNegativeZero|isOctDigit|isPrint|isSpace|isUpper|iterate|last|lcm|length|lex|lexDigits|lexLitChar|lines|log|logBase|lookup|map|mapM|mapM_|max|maxBound|maximum|maybe|min|minBound|minimum|mod|negate|not|notElem|null|numerator|odd|or|ord|otherwise|pack|pi|pred|primExitWith|print|product|properFraction|putChar|putStr|putStrLn|quot|quotRem|range|rangeSize|read|readDec|readFile|readFloat|readHex|readIO|readInt|readList|readLitChar|readLn|readOct|readParen|readSigned|reads|readsPrec|realToFrac|recip|rem|repeat|replicate|return|reverse|round|scaleFloat|scanl|scanl1|scanr|scanr1|seq|sequence|sequence_|show|showChar|showInt|showList|showLitChar|showParen|showSigned|showString|shows|showsPrec|significand|signum|sin|sinh|snd|sort|span|splitAt|sqrt|subtract|succ|sum|tail|take|takeWhile|tan|tanh|threadToIOResult|toEnum|toInt|toInteger|toLower|toRational|toUpper|truncate|uncurry|undefined|unlines|until|unwords|unzip|unzip3|userError|words|writeFile|zip|zip3|zipWith|zipWith3)\b/,
|
|
||||||
// decimal integers and floating point numbers | octal integers | hexadecimal integers
|
|
||||||
'number' : /\b(\d+(\.\d+)?(e[+-]?\d+)?|0o[0-7]+|0x[0-9a-f]+)\b/i,
|
|
||||||
// Most of this is needed because of the meaning of a single '.'.
|
|
||||||
// If it stands alone freely, it is the function composition.
|
|
||||||
// It may also be a separator between a module name and an identifier => no
|
|
||||||
// operator. If it comes together with other special characters it is an
|
|
||||||
// operator too.
|
|
||||||
'operator' : /\s\.\s|[-!#$%*+=?&@|~.:<>^\\\/]*\.[-!#$%*+=?&@|~.:<>^\\\/]+|[-!#$%*+=?&@|~.:<>^\\\/]+\.[-!#$%*+=?&@|~.:<>^\\\/]*|[-!#$%*+=?&@|~:<>^\\\/]+|`([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*`/,
|
|
||||||
// In Haskell, nearly everything is a variable, do not highlight these.
|
|
||||||
'hvariable': /\b([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*\b/,
|
|
||||||
'constant': /\b([A-Z][_a-zA-Z0-9']*\.)*[A-Z][_a-zA-Z0-9']*\b/,
|
|
||||||
'punctuation' : /[{}[\];(),.:]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.haskell={comment:{pattern:/(^|[^-!#$%*+=?&@|~.:<>^\\\/])(--[^-!#$%*+=?&@|~.:<>^\\\/].*|{-[\w\W]*?-})/m,lookbehind:!0},"char":/'([^\\']|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+))'/,string:/"([^\\"]|\\([abfnrtv\\"'&]|\^[A-Z@[\]\^_]|NUL|SOH|STX|ETX|EOT|ENQ|ACK|BEL|BS|HT|LF|VT|FF|CR|SO|SI|DLE|DC1|DC2|DC3|DC4|NAK|SYN|ETB|CAN|EM|SUB|ESC|FS|GS|RS|US|SP|DEL|\d+|o[0-7]+|x[0-9a-fA-F]+)|\\\s+\\)*"/,keyword:/\b(case|class|data|deriving|do|else|if|in|infixl|infixr|instance|let|module|newtype|of|primitive|then|type|where)\b/,import_statement:{pattern:/(\r?\n|\r|^)\s*import\s+(qualified\s+)?([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*(\s+as\s+([A-Z][_a-zA-Z0-9']*)(\.[A-Z][_a-zA-Z0-9']*)*)?(\s+hiding\b)?/m,inside:{keyword:/\b(import|qualified|as|hiding)\b/}},builtin:/\b(abs|acos|acosh|all|and|any|appendFile|approxRational|asTypeOf|asin|asinh|atan|atan2|atanh|basicIORun|break|catch|ceiling|chr|compare|concat|concatMap|const|cos|cosh|curry|cycle|decodeFloat|denominator|digitToInt|div|divMod|drop|dropWhile|either|elem|encodeFloat|enumFrom|enumFromThen|enumFromThenTo|enumFromTo|error|even|exp|exponent|fail|filter|flip|floatDigits|floatRadix|floatRange|floor|fmap|foldl|foldl1|foldr|foldr1|fromDouble|fromEnum|fromInt|fromInteger|fromIntegral|fromRational|fst|gcd|getChar|getContents|getLine|group|head|id|inRange|index|init|intToDigit|interact|ioError|isAlpha|isAlphaNum|isAscii|isControl|isDenormalized|isDigit|isHexDigit|isIEEE|isInfinite|isLower|isNaN|isNegativeZero|isOctDigit|isPrint|isSpace|isUpper|iterate|last|lcm|length|lex|lexDigits|lexLitChar|lines|log|logBase|lookup|map|mapM|mapM_|max|maxBound|maximum|maybe|min|minBound|minimum|mod|negate|not|notElem|null|numerator|odd|or|ord|otherwise|pack|pi|pred|primExitWith|print|product|properFraction|putChar|putStr|putStrLn|quot|quotRem|range|rangeSize|read|readDec|readFile|readFloat|readHex|readIO|readInt|readList|readLitChar|readLn|readOct|readParen|readSigned|reads|readsPrec|realToFrac|recip|rem|repeat|replicate|return|reverse|round|scaleFloat|scanl|scanl1|scanr|scanr1|seq|sequence|sequence_|show|showChar|showInt|showList|showLitChar|showParen|showSigned|showString|shows|showsPrec|significand|signum|sin|sinh|snd|sort|span|splitAt|sqrt|subtract|succ|sum|tail|take|takeWhile|tan|tanh|threadToIOResult|toEnum|toInt|toInteger|toLower|toRational|toUpper|truncate|uncurry|undefined|unlines|until|unwords|unzip|unzip3|userError|words|writeFile|zip|zip3|zipWith|zipWith3)\b/,number:/\b(\d+(\.\d+)?(e[+-]?\d+)?|0o[0-7]+|0x[0-9a-f]+)\b/i,operator:/\s\.\s|[-!#$%*+=?&@|~.:<>^\\\/]*\.[-!#$%*+=?&@|~.:<>^\\\/]+|[-!#$%*+=?&@|~.:<>^\\\/]+\.[-!#$%*+=?&@|~.:<>^\\\/]*|[-!#$%*+=?&@|~:<>^\\\/]+|`([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*`/,hvariable:/\b([A-Z][_a-zA-Z0-9']*\.)*[_a-z][_a-zA-Z0-9']*\b/,constant:/\b([A-Z][_a-zA-Z0-9']*\.)*[A-Z][_a-zA-Z0-9']*\b/,punctuation:/[{}[\];(),.:]/};
|
|
|
@ -1,43 +0,0 @@
|
||||||
Prism.languages.haxe = Prism.languages.extend('clike', {
|
|
||||||
// Strings can be multi-line
|
|
||||||
'string': {
|
|
||||||
pattern: /(["'])(?:(?!\1)[^\\]|\\[\s\S])*\1/,
|
|
||||||
inside: {
|
|
||||||
'interpolation': {
|
|
||||||
pattern: /(^|[^\\])\$(?:\w+|\{[^}]+\})/,
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
'interpolation': {
|
|
||||||
pattern: /^\$\w*/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// The final look-ahead prevents highlighting of keywords if expressions such as "haxe.macro.Expr"
|
|
||||||
'keyword': /\bthis\b|\b(?:abstract|as|break|case|cast|catch|class|continue|default|do|dynamic|else|enum|extends|extern|from|for|function|if|implements|import|in|inline|interface|macro|new|null|override|public|private|return|static|super|switch|throw|to|try|typedef|using|var|while)(?!\.)\b/,
|
|
||||||
'operator': /\.{3}|\+\+?|-[->]?|[=!]=?|&&?|\|\|?|<[<=]?|>[>=]?|[*\/%~^]/
|
|
||||||
});
|
|
||||||
Prism.languages.insertBefore('haxe', 'class-name', {
|
|
||||||
'regex': {
|
|
||||||
pattern: /~\/(?:[^\/\\\r\n]|\\.)+\/[igmsu]*/
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Prism.languages.insertBefore('haxe', 'keyword', {
|
|
||||||
'preprocessor': {
|
|
||||||
pattern: /#\w+/,
|
|
||||||
alias: 'builtin'
|
|
||||||
},
|
|
||||||
'metadata': {
|
|
||||||
pattern: /@:?\w+/,
|
|
||||||
alias: 'symbol'
|
|
||||||
},
|
|
||||||
'reification': {
|
|
||||||
pattern: /\$(?:\w+|(?=\{))/,
|
|
||||||
alias: 'variable'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Prism.languages.haxe['string'].inside['interpolation'].inside.rest = Prism.util.clone(Prism.languages.haxe);
|
|
||||||
delete Prism.languages.haxe['class-name'];
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.haxe=Prism.languages.extend("clike",{string:{pattern:/(["'])(?:(?!\1)[^\\]|\\[\s\S])*\1/,inside:{interpolation:{pattern:/(^|[^\\])\$(?:\w+|\{[^}]+\})/,lookbehind:!0,inside:{interpolation:{pattern:/^\$\w*/,alias:"variable"}}}}},keyword:/\bthis\b|\b(?:abstract|as|break|case|cast|catch|class|continue|default|do|dynamic|else|enum|extends|extern|from|for|function|if|implements|import|in|inline|interface|macro|new|null|override|public|private|return|static|super|switch|throw|to|try|typedef|using|var|while)(?!\.)\b/,operator:/\.{3}|\+\+?|-[->]?|[=!]=?|&&?|\|\|?|<[<=]?|>[>=]?|[*\/%~^]/}),Prism.languages.insertBefore("haxe","class-name",{regex:{pattern:/~\/(?:[^\/\\\r\n]|\\.)+\/[igmsu]*/}}),Prism.languages.insertBefore("haxe","keyword",{preprocessor:{pattern:/#\w+/,alias:"builtin"},metadata:{pattern:/@:?\w+/,alias:"symbol"},reification:{pattern:/\$(?:\w+|(?=\{))/,alias:"variable"}}),Prism.languages.haxe.string.inside.interpolation.inside.rest=Prism.util.clone(Prism.languages.haxe),delete Prism.languages.haxe["class-name"];
|
|
|
@ -1,50 +0,0 @@
|
||||||
Prism.languages.http = {
|
|
||||||
'request-line': {
|
|
||||||
pattern: /^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b\shttps?:\/\/\S+\sHTTP\/[0-9.]+/m,
|
|
||||||
inside: {
|
|
||||||
// HTTP Verb
|
|
||||||
property: /^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,
|
|
||||||
// Path or query argument
|
|
||||||
'attr-name': /:\w+/
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'response-status': {
|
|
||||||
pattern: /^HTTP\/1.[01] [0-9]+.*/m,
|
|
||||||
inside: {
|
|
||||||
// Status, e.g. 200 OK
|
|
||||||
property: {
|
|
||||||
pattern: /(^HTTP\/1.[01] )[0-9]+.*/i,
|
|
||||||
lookbehind: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// HTTP header name
|
|
||||||
'header-name': {
|
|
||||||
pattern: /^[\w-]+:(?=.)/m,
|
|
||||||
alias: 'keyword'
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create a mapping of Content-Type headers to language definitions
|
|
||||||
var httpLanguages = {
|
|
||||||
'application/json': Prism.languages.javascript,
|
|
||||||
'application/xml': Prism.languages.markup,
|
|
||||||
'text/xml': Prism.languages.markup,
|
|
||||||
'text/html': Prism.languages.markup
|
|
||||||
};
|
|
||||||
|
|
||||||
// Insert each content type parser that has its associated language
|
|
||||||
// currently loaded.
|
|
||||||
for (var contentType in httpLanguages) {
|
|
||||||
if (httpLanguages[contentType]) {
|
|
||||||
var options = {};
|
|
||||||
options[contentType] = {
|
|
||||||
pattern: new RegExp('(content-type:\\s*' + contentType + '[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*', 'i'),
|
|
||||||
lookbehind: true,
|
|
||||||
inside: {
|
|
||||||
rest: httpLanguages[contentType]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
Prism.languages.insertBefore('http', 'header-name', options);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.http={"request-line":{pattern:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b\shttps?:\/\/\S+\sHTTP\/[0-9.]+/m,inside:{property:/^(POST|GET|PUT|DELETE|OPTIONS|PATCH|TRACE|CONNECT)\b/,"attr-name":/:\w+/}},"response-status":{pattern:/^HTTP\/1.[01] [0-9]+.*/m,inside:{property:{pattern:/(^HTTP\/1.[01] )[0-9]+.*/i,lookbehind:!0}}},"header-name":{pattern:/^[\w-]+:(?=.)/m,alias:"keyword"}};var httpLanguages={"application/json":Prism.languages.javascript,"application/xml":Prism.languages.markup,"text/xml":Prism.languages.markup,"text/html":Prism.languages.markup};for(var contentType in httpLanguages)if(httpLanguages[contentType]){var options={};options[contentType]={pattern:new RegExp("(content-type:\\s*"+contentType+"[\\w\\W]*?)(?:\\r?\\n|\\r){2}[\\w\\W]*","i"),lookbehind:!0,inside:{rest:httpLanguages[contentType]}},Prism.languages.insertBefore("http","header-name",options)}
|
|
|
@ -1,17 +0,0 @@
|
||||||
Prism.languages.icon = {
|
|
||||||
'comment': /#.*/,
|
|
||||||
'string': /(["'])(?:(?!\1)[^\\\r\n]|\\.|_(?:\r?\n|\r))*\1/,
|
|
||||||
'number': /\b(?:\d+r[a-z\d]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b|\.\d+\b/i,
|
|
||||||
'builtin-keyword': {
|
|
||||||
pattern: /&(?:allocated|ascii|clock|collections|cset|current|date|dateline|digits|dump|e|error(?:number|text|value)?|errout|fail|features|file|host|input|lcase|letters|level|line|main|null|output|phi|pi|pos|progname|random|regions|source|storage|subject|time|trace|ucase|version)\b/,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'directive': {
|
|
||||||
pattern: /\$\w+/,
|
|
||||||
alias: 'builtin'
|
|
||||||
},
|
|
||||||
'keyword': /\b(?:break|by|case|create|default|do|else|end|every|fail|global|if|initial|invocable|link|local|next|not|of|procedure|record|repeat|return|static|suspend|then|to|until|while)\b/,
|
|
||||||
'function': /(?!\d)\w+(?=\s*[({]|\s*!\s*\[)/,
|
|
||||||
'operator': /[+-]:(?!=)|(?:[\/?@^%&]|\+\+?|--?|==?=?|~==?=?|\*\*?|\|\|\|?|<(?:->?|<?=?)|>>?=?)(?::=)?|:(?:=:?)?|[!.\\|~]/,
|
|
||||||
'punctuation': /[\[\](){},;]/
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.icon={comment:/#.*/,string:/(["'])(?:(?!\1)[^\\\r\n]|\\.|_(?:\r?\n|\r))*\1/,number:/\b(?:\d+r[a-z\d]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)\b|\.\d+\b/i,"builtin-keyword":{pattern:/&(?:allocated|ascii|clock|collections|cset|current|date|dateline|digits|dump|e|error(?:number|text|value)?|errout|fail|features|file|host|input|lcase|letters|level|line|main|null|output|phi|pi|pos|progname|random|regions|source|storage|subject|time|trace|ucase|version)\b/,alias:"variable"},directive:{pattern:/\$\w+/,alias:"builtin"},keyword:/\b(?:break|by|case|create|default|do|else|end|every|fail|global|if|initial|invocable|link|local|next|not|of|procedure|record|repeat|return|static|suspend|then|to|until|while)\b/,"function":/(?!\d)\w+(?=\s*[({]|\s*!\s*\[)/,operator:/[+-]:(?!=)|(?:[\/?@^%&]|\+\+?|--?|==?=?|~==?=?|\*\*?|\|\|\|?|<(?:->?|<?=?)|>>?=?)(?::=)?|:(?:=:?)?|[!.\\|~]/,punctuation:/[\[\](){},;]/};
|
|
|
@ -1,58 +0,0 @@
|
||||||
Prism.languages.inform7 = {
|
|
||||||
'string': {
|
|
||||||
pattern: /"[^"]*"/,
|
|
||||||
inside: {
|
|
||||||
'substitution': {
|
|
||||||
pattern: /\[[^\]]+\]/,
|
|
||||||
inside: {
|
|
||||||
'delimiter': {
|
|
||||||
pattern:/\[|\]/,
|
|
||||||
alias: 'punctuation'
|
|
||||||
}
|
|
||||||
// See rest below
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'comment': /\[[^\]]+\]/,
|
|
||||||
'title': {
|
|
||||||
pattern: /^[ \t]*(?:volume|book|part(?! of)|chapter|section|table)\b.+/im,
|
|
||||||
alias: 'important'
|
|
||||||
},
|
|
||||||
'number': {
|
|
||||||
pattern: /(^|[^-])(?:(?:\b|-)\d+(?:\.\d+)?(?:\^\d+)?\w*|\b(?:one|two|three|four|five|six|seven|eight|nine|ten|eleven|twelve))\b(?!-)/i,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'verb': {
|
|
||||||
pattern: /(^|[^-])\b(?:applying to|are|attacking|answering|asking|be(?:ing)?|burning|buying|called|carries|carry(?! out)|carrying|climbing|closing|conceal(?:s|ing)?|consulting|contain(?:s|ing)?|cutting|drinking|dropping|eating|enclos(?:es?|ing)|entering|examining|exiting|getting|giving|going|ha(?:ve|s|ving)|hold(?:s|ing)?|impl(?:y|ies)|incorporat(?:es?|ing)|inserting|is|jumping|kissing|listening|locking|looking|mean(?:s|ing)?|opening|provid(?:es?|ing)|pulling|pushing|putting|relat(?:es?|ing)|removing|searching|see(?:s|ing)?|setting|showing|singing|sleeping|smelling|squeezing|switching|support(?:s|ing)?|swearing|taking|tasting|telling|thinking|throwing|touching|turning|tying|unlock(?:s|ing)?|var(?:y|ies|ying)|waiting|waking|waving|wear(?:s|ing)?)\b(?!-)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'operator'
|
|
||||||
},
|
|
||||||
'keyword': {
|
|
||||||
pattern: /(^|[^-])\b(?:after|before|carry out|check|continue the action|definition(?= *:)|do nothing|else|end (?:if|unless|the story)|every turn|if|include|instead(?: of)?|let|move|no|now|otherwise|repeat|report|resume the story|rule for|running through|say(?:ing)?|stop the action|test|try(?:ing)?|understand|unless|use|when|while|yes)\b(?!-)/i,
|
|
||||||
lookbehind: true
|
|
||||||
},
|
|
||||||
'property': {
|
|
||||||
pattern: /(^|[^-])\b(?:adjacent(?! to)|carried|closed|concealed|contained|dark|described|edible|empty|enclosed|enterable|even|female|fixed in place|full|handled|held|improper-named|incorporated|inedible|invisible|lighted|lit|lock(?:able|ed)|male|marked for listing|mentioned|negative|neuter|non-(?:empty|full|recurring)|odd|opaque|open(?:able)?|plural-named|portable|positive|privately-named|proper-named|provided|publically-named|pushable between rooms|recurring|related|rubbing|scenery|seen|singular-named|supported|swinging|switch(?:able|ed(?: on| off)?)|touch(?:able|ed)|transparent|unconcealed|undescribed|unlit|unlocked|unmarked for listing|unmentioned|unopenable|untouchable|unvisited|variable|visible|visited|wearable|worn)\b(?!-)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'symbol'
|
|
||||||
},
|
|
||||||
'position': {
|
|
||||||
pattern: /(^|[^-])\b(?:above|adjacent to|back side of|below|between|down|east|everywhere|front side|here|in|inside(?: from)?|north(?:east|west)?|nowhere|on(?: top of)?|other side|outside(?: from)?|parts? of|regionally in|south(?:east|west)?|through|up|west|within)\b(?!-)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'keyword'
|
|
||||||
},
|
|
||||||
'type': {
|
|
||||||
pattern: /(^|[^-])\b(?:actions?|activit(?:y|ies)|actors?|animals?|backdrops?|containers?|devices?|directions?|doors?|holders?|kinds?|lists?|m[ae]n|nobody|nothing|nouns?|numbers?|objects?|people|persons?|player(?:'s holdall)?|regions?|relations?|rooms?|rule(?:book)?s?|scenes?|someone|something|supporters?|tables?|texts?|things?|time|vehicles?|wom[ae]n)\b(?!-)/i,
|
|
||||||
lookbehind: true,
|
|
||||||
alias: 'variable'
|
|
||||||
},
|
|
||||||
'punctuation': /[.,:;(){}]/
|
|
||||||
};
|
|
||||||
|
|
||||||
Prism.languages.inform7['string'].inside['substitution'].inside.rest = Prism.util.clone(Prism.languages.inform7);
|
|
||||||
// We don't want the remaining text in the substitution to be highlighted as the string.
|
|
||||||
Prism.languages.inform7['string'].inside['substitution'].inside.rest.text = {
|
|
||||||
pattern: /\S(?:\s*\S)*/,
|
|
||||||
alias: 'comment'
|
|
||||||
};
|
|
|
@ -1 +0,0 @@
|
||||||
Prism.languages.inform7={string:{pattern:/"[^"]*"/,inside:{substitution:{pattern:/\[[^\]]+\]/,inside:{delimiter:{pattern:/\[|\]/,alias:"punctuation"}}}}},comment:/\[[^\]]+\]/,title:{pattern:/^[ \t]*(?:volume|book|part(?! of)|chapter|section|table)\b.+/im,alias:"important"},number:{pattern:/(^|[^-])(?:(?:\b|-)\d+(?:\.\d+)?(?:\^\d+)?\w*|\b(?:one|two|three|four|five|six|seven|eight|nine|ten|eleven|twelve))\b(?!-)/i,lookbehind:!0},verb:{pattern:/(^|[^-])\b(?:applying to|are|attacking|answering|asking|be(?:ing)?|burning|buying|called|carries|carry(?! out)|carrying|climbing|closing|conceal(?:s|ing)?|consulting|contain(?:s|ing)?|cutting|drinking|dropping|eating|enclos(?:es?|ing)|entering|examining|exiting|getting|giving|going|ha(?:ve|s|ving)|hold(?:s|ing)?|impl(?:y|ies)|incorporat(?:es?|ing)|inserting|is|jumping|kissing|listening|locking|looking|mean(?:s|ing)?|opening|provid(?:es?|ing)|pulling|pushing|putting|relat(?:es?|ing)|removing|searching|see(?:s|ing)?|setting|showing|singing|sleeping|smelling|squeezing|switching|support(?:s|ing)?|swearing|taking|tasting|telling|thinking|throwing|touching|turning|tying|unlock(?:s|ing)?|var(?:y|ies|ying)|waiting|waking|waving|wear(?:s|ing)?)\b(?!-)/i,lookbehind:!0,alias:"operator"},keyword:{pattern:/(^|[^-])\b(?:after|before|carry out|check|continue the action|definition(?= *:)|do nothing|else|end (?:if|unless|the story)|every turn|if|include|instead(?: of)?|let|move|no|now|otherwise|repeat|report|resume the story|rule for|running through|say(?:ing)?|stop the action|test|try(?:ing)?|understand|unless|use|when|while|yes)\b(?!-)/i,lookbehind:!0},property:{pattern:/(^|[^-])\b(?:adjacent(?! to)|carried|closed|concealed|contained|dark|described|edible|empty|enclosed|enterable|even|female|fixed in place|full|handled|held|improper-named|incorporated|inedible|invisible|lighted|lit|lock(?:able|ed)|male|marked for listing|mentioned|negative|neuter|non-(?:empty|full|recurring)|odd|opaque|open(?:able)?|plural-named|portable|positive|privately-named|proper-named|provided|publically-named|pushable between rooms|recurring|related|rubbing|scenery|seen|singular-named|supported|swinging|switch(?:able|ed(?: on| off)?)|touch(?:able|ed)|transparent|unconcealed|undescribed|unlit|unlocked|unmarked for listing|unmentioned|unopenable|untouchable|unvisited|variable|visible|visited|wearable|worn)\b(?!-)/i,lookbehind:!0,alias:"symbol"},position:{pattern:/(^|[^-])\b(?:above|adjacent to|back side of|below|between|down|east|everywhere|front side|here|in|inside(?: from)?|north(?:east|west)?|nowhere|on(?: top of)?|other side|outside(?: from)?|parts? of|regionally in|south(?:east|west)?|through|up|west|within)\b(?!-)/i,lookbehind:!0,alias:"keyword"},type:{pattern:/(^|[^-])\b(?:actions?|activit(?:y|ies)|actors?|animals?|backdrops?|containers?|devices?|directions?|doors?|holders?|kinds?|lists?|m[ae]n|nobody|nothing|nouns?|numbers?|objects?|people|persons?|player(?:'s holdall)?|regions?|relations?|rooms?|rule(?:book)?s?|scenes?|someone|something|supporters?|tables?|texts?|things?|time|vehicles?|wom[ae]n)\b(?!-)/i,lookbehind:!0,alias:"variable"},punctuation:/[.,:;(){}]/},Prism.languages.inform7.string.inside.substitution.inside.rest=Prism.util.clone(Prism.languages.inform7),Prism.languages.inform7.string.inside.substitution.inside.rest.text={pattern:/\S(?:\s*\S)*/,alias:"comment"};
|
|
|
@ -1,11 +0,0 @@
|
||||||
Prism.languages.ini= {
|
|
||||||
'comment': /^[ \t]*;.*$/m,
|
|
||||||
'important': /\[.*?\]/,
|
|
||||||
'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m,
|
|
||||||
'attr-value': {
|
|
||||||
pattern: /=.*/,
|
|
||||||
inside: {
|
|
||||||
'punctuation': /^[=]/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue