mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-10 01:25:46 +01:00
Hello strange new syntax. Can we be friends?
This commit is contained in:
@@ -218,11 +218,12 @@ var Highlights = Module("Highlight", {
|
||||
* @param {string} class
|
||||
*/
|
||||
selector: function selector(class_)
|
||||
let (self = this)
|
||||
class_.replace(/(^|[>\s])([A-Z][\w-]+)\b/g,
|
||||
function (m, n1, hl) n1 +
|
||||
(self.highlight[hl] && self.highlight[hl].class != class_
|
||||
? self.highlight[hl].selector : "[dactyl|highlight~=" + hl + "]")),
|
||||
class_.replace(/(^|[>\s])([A-Z][\w-]+)\b/g,
|
||||
(m, n1, hl) => {
|
||||
if (this.highlight[hl] && this.highlight[hl].class != class_)
|
||||
return n1 + this.highlight[hl].selector;
|
||||
return n1 + "[dactyl|highlight~=" + hl + "]";
|
||||
}),
|
||||
|
||||
groupRegexp: util.regexp(literal(/*
|
||||
^
|
||||
|
||||
Reference in New Issue
Block a user