components/prism-http.min.js


Log

Author Commit Date CI Message
Valtteri Laitinen 9fe2f93e 2021-10-05T12:26:29 Use `\d` for `[0-9]` (#3097) Also `[\d.]` for `[0-9.]` and `[\d_]` for `[0-9_]`.
Michael Schmidt e2630d89 2021-09-26T11:52:18 ESLint: Added `regexp/sort-alternatives` rule (#3093)
Michael Schmidt 1dfc8271 2021-02-07T14:54:09 HTTP: Fixed body not being highlighted (#2734)
Michael Schmidt bbc77d19 2021-01-24T15:51:37 Added support for URIs (#2708)
Jxck 6183fd9b 2021-01-19T00:43:03 HTTP: More granular tokenization (#2722)
Jxck 4e7b2a82 2021-01-17T01:45:05 HTTP: Allow root path in request line (#2711)
Michael Schmidt e644178b 2020-12-28T18:19:11 Added test for polynomial backtracking (#2597)
Michael Schmidt c187e229 2019-10-16T12:06:22 Added test for unused capturing groups (#1996) This adds a test that checks for unused capturing groups in patterns and another test which ensures that lookbehind groups are always the first thing being matched in a pattern.
Michael Schmidt ad3fa443 2019-10-16T11:44:14 Inlined some unnecessary rest properties (#2082) This inlines a few unnecessary `rest` properties.
Michael Schmidt 3e00bb9c 2019-03-07T15:22:30 Rebuilt Prism (#1794) This is a rebuilt of Prism to update minified files.
Michael Schmidt 1b75da90 2018-12-01T18:46:55 Improved HTTP content highlighting (#1598) Extends the content highlighting capabilities of HTTP. 1. Add support for `application/javascript` and `text/css` content types. 2. Change the languages associated with certain types: 1. `application/json` now uses `json` with `javascript` as a backup instead of just `javascript`. 2. All XML types now use `Prism.languages.xml` instead of `markup`. 3. The HTML type now uses `html` instead of `markup`. 3. Add support for highlighting based on [suffixes](https://en.wikipedia.org/wiki/Media_type#Suffix) for XML and JSON. E.g. `image/svg+xml`, `application/xhtml+xml`, `application/atom+xml` will use `xml` and `application/calendar+json` will use `json`. 4. Stylistic changes: 1. Fix indentation. 2. Use single quotes for token names.
Michael Schmidt 44fed4d3 2018-08-19T16:10:29 Replaced all occurrences of `new RegExp` with `RegExp` (#1493) Using the factory vs constructor form is the same, so removing `new` results in less code.
Thomas Stapleton f6e81cb4 2018-04-11T23:08:00 HTTP: Absolute path is a valid request uri (#1388)
Golmote 37ef24eb 2017-10-22T14:42:28 HTTP: Regexp simplification + don't use captures if not needed
Golmote 65cbaa95 2017-05-08T13:27:57 Run gulp after #1107
Golmote aaa90f10 2015-08-23T17:25:40 HTTP: Fix indentation + Add multiline flag for more flexibility + Fix response status + Handle \r\n and \r
Golmote b1fd5bdc 2015-03-10T08:27:53 Removed unused global flag in all grammars
Golmote 86b4d4df 2014-12-20T14:21:28 Run gulp tasks
Lea Verou 4b9e11c6 2014-11-14T19:19:31 CSS highlighting in HTML style attribute
Lennard van Gunst ac41a8d2 2014-10-27T15:12:59 Make HTTP response-status case-insensitive
Ben Briggs 7cfd29a9 2014-05-26T11:20:55 Rebuild minified files.
Lea Verou 36471491 2014-04-21T13:36:32 Updated minified files
James Brumond 7bfed0f0 2013-12-18T22:31:53 added extra methods to HTTP lang
Daniel G. Taylor 3527ccc7 2013-06-01T09:24:18 Add support for raw HTTP request and response syntax highlighting; add examples for these on the examples pages.