Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.53 KB

CONTRIBUTING.md

File metadata and controls

28 lines (19 loc) · 1.53 KB

Contributing to html2ans

Welcome to the contribution guide for html2ans. Here are some important resources to get you started:

Questions or Issues

If you can't find an answer to your question in the above, please open an issue.

Testing

html2ans has unit tests built with tox. If you create new functionality, please include tests along with it.

Submitting changes

Please make a pull request on html2ans with a clear list of what you've done (you can read more about Github pull requests here). Please follow the best practices guide below and make sure all of your commits are atomic (one feature per commit).

Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:

$ git commit -m "A brief summary of the commit
> 
> A paragraph describing what changed and its impact."

Best Practices