Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
iss #727 fix incorrect encoding in link
  • Loading branch information
asmsuechan committed Jul 25, 2017
commit 0a27819a7f38d0fce288a7cf7c165227ec67d986
3 changes: 2 additions & 1 deletion browser/lib/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ function strip (input) {
const markdown = {
render: function markdown (content) {
if (!_.isString(content)) content = ''
return md.render(content)
const renderedContent = md.render(content)
return md.normalizeLinkText(renderedContent)
},
strip
}
Expand Down