We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8461720 commit 2616e4eCopy full SHA for 2616e4e
lib/markup.js
@@ -36,6 +36,11 @@ function replaceDescriptionFor(items) {
36
}
37
38
function highlight(description) {
39
+ if (description) {
40
+ description = description.replace(/&#(\d+);/g, function(match, dec) {
41
+ return String.fromCharCode(dec)
42
+ })
43
+ }
44
let markedup = removeHLJSPrefix(marked(description))
45
let $ = cheerio.load(markedup)
46
package.json
@@ -62,10 +62,5 @@
62
},
63
"cacheDirectories": [
64
"tmp"
65
- ],
66
- "husky": {
67
- "hooks": {
68
- "pre-commit": "pretty-quick --staged"
69
- }
70
+ ]
71
0 commit comments