更换版本
This commit is contained in:
39
towxml/plugins/hljs/languages/http.js
Normal file
39
towxml/plugins/hljs/languages/http.js
Normal file
@@ -0,0 +1,39 @@
|
||||
module.exports = function (e) {
|
||||
var n = "HTTP/[0-9\\.]+";
|
||||
return {
|
||||
aliases: ["https"],
|
||||
illegal: "\\S",
|
||||
contains: [
|
||||
{
|
||||
begin: "^" + n,
|
||||
end: "$",
|
||||
contains: [{ className: "number", begin: "\\b\\d{3}\\b" }],
|
||||
},
|
||||
{
|
||||
begin: "^[A-Z]+ (.*?) " + n + "$",
|
||||
returnBegin: !0,
|
||||
end: "$",
|
||||
contains: [
|
||||
{
|
||||
className: "string",
|
||||
begin: " ",
|
||||
end: " ",
|
||||
excludeBegin: !0,
|
||||
excludeEnd: !0,
|
||||
},
|
||||
{ begin: n },
|
||||
{ className: "keyword", begin: "[A-Z]+" },
|
||||
],
|
||||
},
|
||||
{
|
||||
className: "attribute",
|
||||
begin: "^\\w",
|
||||
end: ": ",
|
||||
excludeEnd: !0,
|
||||
illegal: "\\n|\\s|=",
|
||||
starts: { end: "$", relevance: 0 },
|
||||
},
|
||||
{ begin: "\\n\\n", starts: { subLanguage: [], endsWithParent: !0 } },
|
||||
],
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user