This commit is contained in:
2020-08-24 23:54:37 +00:00
parent 5bbf5186c2
commit 1757d84907
2 changed files with 12 additions and 2 deletions

View File

@@ -2,4 +2,8 @@ function ayRegisterHelpers() {
Handlebars.registerHelper("aycaps", function (aString) {
return aString.toUpperCase();
});
Handlebars.registerHelper("aymarkdown",function(astring){
return marked(astring, { breaks: true })
})
}