Skip to content

Commit 93f5993

Browse files
committed
Merge pull request #318 from negue/markdown_notes
add markdown as angular filter
2 parents 57ef833 + 47e6dda commit 93f5993

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

script/directives.js

+10
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,16 @@
9999
}
100100
};
101101
});
102+
103+
habitrpg.filter('markdown', function() {
104+
return function(input){
105+
var html = md.toHtml(input);
106+
107+
html = html.replace(' href','target="_self" href');
108+
109+
return html;
110+
};
111+
});
102112
})()
103113

104114
habitrpg.directive('questRewards', ['$rootScope', function($rootScope){

0 commit comments

Comments
 (0)