• This project
    • Loading...
  • Sign in

Shenlin / markdown-view

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • markdown-view
  • init
  • config.js
  • lintry's avatar
    添加配置 · c7f78971
    c7f78971 Browse Files
    lintry authored 2018-01-09 11:32:00 +0800
config.js 337 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/**
 * config
 * Created by lintry on 2018/1/9.
 */

const customize = require('kml-customize');

const configure = customize({
    "md": {
        "base_path": "md",
        "default_md": "readme.md",
        "theme": "metro-lake"
    }
});

//绑定到全局变量
global.config = global.config = configure;
module.exports = configure;