Skip to content

Commit

Permalink
Global match everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
kasparsd committed Apr 3, 2019
1 parent 92892c6 commit 449ebf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const deployConfig = {

const readmeReplaceRules = [
{
from: /^#\s(.+)$/,
from: /^#\s(.+)$/gm,
to: '=== $1 ==='
},
{
from: /^##\s(.+)$/,
from: /^##\s(.+)$/gm,
to: '== $1 =='
},
{
from: /^#{3,}\s(.+)$/,
from: /^#{3,}\s(.+)$/gm,
to: '= $1 ='
},
];
Expand Down

0 comments on commit 449ebf2

Please sign in to comment.