You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
committed by
Laurent Cozic
parent
9a4f4cbb65
commit
ac4986b620
@ -4,8 +4,17 @@ const Mustache = require('mustache');
|
|||||||
|
|
||||||
const TemplateUtils = {};
|
const TemplateUtils = {};
|
||||||
|
|
||||||
|
|
||||||
|
// Mustache escapes strings (including /) with the html code by default
|
||||||
|
// This isn't useful for markdown so it's disabled
|
||||||
|
Mustache.escape = text => {
|
||||||
|
return text;
|
||||||
|
};
|
||||||
|
|
||||||
|
TemplateUtils.render = function(input) {
|
||||||
// new template variables can be added here
|
// new template variables can be added here
|
||||||
// If there are too many, this should be moved to a new file
|
// If there are too many, this should be moved to a new file
|
||||||
|
// view needs to be set in this function so that the formats reflect settings
|
||||||
const view = {
|
const view = {
|
||||||
date: time.formatMsToLocal(new Date().getTime(), time.dateFormat()),
|
date: time.formatMsToLocal(new Date().getTime(), time.dateFormat()),
|
||||||
time: time.formatMsToLocal(new Date().getTime(), time.timeFormat()),
|
time: time.formatMsToLocal(new Date().getTime(), time.timeFormat()),
|
||||||
@ -17,13 +26,6 @@ const view = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
// Mustache escapes strings (including /) with the html code by default
|
|
||||||
// This isn't useful for markdown so it's disabled
|
|
||||||
Mustache.escape = text => {
|
|
||||||
return text;
|
|
||||||
};
|
|
||||||
|
|
||||||
TemplateUtils.render = function(input) {
|
|
||||||
return Mustache.render(input, view);
|
return Mustache.render(input, view);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user