gitextract_xj36c4n0/ ├── .github/ │ └── workflows/ │ └── Tests.yml ├── .gitignore ├── .gitmodules ├── .rubocop.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dangerfile ├── Gemfile ├── LICENSE ├── ObjectiveC.md ├── README.md ├── Rakefile ├── bin/ │ ├── jazzy │ └── sourcekitten ├── images/ │ └── logo.sketch ├── jazzy.gemspec ├── js/ │ └── package.json ├── lib/ │ ├── jazzy/ │ │ ├── config.rb │ │ ├── doc.rb │ │ ├── doc_builder.rb │ │ ├── doc_index.rb │ │ ├── docset_builder/ │ │ │ └── info_plist.mustache │ │ ├── docset_builder.rb │ │ ├── documentation_generator.rb │ │ ├── executable.rb │ │ ├── gem_version.rb │ │ ├── grouper.rb │ │ ├── highlighter.rb │ │ ├── jazzy_markdown.rb │ │ ├── podspec_documenter.rb │ │ ├── search_builder.rb │ │ ├── source_declaration/ │ │ │ ├── access_control_level.rb │ │ │ └── type.rb │ │ ├── source_declaration.rb │ │ ├── source_document.rb │ │ ├── source_host.rb │ │ ├── source_mark.rb │ │ ├── source_module.rb │ │ ├── sourcekitten.rb │ │ ├── stats.rb │ │ ├── symbol_graph/ │ │ │ ├── constraint.rb │ │ │ ├── ext_key.rb │ │ │ ├── ext_node.rb │ │ │ ├── graph.rb │ │ │ ├── relationship.rb │ │ │ ├── sym_node.rb │ │ │ └── symbol.rb │ │ ├── symbol_graph.rb │ │ └── themes/ │ │ ├── apple/ │ │ │ ├── assets/ │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css.scss │ │ │ │ │ └── jazzy.css.scss │ │ │ │ └── js/ │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── templates/ │ │ │ ├── deprecation.mustache │ │ │ ├── doc.mustache │ │ │ ├── footer.mustache │ │ │ ├── header.mustache │ │ │ ├── nav.mustache │ │ │ ├── parameter.mustache │ │ │ ├── task.mustache │ │ │ └── tasks.mustache │ │ ├── fullwidth/ │ │ │ ├── assets/ │ │ │ │ ├── css/ │ │ │ │ │ ├── highlight.css.scss │ │ │ │ │ └── jazzy.css.scss │ │ │ │ └── js/ │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── templates/ │ │ │ ├── deprecation.mustache │ │ │ ├── doc.mustache │ │ │ ├── footer.mustache │ │ │ ├── header.mustache │ │ │ ├── nav.mustache │ │ │ ├── parameter.mustache │ │ │ ├── task.mustache │ │ │ └── tasks.mustache │ │ └── jony/ │ │ ├── assets/ │ │ │ ├── css/ │ │ │ │ ├── highlight.css.scss │ │ │ │ └── jazzy.css.scss │ │ │ └── js/ │ │ │ └── jazzy.js │ │ └── templates/ │ │ ├── deprecation.mustache │ │ ├── doc.mustache │ │ ├── footer.mustache │ │ ├── header.mustache │ │ ├── nav.mustache │ │ ├── parameter.mustache │ │ ├── task.mustache │ │ └── tasks.mustache │ └── jazzy.rb └── spec/ ├── Moya.podspec ├── integration_spec.rb ├── spec_helper/ │ └── pre_flight.rb └── spec_helper.rb