Merge pull request #499 from matrix-org/dbkr/fix_markdown_links

Fix markdown link syntax
pull/21833/head
Richard van der Hoff 2016-09-27 11:57:03 +01:00 committed by GitHub
commit ea25e48ccb
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ export default class Markdown {
if (text == href) {
return href;
}
return marked.Renderer.prototype.apply(this, arguments);
return marked.Renderer.prototype.link.apply(this, arguments);
}
real_renderer.paragraph = (text) => {