Skip to content

Commit

Permalink
Merge pull request #22 from plaid/davidchambers/no-double-escape
Browse files Browse the repository at this point in the history
remove erroneous escaping in Markdown context
  • Loading branch information
davidchambers authored Apr 8, 2018
2 parents e893175 + 35a91ee commit ee688c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/transcribe
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var formatSignature = R.curry(function(options, filename, line, signature) {
'<a name="' + esc(signature.split(' :: ')[0]) + '"' +
' href="' + esc(options.url.replace('{filename}', filename)
.replace('{line}', line)) + '">' +
'`' + esc(controlWrapping(signature)) + '`' +
'`' + controlWrapping(signature) + '`' +
'</a>\n';
});

Expand Down

0 comments on commit ee688c8

Please sign in to comment.