1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Fix markdown link syntax

This commit is contained in:
David Baker
2016-09-26 20:09:36 +01:00
parent 2e1644877d
commit 9bffd8da75

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) => {