Stackedit/public/res/settings.js

65 lines
2.1 KiB
JavaScript
Raw Normal View History

2013-05-27 19:45:33 +00:00
define([
2013-05-27 22:13:41 +00:00
"underscore",
2013-11-05 23:03:38 +00:00
"constants",
"storage",
], function (_, constants, storage) {
2013-05-29 19:55:23 +00:00
var settings = {
layoutOrientation: "horizontal",
lazyRendering: true,
2013-12-02 23:05:45 +00:00
editorFontFamily: '"Lucida Sans Typewriter", "Lucida Console", Monaco, "Bitstream Vera Sans Mono", monospace',
editorFontSize: 12,
2013-09-15 01:35:58 +00:00
maxWidth: 960,
2013-11-05 23:03:38 +00:00
defaultContent: "\n\n\n> Written with [StackEdit](" + constants.MAIN_URL + ").",
commitMsg: "Published with " + constants.MAIN_URL,
2013-10-06 14:34:40 +00:00
gdriveFullAccess: true,
2013-05-29 19:55:23 +00:00
template: [
2013-11-05 23:03:38 +00:00
'<!DOCTYPE html>\n',
'<html>\n',
'<head>\n',
'<meta charset="utf-8">\n',
'<title><%= documentTitle %></title>\n',
'<link rel="stylesheet" href="',
constants.MAIN_URL,
'res-min/themes/default.css" />\n',
'<script type="text/javascript" src="',
constants.MAIN_URL,
'libs/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>\n',
'</head>\n',
'<body><div class="container"><%= documentHTML %></div></body>\n',
'</html>'
].join(""),
2013-09-22 22:16:59 +00:00
pdfTemplate: [
2013-11-05 23:03:38 +00:00
'<!DOCTYPE html>\n',
'<html>\n',
'<head>\n',
'<meta charset="utf-8">\n',
'<title><%= documentTitle %></title>\n',
'<link rel="stylesheet" href="',
constants.MAIN_URL,
'res-min/themes/default.css" />\n',
'<script type="text/x-mathjax-config">\n',
'MathJax.Hub.Config({ messageStyle: "none" });\n',
'</script>\n',
'<script type="text/javascript" src="',
constants.MAIN_URL,
'libs/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>\n',
'</head>\n',
'<body class="pdf"><%= documentHTML %></body>\n',
'</html>'
2013-05-29 19:55:23 +00:00
].join(""),
2013-10-27 19:19:56 +00:00
pdfPageSize: 'A4',
2013-11-05 23:03:38 +00:00
sshProxy: constants.SSH_PROXY_URL,
2013-09-30 00:16:01 +00:00
shortcuts: {},
2013-05-29 19:55:23 +00:00
extensionSettings: {}
};
2013-06-03 22:19:52 +00:00
try {
2013-11-05 23:03:38 +00:00
_.extend(settings, JSON.parse(storage.settings));
2013-05-29 19:55:23 +00:00
}
2013-11-05 23:03:38 +00:00
catch (e) {
2013-06-03 22:19:52 +00:00
// Ignore parsing error
}
2013-05-29 19:55:23 +00:00
return settings;
2013-05-27 19:45:33 +00:00
});