gitextract_j_mdcei_/ ├── .babelrc ├── .banner ├── .bowerrc ├── .github/ │ └── workflows/ │ ├── build.yml │ └── test.yml ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .pug-lintrc ├── .stylelintrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin/ │ └── chappe.js ├── bower.json ├── examples/ │ └── acme-docs/ │ ├── config.json │ ├── data/ │ │ ├── changes/ │ │ │ ├── 2020.json │ │ │ └── 2021.json │ │ ├── guides/ │ │ │ ├── hello-world/ │ │ │ │ ├── index.md │ │ │ │ └── quickstart/ │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ └── markdown-syntax/ │ │ │ ├── index.md │ │ │ ├── section-example/ │ │ │ │ ├── index.md │ │ │ │ ├── sub-section-one/ │ │ │ │ │ └── index.md │ │ │ │ └── sub-section-two/ │ │ │ │ └── index.md │ │ │ └── syntax/ │ │ │ └── index.md │ │ └── references/ │ │ ├── rest-api/ │ │ │ ├── _private.md │ │ │ └── v1.md │ │ └── rtm-api/ │ │ └── v1.md │ └── package.json ├── gulpfile.js ├── package.json ├── res/ │ ├── config/ │ │ ├── common.json │ │ └── user.json │ └── plugins/ │ ├── gulp/ │ │ ├── minisearch.js │ │ └── pug-templates.js │ └── marked/ │ ├── extensions/ │ │ ├── embed.js │ │ ├── emphasis.js │ │ ├── figcaption.js │ │ ├── navigation-item.js │ │ └── navigation.js │ └── renderers/ │ ├── code.js │ └── heading.js └── src/ ├── javascripts/ │ └── common/ │ └── common.js ├── locales/ │ └── en.json ├── stylesheets/ │ ├── _colors.scss │ ├── _config.scss │ ├── _functions.scss │ ├── _globals.scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── changes/ │ │ └── changes.scss │ ├── common/ │ │ ├── _appearance.scss │ │ ├── _badges.scss │ │ ├── _base.scss │ │ ├── _buttons.scss │ │ ├── _code.scss │ │ ├── _content.scss │ │ ├── _fonts.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _highlight.scss │ │ ├── _markdown.scss │ │ ├── _search.scss │ │ ├── _viewer.scss │ │ └── common.scss │ ├── guides/ │ │ ├── _common.scss │ │ ├── _content.scss │ │ ├── _sidebar_left.scss │ │ └── guides.scss │ ├── home/ │ │ └── home.scss │ ├── not_found/ │ │ └── not_found.scss │ └── references/ │ ├── _content.scss │ ├── _sidebar_left.scss │ └── references.scss └── templates/ ├── __base.pug ├── _body_footer.pug ├── _body_header.pug ├── _body_search.pug ├── _head_favicon.pug ├── _head_http.pug ├── _head_includes.pug ├── _head_metas.pug ├── _head_screen.pug ├── _head_theme.pug ├── _mixins.pug ├── changes/ │ └── index.pug ├── guides/ │ ├── _content.pug │ ├── _sidebar_left.pug │ └── index.pug ├── home/ │ └── index.pug ├── not_found/ │ └── index.pug └── references/ ├── _blueprint.pug ├── _blueprint_content.pug ├── _blueprint_sidebar_left.pug ├── _markdown.pug ├── _markdown_content.pug ├── _markdown_sidebar_left.pug ├── _mixins_blueprint.pug ├── _mixins_common.pug └── index.pug