We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80ef62a commit d687542Copy full SHA for d687542
src/common.js
@@ -99,6 +99,7 @@ function setup(env) {
99
if (typeof formatter === 'function') {
100
const val = args[index];
101
match = formatter.call(self, val);
102
+ match = match.replace(/%/g, () => '%%');
103
104
// Now we need to remove `args[index]` since it's inlined in the `format`
105
args.splice(index, 1);
0 commit comments