gitextract_hig6wl4x/ ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── License.md ├── MAINTAINING.md ├── README.md ├── app.js ├── appveyor.yml ├── assets/ │ ├── css/ │ │ ├── base/ │ │ │ ├── buttons.less │ │ │ ├── grids.less │ │ │ ├── navigation.less │ │ │ ├── ntf.less │ │ │ └── togglers.less │ │ ├── clarify.bundle.less │ │ ├── cosmetic/ │ │ │ ├── helpers.less │ │ │ ├── highlights.less │ │ │ └── links.less │ │ ├── defaults.less │ │ ├── mixins.less │ │ ├── project/ │ │ │ ├── auth.less │ │ │ ├── autocomplete.less │ │ │ ├── catalog.less │ │ │ ├── clarify-in-spec.less │ │ │ ├── clarify.less │ │ │ ├── examples.less │ │ │ ├── footer.less │ │ │ ├── header.less │ │ │ ├── info.less │ │ │ ├── layout.less │ │ │ ├── modal.less │ │ │ ├── navigation.less │ │ │ ├── search.less │ │ │ ├── section.less │ │ │ └── source-code.less │ │ ├── reset.less │ │ ├── source.css │ │ └── variables.less │ ├── fonts/ │ │ └── Webfont EULA 1.6.txt │ ├── js/ │ │ ├── _require.bundle.js │ │ ├── clarify.js │ │ ├── enter-the-source.js │ │ ├── lib/ │ │ │ ├── autocomplete.js │ │ │ ├── codeFormat.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.couch.js │ │ │ ├── jquery.mb.browser.js │ │ │ ├── lodash.js │ │ │ ├── modalbox.js │ │ │ ├── prism/ │ │ │ │ ├── prism.css │ │ │ │ └── prism.js │ │ │ ├── require.js │ │ │ └── text.js │ │ ├── load-options.js │ │ ├── modules/ │ │ │ ├── auth.js │ │ │ ├── browser.js │ │ │ ├── clarifyInSpec.js │ │ │ ├── codeSource.js │ │ │ ├── couch.js │ │ │ ├── css.js │ │ │ ├── globalNav.js │ │ │ ├── headerFooter.js │ │ │ ├── htmlAPISync.js │ │ │ ├── inlineOptions.js │ │ │ ├── innerNavigation.js │ │ │ ├── loadEvents.js │ │ │ ├── module.js │ │ │ ├── moduleLoader.js │ │ │ ├── navHighlight.js │ │ │ ├── ntf.js │ │ │ ├── parseFileTree.js │ │ │ ├── scrollToHash.js │ │ │ ├── search.js │ │ │ ├── sectionFolding.js │ │ │ ├── sections.js │ │ │ ├── sectionsParser.js │ │ │ ├── specDecorations.js │ │ │ ├── trimSpaces.js │ │ │ └── utils.js │ │ └── require-config.js │ ├── templates/ │ │ ├── clarifyPanel.inc.html │ │ ├── footer.inc.html │ │ ├── header.inc.html │ │ ├── nav.inc.html │ │ ├── navActionItem.inc.html │ │ └── navActionTumbler.inc.html │ └── test/ │ ├── index.html │ ├── jasmine/ │ │ ├── MIT.LICENSE │ │ ├── jasmine-html.js │ │ ├── jasmine.css │ │ └── jasmine.js │ ├── js/ │ │ └── tests.js │ └── spec/ │ ├── innerNavigationSpec.js │ ├── moduleSpec.js │ └── sectionsSpec.js ├── core/ │ ├── api/ │ │ ├── index.js │ │ └── optionsApi.js │ ├── auth.js │ ├── ejsWithHelpers.js │ ├── file-tree/ │ │ └── index.js │ ├── headerFooter.js │ ├── html-tree/ │ │ ├── html-parser/ │ │ │ ├── index.js │ │ │ └── phantomRunner.js │ │ └── index.js │ ├── lib/ │ │ ├── configUtils.js │ │ ├── createLink.js │ │ ├── extendTillSpec.js │ │ ├── flattenTillSpec.js │ │ ├── parseData.js │ │ ├── pathResolver.js │ │ ├── processMd.js │ │ ├── specUtils.js │ │ ├── translit.js │ │ ├── utils.js │ │ └── viewResolver.js │ ├── loadOptions.js │ ├── loadPlugins.js │ ├── logger.js │ ├── middlewares/ │ │ ├── clarify.js │ │ ├── loader.js │ │ ├── md.js │ │ ├── mdTag.js │ │ ├── read.js │ │ ├── send.js │ │ └── wrap.js │ ├── postInstall.js │ ├── routes/ │ │ ├── index.js │ │ └── redirects.js │ ├── trackInstall.js │ ├── trackStats.js │ ├── unflat.js │ ├── views/ │ │ ├── 404.ejs │ │ ├── auth-done.ejs │ │ ├── clarify/ │ │ │ ├── clear.ejs │ │ │ └── default.ejs │ │ ├── clean-spec.ejs │ │ ├── doc.ejs │ │ ├── navigation.ejs │ │ └── spec.ejs │ └── watch/ │ ├── childWatch.js │ └── index.js ├── docs/ │ ├── README.md │ ├── api/ │ │ ├── index.src.html │ │ ├── info.json │ │ ├── load-events/ │ │ │ ├── info.json │ │ │ └── readme.md │ │ ├── plugins/ │ │ │ ├── info.json │ │ │ └── readme.md │ │ ├── readme.md │ │ └── rest-api/ │ │ ├── info.json │ │ └── readme.md │ ├── auth/ │ │ ├── info.json │ │ └── readme.md │ ├── base/ │ │ ├── info.json │ │ └── readme.md │ ├── build-tasks/ │ │ ├── info.json │ │ └── readme.md │ ├── clarify/ │ │ ├── info.json │ │ └── readme.md │ ├── configuration/ │ │ ├── info.json │ │ └── readme.md │ ├── data/ │ │ └── bootstrap.css │ ├── data-nav/ │ │ ├── example/ │ │ │ ├── info.json │ │ │ └── readme.md │ │ ├── info.json │ │ └── readme.md │ ├── index.src.html │ ├── info-json/ │ │ ├── info.json │ │ └── readme.md │ ├── info.json │ ├── markdown/ │ │ ├── info.json │ │ └── readme.md │ ├── migration/ │ │ ├── info.json │ │ └── readme.md │ ├── spec/ │ │ ├── css/ │ │ │ └── spec.css │ │ ├── index.src.html │ │ └── info.json │ ├── spec-helpers/ │ │ ├── examples/ │ │ │ ├── buttons.html │ │ │ ├── include.html │ │ │ ├── markdown-file.md │ │ │ ├── mask-one.html │ │ │ ├── mask-two.html │ │ │ └── three.html │ │ ├── info.json │ │ └── readme.md │ ├── starting/ │ │ ├── css/ │ │ │ └── starting.css │ │ ├── index.src.html │ │ └── info.json │ ├── starting-md/ │ │ ├── css/ │ │ │ └── starting.css │ │ ├── info.json │ │ └── readme.md │ └── test-specs/ │ └── styles/ │ ├── includes/ │ │ └── all-tags.html │ ├── index.src.html │ └── info.json ├── options.js ├── package.json ├── source.sh └── test/ ├── data/ │ ├── api-test-html.json │ └── api-test-specs.json ├── functional/ │ ├── common.js │ ├── globalNav.js │ ├── search.js │ ├── snippets.md │ └── specpage.js └── unit/ ├── api/ │ ├── html.js │ └── specs.js ├── ejsHelpersSpec.js ├── lib/ │ ├── extendTillSpec.js │ └── utils.js ├── middleware/ │ ├── clarify.js │ └── md.js └── partials/ ├── markdown-ejs-nested.md ├── markdown-ejs.md ├── markdown.md ├── mask-one.html ├── mask-two.html └── three.html