Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.38 KB

CONTRIBUTING.md

File metadata and controls

47 lines (27 loc) · 1.38 KB

Contributing

Thank you for contributing to Markbook. 👍

By contributing, you agree to abide by the Code of Conduct.

Do not open an issue if you have a question.

If you encounter a genuine bug or other issue that needs to be addressed, submit a new issue on GitHub issues.

  1. Fork the repo and create a new branch from master.

  2. Clone your forked repo:

    git clone [email protected]:/markbook.git

  3. Setup your machine:

    npm install

  4. Make changes.

  5. Make sure your changes work by running the tests:

    npm run test
    npm run build
    ./bin/markbook build doc
    

    Now open doc/book/index.html in your web browser to make sure markbook is still working correctly.

  6. Ensure your changes conform to the coding conventions

    npm run lint

  7. Commit your changes using git, then push the changes back to your forked repo on GitHub:

    git add ... git commit -m ": DESCRIPTION" -m "LONGER DESCRIPTION (optional)" git push origin master

  8. Submit a pull request.

Some things that will increase the chance that your pull request is accepted: