-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
chiara
committed
Mar 31, 2015
1 parent
0734d06
commit ecfcb31
Showing
175 changed files
with
6,474 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"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", | ||
"ignore": [ | ||
"**/.*", | ||
"img", | ||
"templates", | ||
"CNAME", | ||
"*.html", | ||
"style.css", | ||
"favicon.png", | ||
"logo.svg", | ||
"download.js", | ||
"prefixfree.min.js", | ||
"utopia.js", | ||
"code.js" | ||
], | ||
"_release": "1ec44ae3f9", | ||
"_resolution": { | ||
"type": "branch", | ||
"branch": "gh-pages", | ||
"commit": "1ec44ae3f915b27324e1db5b34d8e2caad428dd9" | ||
}, | ||
"_source": "git://github.com/LeaVerou/prism.git", | ||
"_target": "gh-pages", | ||
"_originalSource": "prism" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# [Prism](http://prismjs.com/) | ||
|
||
Prism is a lightweight, robust, elegant syntax highlighting library. It's a spin-off project from [Dabblet](http://dabblet.com/). | ||
|
||
You can learn more on http://prismjs.com/. | ||
|
||
Why another syntax highlighter?: http://lea.verou.me/2012/07/introducing-prism-an-awesome-new-syntax-highlighter/#more-1841 | ||
|
||
## Contribute to Prism! | ||
|
||
Prism depends on community contributions to expand and cover a wider array of use cases. If you like it, considering giving back by sending a pull request. Here are a few tips: | ||
|
||
- Read the [documentation](http://prismjs.com/extending.html). Prism was designed to be extensible. | ||
- Do not edit prism.js, it’s just the version of Prism used by the Prism website and is built automatically. Limit your changes to the unminified files in the components/ folder. The minified files are also generated automatically. | ||
- Currently the build system building prism.js and the minified files is just a bunch of local settings in CodeKit. If someone wants to help export them to a config file, please contact me by opening an issue. | ||
- Please follow the code conventions used in the files already. For example, I use [tabs for indentation and spaces for alignment](http://lea.verou.me/2012/01/why-tabs-are-clearly-superior/). Opening braces are on the same line, closing braces on their own line regardless of construct. There is a space before the opening brace. etc etc. | ||
- Please try to err towards more smaller PRs rather than few huge PRs. If a PR includes changes I want to merge and changes I don't, handling it becomes difficult. | ||
- My time is very limited these days, so it might take a long time to review longer PRs (short ones are usually merged very quickly), especially those modifying the Prism Core. This doesn't mean your PR is rejected. | ||
- If you contribute a new language definition, you will be responsible for handling bug reports about that language definition. Soon I plan to add usernames of project owners for themes, plugins and language definitions so this becomes more clear to users. | ||
- If you add a new language definition, theme or plugin, you need to add it to `components.js` as well, so that it becomes available to the download build page. | ||
|
||
Thank you so much for contributing!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "prism", | ||
"version": "0.0.1", | ||
"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", | ||
"ignore": [ | ||
"**/.*", | ||
"img", | ||
"templates", | ||
"CNAME", | ||
"*.html", | ||
"style.css", | ||
"favicon.png", | ||
"logo.svg", | ||
"download.js", | ||
"prefixfree.min.js", | ||
"utopia.js", | ||
"code.js" | ||
] | ||
} |
Oops, something went wrong.