Log

Author Commit Date CI Message
Miles Johnson 9bc70c5e 2013-05-15T10:44:42 Moved CSS rules to an extras file
Miles Johnson 38803bd3 2013-05-14T11:38:36 Added min version
Miles Johnson f9abda28 2013-05-14T11:34:53 Added pseudo, hexcode, number and function matchers
Lea Verou 0c1e09bf 2013-05-14T03:59:16 Merge pull request #94 from dorfire/patch-1 deleted the duplicate occurrence of the "AS" keyword
dorfire 0df2df06 2013-05-14T11:44:17 deleted the duplicate occurrence of the "AS" keyword
Lea Verou 08c800c8 2013-05-13T16:08:57 Merge pull request #93 from gr2m/gh-pages prevent urls from being interpreted as comments
Gregor Martynus cf604b71 2013-05-14T00:23:55 Fix to allow clike languages like JavaScript to start with `//` comments, but still ignoring URLs like http://example.com
Lea Verou b13279dc 2013-05-11T06:28:07 Merge pull request #92 from gr2m/gh-pages Probem with JS code that starts with `// comment`
Gregor Martynus 4615e490 2013-05-11T12:27:50 I had a problem with syntax highlighting of JavaScript when it starts with a `// comment`. The problem of the comment pattern was ``` /(^|[^\\])(\/\*[\w\W]*?\*\/|[^:]\/\/.*?(\r?\n|$))/g ^^^^ ``` And I'm not sure what it is for, exactly? Adding a `?` to it fixes the problem for me, but I hope that it doesn't cause problems with other use case. Could you look into it? Is there any test suite for the existing code?
Lea Verou 20c0a1e9 2013-05-11T04:44:48 Alpha version of Prism-WPD plugin
Lea Verou 801aab58 2013-05-11T04:37:44 Added parent access to wrap hook
Lea Verou d56ef6d4 2013-05-10T09:51:32 Merge pull request #90 from mojavelinux/license add license file
Dan Allen 8e7d2426 2013-05-10T10:48:52 add license file
Lea Verou c3a69913 2013-05-09T21:01:17 Added language id to wrap hook
Lea Verou 4d3bbe17 2013-04-30T01:26:02 Merged changes, ran CodeKit
Lea Verou 0841b6b7 2013-04-29T07:41:30 Merge pull request #78 from zeitgeist87/gh-pages Support for C/C++ and Bash syntax highlighting
Andreas Rohner 3a14aa9d 2013-04-29T10:25:14 Merge remote-tracking branch 'upstream/gh-pages' into gh-pages Conflicts: code.js
Lea Verou 139384a1 2013-04-26T03:11:36 Merge pull request #70 from R-osey/tomorrow-night Add tomorrow night 80's syntax theme
Lea Verou be72190a 2013-04-22T12:33:39 Merge pull request #71 from multipetros/gh-pages Add Python & SQL syntax highlighters
Petros Kyladitis b70cbb30 2013-04-22T17:25:03 Merging with original branch changes
Petros Kyladitis 83d16ffa 2013-04-22T17:06:26 Merge remote-tracking branch 'origin/gh-pages' into gh-pages Conflicts: code.js
Lea Verou fa618e5b 2013-04-05T13:47:52 Merge pull request #60 from davidl/patch-1 Add link to API at end of "Basic usage" section
Lea Verou 42088f28 2013-03-26T13:04:55 Merge pull request #81 from ngryman/gh-pages Fixes URLs in strings
Nicolas Gryman 503209ac 2013-03-25T23:33:17 fixed URLs in strings.
Lea Verou 1a71257d 2013-03-18T05:17:51 Merge pull request #80 from MoOx/sass-fixes-73-79 Fixes Sass issues #73 & #79
Maxime Thirouin 2de58b05 2013-03-18T07:35:52 Fixes some Sass issues Close #73, close #79
Andreas Rohner 47ffc24c 2013-03-16T18:39:06 Add C/C++ highlighting support
Andreas Rohner ab3aea56 2013-03-16T18:36:27 Add Bash shell script highlighting support
Lea Verou 4309608a 2013-03-12T13:29:25 Merge pull request #72 from MoOx/scss Add Sass (scss) support
Petros Kyladitis 86ab8b7d 2013-02-08T02:09:30 add SQL syntax highlighters, update code.js, cut 2 bytes from python.min.js
Maxime Thirouin 2005a233 2013-02-04T07:28:52 Remove Sass from default prism.js & examples
Maxime Thirouin edbadbe0 2013-02-02T07:29:07 Add Sass (scss) support
Petros Kyladitis e9abdfb3 2013-02-02T03:04:44 small correction to code.js
Petros Kyladitis 813f27c8 2013-02-02T02:51:30 Update code.js, small improvements to prism-python.js & prism-python.min.js, revert prism.js to original
Petros Kyladitis a514c8d9 2013-02-02T01:27:47 Add Python syntax highlighters
Lea Verou 6626d04f 2013-02-01T12:01:37 Merge pull request #69 from R-osey/coffeescript Add coffeescript syntax hilighters
Rose 92bede23 2013-01-27T19:47:43 Reorganized code
Rose 8c6a447f 2013-01-27T10:54:21 Add coffeescript to code.js
Rose 2fd39c7e 2013-01-26T21:22:09 Add coffeescript syntax hilighters
Rose 4a367fe2 2013-01-26T21:18:41 Add tomorrow night 80's syntax theme
Lea Verou 5a7654eb 2013-01-27T18:30:57 Fixed text-shadows on print
Lea Verou 358fbbd6 2013-01-27T03:50:38 Replaced iteration with Array#map
Lea Verou a27870f0 2013-01-01T08:34:19 Merge pull request #65 from lukaszklis/gh-pages Fixed HTML5's spec links
Łukasz Kliś 6609dadd 2013-01-01T16:07:14 Fixed links to HTML5 spec
Lea Verou f5de661b 2012-11-30T23:32:20 Merge pull request #61 from davidl/patch-2 Change 'cdata' regex to capture empty instances (+ to *)
David Lantner ce86de5b 2012-11-30T10:46:52 Change 'cdata' regex to capture empty instances Changing "+" to "*" enables the regex to match zero or more occurrences of the preceding range instead of one or more occurrences. In cases where there are multiple CDATA sections, the opening tag ("<![CDATA[") of the first section and the closing tag ("]]>") of the next section are captured as a single instance. Demo: http://dabblet.com/gist/4176483
David Lantner 4873f623 2012-11-29T09:54:14 Add link to API for "data-manual" A link to the API section is helpful for those who need to use the "data-manual" or other features that are not included in "Basic usage" since the API section is located on the "Extending Prism" page.
Lea Verou 61b3b817 2012-11-25T12:26:21 Merge pull request #58 from CIAvash/autolinker-self-fix Fixed #57 - Autolinker doesn't work when async is enabled
Siavash Askari Nasr 29ba72da 2012-11-25T18:28:20 Fixed #57 - Autolinker doesn't work when async is enabled
Lea Verou 7d3a70bb 2012-11-18T09:33:53 Merge pull request #53 from MoOx/fix-java-examples Fix Java examples which are not working
Maxime Thirouin 79c5c906 2012-11-15T10:40:46 Fix Java examples which are not working With the commit 5c7827d0e9afa9e836c57fb25fa8415fb7b8d299, you remove the prism-java component from the prism.js, so the Java examples here http://prismjs.com/examples.html are not working
Lea Verou 40ce3954 2012-11-13T16:30:49 Fixed bug with self-closing tags
Lea Verou e043b877 2012-11-12T05:39:20 Fixed HTML highlighting bugs
Lea Verou 577a5890 2012-11-12T05:35:39 Fixed HTML highlighting bugs
Lea Verou 2099172d 2012-11-12T05:35:39 Fixed HTML highlighting bugs
Lea Verou 1cdfcb84 2012-11-11T04:25:56 Fixed #37
Lea Verou 1e13f68c 2012-11-10T22:05:43 Minor fixes on the website
Lea Verou 1b40db97 2012-11-10T00:23:33 Made Java & JavaScript inherit from a generic C-style language definition; Added methods for language definition inheritance; Added simple dependency management in downloader
Lea Verou 637322b2 2012-11-09T16:42:33 Um...changes. I don’t even remember *blush*
Lea Verou 5c7827d0 2012-11-09T16:32:33 Um...changes. I don’t even remember *blush*
Lea Verou 02653e5c 2012-11-09T16:31:18 Fixed bug with minified files
Lea Verou 10ab5ded 2012-11-09T16:15:29 Merge branch 'gh-pages' of https://github.com/LeaVerou/prism into gh-pages
Lea Verou ca09111b 2012-10-11T11:43:29 Merge pull request #33 from thomasklemm/gh-pages Add Readme
Lea Verou 9ceed06f 2012-09-13T20:08:31 merge branch 'gh-pages' of https://github.com/LeaVerou/prism into gh-pages
Lea Verou a7c91845 2012-09-13T20:08:28 Futile attempt to add twitter button to the website :(
Lea Verou 54fdc1f4 2012-09-13T20:06:11 Removed pointless trim()
Lea Verou 34f0bd52 2012-09-13T10:03:42 Merge pull request #35 from SimonSapin/patch-1 Fix parsing of CSS at-rules
Simon Sapin d4bd5e78 2012-09-13T20:00:27 Fix parsing of CSS at-rules Test case: @page { size: A4 landscape; margin: 2cm } The previous *atrule* regexp matched until the `;` but it should stop at the first `{`.
Thomas Klemm d287f054 2012-08-30T16:37:04 Readme: Add link to header
Thomas Klemm 56b64c04 2012-08-30T16:35:09 Add Readme
Lea Verou 9e17b7f9 2012-08-30T00:53:07 Merge pull request #31 from DmitryBaranovskiy/gh-pages Small SVG optimisation
Dmitry Baranovskiy 65e73ea0 2012-08-30T17:45:18 Optimised logo a bit ;)
Lea Verou b7b99531 2012-08-10T11:50:38 Merge pull request #28 from RonnyO/gh-pages Require word boundaries around js number regexp
Ronny Orbach df63c44f 2012-08-10T15:13:33 Require word boundaries around js number regexp. Ammending pull request #23
Lea Verou fe54e775 2012-08-09T11:01:44 Merge pull request #23 from RonnyO/gh-pages Improved Number & Operator detection in JavaScript
Lea Verou 2b764d1a 2012-08-09T10:58:32 Merge pull request #25 from sherblot/java Java syntax highlighter
sebh c571149a 2012-08-07T16:22:23 improve number highlight
Sebastien Herblot 20778033 2012-08-05T08:47:24 fix * operator highlight for import a.b.*;
sebh 294cbaf9 2012-08-03T17:33:57 Added prism-java.min.js
sebh 201077e9 2012-08-03T17:25:09 Added Java syntax highlighter
Ronny Orbach c6196281 2012-08-03T15:14:52 add fallback font-family to intro paragraph
Ronny Orbach e1e67d05 2012-08-03T14:20:20 Improved operator detection in JS Operators Added: % ~ ^ :
Ronny Orbach 3d1896c8 2012-08-03T14:06:59 Improve Number detection in JavaScript Now catches NaN, Infinity, .5, minus sign as part of the number, scientific notation, hex notation and more
Lea Verou b2284fa3 2012-08-01T12:03:54 Fixed #13
Lea Verou ddd1eb89 2012-08-01T12:02:46 Applied #15 to prism-core.js
Lea Verou e1cd33df 2012-08-01T02:47:23 Made the page a bit more IE friendly, added a first version of the IE8 plugin (WIP)
Lea Verou 8f2328f8 2012-07-31T22:21:14 Removed -webkit-tab-size
Lea Verou 66512341 2012-07-31T22:21:00 Feature list update
Lea Verou 9037ba32 2012-07-31T02:38:47 Merge pull request #10 from mathiasbynens/patch-1 prism.css: Remove `-webkit-tab-size`
Mathias Bynens ec2b826f 2012-07-31T10:33:34 prism.css: Remove `-webkit-tab-size` WebKit implemented the unprefixed `tab-size` right away; `-webkit-tab-size` has never been implemented.
Lea Verou c75bbc24 2012-07-31T19:08:31 Fixed bug with classnames
Lea Verou 95af8d4b 2012-07-31T18:52:35 Fixed bug with IE9
Lea Verou 9863ad72 2012-07-31T18:44:17 Added Google Analytics
Lea Verou 571ca0a5 2012-07-31T18:39:29 Added favicon
Lea Verou a95792ba 2012-07-31T18:38:02 Added favicon
Lea Verou 9ed86b86 2012-07-31T18:14:55 Styling and docs changes
Lea Verou 9a218917 2012-07-31T17:48:52 Removed useless files
Lea Verou ec8fb796 2012-07-31T17:47:56 Added helper method Prism.languages.DFS
Lea Verou e95a85c0 2012-07-31T16:17:53 Merged the comment and line-comment tokens
Lea Verou ed944399 2012-07-31T16:08:45 Docs update