| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /*
- * This file is part of Moeditor.
- *
- * Copyright (c) 2016 Menci <huanghaorui301@gmail.com>
- *
- * Moeditor is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Moeditor is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Moeditor. If not, see <http://www.gnu.org/licenses/>.
- */
- 'use strict';
- module.exports = {
- 'locale': 'default',
- 'debug': false,
- 'scale-factor': 1,
- 'tab-size': 4,
- 'zoom-level': 1.2,
- 'edit-mode': 'preview',
- 'edit-mode-read': 'read',
- 'edit-mode-write': 'write',
- 'focus-mode': false,
- 'editor-font': 'default',
- 'editor-theme': 'base16-light',
- 'editor-font-size': 14,
- 'editor-line-height': 2,
- 'math': true,
- 'uml-diagrams': true,
- 'auto-reload': 'prompt',
- 'auto-save': 'prompt',
- 'highlight-theme': 'github',
- 'render-theme': '*GitHub',
- 'custom-render-themes': {},
- 'custom-csss': {},
- 'editor-ShowLineNumber': false,
- 'hexo-auto-setting': false,
- 'hexo-config-enable': false,
- 'hexo-config': '',
- 'hexo-tag-paths': [] ,
- 'image-source-center': '',
- 'image-web-type':'sm',
- 'image-qiniu-accessKey':'',
- 'image-qiniu-secretKey':'',
- 'image-qiniu-bucket':'',
- 'image-qiniu-url-protocol': 'http://',
- 'image-qiniu-url':'',
- 'image-cos-accessKey':'',
- 'image-cos-secretKey':'',
- 'image-cos-bucket':'|',
- 'image-cos-url-protocol': 'http://',
- 'image-cos-url':'',
- 'image-back-type': 2
- };
|