Make links in app description go to a new page

This commit is contained in:
Johannes Zellner
2016-01-13 16:16:40 +01:00
parent 66eb0481b5
commit faefe078af
3 changed files with 11 additions and 1 deletions

View File

@@ -176,7 +176,12 @@ app.filter('prettyDate', function () {
});
app.filter('markdown2html', function () {
var converter = new showdown.Converter();
var converter = new showdown.Converter({
extensions: ['targetblank'],
simplifiedAutoLink: true,
strikethrough: true,
tables: true
});
return function (text) {
return converter.makeHtml(text);