Stackedit/public/res/settings.js

72 lines
1.9 KiB
JavaScript
Raw Normal View History

2013-05-27 19:45:33 +00:00
define([
2014-04-27 12:43:57 +00:00
"underscore",
"constants",
"storage"
], function(_, constants, storage) {
2013-05-29 19:55:23 +00:00
2014-04-27 12:43:57 +00:00
var settings = {
layoutOrientation: "horizontal",
editMode: 'ltr',
lazyRendering: true,
editorFontClass: 'font-rich',
fontSizeRatio: 1,
maxWidthRatio: 1,
cursorFocusRatio: 0.5,
defaultContent: "\n\n\n> Written with [StackEdit](" + constants.MAIN_URL + ").",
commitMsg: "Published with " + constants.MAIN_URL,
conflictMode: 'merge',
markdownMimeType: 'text/x-markdown',
gdriveMultiAccount: 1,
gdriveFullAccess: true,
dropboxFullAccess: true,
githubFullAccess: true,
template: [
2014-08-19 08:17:27 +00:00
'<!DOCTYPE html>',
'<html>',
'<head>',
'<meta charset="utf-8">',
'<title><%= documentTitle %></title>',
'<link rel="stylesheet" href="' + constants.MAIN_URL + 'res-min/themes/base.css" />',
'<script type="text/javascript" src="' + constants.MAIN_URL + 'libs/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>',
'</head>',
'<body><div class="container"><%= documentHTML %></div></body>',
2014-04-27 12:43:57 +00:00
'</html>'
2014-08-19 08:17:27 +00:00
].join('\n'),
2014-04-27 12:43:57 +00:00
pdfTemplate: [
2014-08-19 08:17:27 +00:00
'<!DOCTYPE html>',
'<html>',
'<head>',
'<meta charset="utf-8">',
'<title><%= documentTitle %></title>',
'<link rel="stylesheet" href="http://localhost/res-min/themes/base.css" />',
'<script type="text/x-mathjax-config">',
'MathJax.Hub.Config({ messageStyle: "none" });',
'</script>',
'<script type="text/javascript" src="http://localhost/libs/MathJax/MathJax.js?config=TeX-AMS_HTML"></script>',
'</head>',
'<body><%= documentHTML %></body>',
2014-04-27 12:43:57 +00:00
'</html>'
2014-08-19 08:17:27 +00:00
].join('\n'),
pdfOptions: [
'{',
' "marginTop": 25,',
' "marginRight": 25,',
' "marginBottom": 25,',
' "marginLeft": 25,',
' "pageSize": "A4"',
'}'
].join('\n'),
2014-04-27 12:43:57 +00:00
sshProxy: constants.SSH_PROXY_URL,
extensionSettings: {}
};
2013-05-29 19:55:23 +00:00
2014-04-27 12:43:57 +00:00
try {
_.extend(settings, JSON.parse(storage.settings));
}
catch(e) {
// Ignore parsing error
}
2013-05-29 19:55:23 +00:00
2014-04-27 12:43:57 +00:00
return settings;
2014-03-20 00:24:56 +00:00
});