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 a7086ea commit fa16052Copy full SHA for fa16052
webhook/init.js
@@ -27,7 +27,7 @@ function getContent(e) {
27
let h1reg = /^# .+$/gm,
28
h2reg = /^## .+$/gm,
29
authorreg = /author:[^\n]*/gm;
30
- lines = lines.filter((e) => {return !e.match(authorreg));
+ lines = lines.filter((e) => {return !e.match(authorreg)});
31
others = lines.filter(e => {
32
return !e.match(h1reg) && !e.match(h2reg);
33
});
0 commit comments