diff --git a/modules/core/client/app/init.js b/modules/core/client/app/init.js index 79cd0781..9fb7964c 100644 --- a/modules/core/client/app/init.js +++ b/modules/core/client/app/init.js @@ -38,6 +38,11 @@ markedConfig.$inject = ['markedProvider']; function markedConfig(markedProvider) { markedProvider.setOptions({gfm: true}); + markedProvider.setRenderer({ + link: function(href, title, text) { + return '' + text + ''; + } + }); } // Then define the init function for starting up the application