This commit is contained in:
2020-08-25 17:32:19 +00:00
parent 3f56f4e15a
commit ec6077edf0
3 changed files with 0 additions and 0 deletions

View File

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