All Projects → zalando-incubator → Hexo Theme Doc

zalando-incubator / Hexo Theme Doc

Licence: other
A documentation theme for the Hexo blog framework

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Hexo Theme Doc

Awesome Documentation Tools
🔥 📚 All the tools, processes and resources you need to create an awesome API & Project documentation
Stars: ✭ 138 (-37.84%)
Mutual labels:  api, swagger, api-documentation, documentation, documentation-tool
Zeal
Offline documentation browser inspired by Dash
Stars: ✭ 9,164 (+4027.93%)
Mutual labels:  api, api-documentation, documentation, documentation-tool
Openapi Viewer
Browse and test a REST API described with the OpenAPI 3.0 Specification
Stars: ✭ 82 (-63.06%)
Mutual labels:  api, swagger, swagger-ui, api-documentation
Drf Autodocs
Ultimately automated DRF documentation rendering(UNMAINTAINED)
Stars: ✭ 82 (-63.06%)
Mutual labels:  api, api-documentation, documentation, documentation-tool
Flasgger
Easy OpenAPI specs and Swagger UI for your Flask API
Stars: ✭ 2,825 (+1172.52%)
Mutual labels:  api, swagger, swagger-ui, api-documentation
L5 Swagger
OpenApi or Swagger integration to Laravel
Stars: ✭ 1,781 (+702.25%)
Mutual labels:  api, swagger, swagger-ui, documentation
Angular Swagger Ui
An angularJS implementation of Swagger UI
Stars: ✭ 131 (-40.99%)
Mutual labels:  api, swagger, swagger-ui, api-documentation
Shins
Shins development continues at
Stars: ✭ 250 (+12.61%)
Mutual labels:  api, swagger, documentation, static-site-generator
Pdoc
API Documentation for Python Projects
Stars: ✭ 853 (+284.23%)
Mutual labels:  api, api-documentation, documentation, documentation-tool
Jsdoc To Markdown
Generate markdown documentation from jsdoc-annotated javascript
Stars: ✭ 1,199 (+440.09%)
Mutual labels:  api-documentation, documentation, documentation-tool
Grape Swagger
Add OAPI/swagger v2.0 compliant documentation to your grape API
Stars: ✭ 1,000 (+350.45%)
Mutual labels:  api, swagger, documentation
Jekyll Rtd Theme
Just another documentation theme compatible with GitHub Pages
Stars: ✭ 92 (-58.56%)
Mutual labels:  documentation, static-site-generator, documentation-tool
Rest Hapi
🚀 A RESTful API generator for Node.js
Stars: ✭ 1,102 (+396.4%)
Mutual labels:  api, swagger, documentation
Hippie Swagger
API testing tool with automatic swagger assertions
Stars: ✭ 166 (-25.23%)
Mutual labels:  swagger, documentation, documentation-tool
Slate
Beautiful static documentation for your API
Stars: ✭ 33,447 (+14966.22%)
Mutual labels:  api, api-documentation, static-site-generator
Swagger Github Pages
How to host Swagger API documentation with GitHub Pages
Stars: ✭ 102 (-54.05%)
Mutual labels:  swagger, swagger-ui, api-documentation
Swagger Toolbox
💡 Swagger schema model (in yaml, json) generator from json data
Stars: ✭ 194 (-12.61%)
Mutual labels:  swagger, swagger-ui, documentation
Swagger Combine
Combines multiple Swagger schemas into one dereferenced schema.
Stars: ✭ 102 (-54.05%)
Mutual labels:  api, swagger, documentation
Api Development Tools
📚 A collection of useful resources for building RESTful HTTP+JSON APIs.
Stars: ✭ 2,519 (+1034.68%)
Mutual labels:  api, swagger, api-documentation
Fastapi
FastAPI framework, high performance, easy to learn, fast to code, ready for production
Stars: ✭ 39,588 (+17732.43%)
Mutual labels:  api, swagger, swagger-ui

hexo-theme-doc

License: MIT dependencies Status Codacy Badge Codacy Badge Build Status npm version

LiveDemo: https://zalando-incubator.github.io/hexo-theme-doc

hexo-theme-doc is a documentation theme for Hexo, the fast and powerful blog framework powered by Node.js. It differs from other Hexo themes by allowing you to present documentation—especially REST API documentation.

Created by JavaScript/Node.js developers, hexo-theme-doc capitalizes on Hexo's extensibility and system of plugins for adding custom tags, customizing layouts, and processing multiple kinds of sources, which makes generating static websites simpler than other tools.

hexo-theme-doc's features include:

  • A clean and responsive layout
  • Search
  • Swagger integration
  • Simple, configurable navigation, including for Tables of Contents
  • Google Analytics
  • Customizable logo and favicon

Visit our demo to view an example of hexo-theme-doc in action.

Theme Mockup

Table of Contents

Get Started

Our step-by-step guide aims to get you running with hexo-theme-doc in five minutes or less.

For a deeper dive, check our user documentation.

Feature Roadmap

hexo-theme-doc is currently in development at Zalando and useful out-of-the-box to others. We welcome suggestions/feedback and contributions, especially on these planned features:

  • More sophisticated control over navigation/automatic filesystem-based navigation (community feedback priority)
  • Swagger to HTML (this feature is in beta phase)
    • Make implementation more robust, and covering all edge cases (development priority)
    • Support for Swagger 3.0
    • Ability to fetch Swagger files from remote locations
    • Ability to provide request/response examples in an external file
    • Exclusion of APIs/operations from output
    • Markdown content support

For more info on our progress, visit the changelog contributions.

Contributing

There are many ways to contribute to hexo-theme-doc:

  • give a github star to the project
  • create github issues and help us to find bugs and/or request features.
  • contribute to the source code

Please check our CONTRIBUTING guidelines.

Development

To get started with hexo-theme-doc development, you need to install NodeJS and Git. Then install hexo-cli globally:

$ npm install hexo-cli -g

Get the theme source and install the dependencies:

$ git clone [email protected]:zalando-incubator/hexo-theme-doc.git
$ cd hexo-theme-doc && npm install

Ensure that you can successfully run test and linting tasks:

$ npm run test && npm run lint

If you want to update the visual aspects of your front-end, we suggest using our user documentation site as a playground for previewing your changes. First, link the theme package globally with:

$ cd hexo-theme-doc && npm link

Then get the user documentation source:

$ git clone [email protected]:zalando-incubator/hexo-theme-doc.git hexo-theme-doc-site
$ cd hexo-theme-doc-site
$ git fetch --all && git checkout gh-pages-source
$ npm install

The documentation source resides in this repository as well but just on a different branch called: gh-pages-source

Now link the theme package as a dependency (this will use your local version):

$ npm link hexo-theme-doc

Finally run the built-in server:

$ hexo s

Open your browser at http://localhost:4000, and hopefully you'll see the documentation site up and running.

Test

Run tests with Facebook's Jest (currently the only testing tool compatible with hexo-theme-doc):

$ npm run test

To generate coverage reports run:

$ npm run test:coverage

Reports are generated at target/coverage.Sometimes you'll only need to run one test suite focused on a single problem; do that by running:

$ npm run test -- <regexp>

<regexp> represents a Regular Expression, matching test file path(s)—eg. npm run jest -- search*.

Lint

Lint the code using ESLint (currently the only linting tool compatible with hexo-theme-doc):

$ npm run lint

To apply automatic fixes to your code, run it with the --fix option:

$ npm run lint --fix

Compile

Use Webpack and node-sass to compile your JavaScript source and style source for the browser:

$ npm run compile

!!! ALWAYS !!! compile and commit distribution artifacts after updating Javascript and/or SCSS files.

Release (recommended workflow)

Only the maintainers** perform releases. Our preferred workflow:

  1. Bump version in package.json
  2. Run npm run prerelease
  3. Commit and push
  4. Open a PR
  5. When PR is merged, tag and push

Credits

License

MIT license with exceptions. See the full license for details.

Copyright 2017, Zalando SE

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].