Proper source code documentation is essential for every well-maintained project. It helps the reader to understand the code better. A developer who is trying to improve the code with new features will find this very useful. The solidity community has come up with a document generator that helps developers to build intuitive documentation for the smart contract. This recipe will help you create such documentation for your contract using Doxity.
Generating documentation for solidity code
Getting ready
Doxity is a documentation generator that is built using JavaScript and is distributed through npm. You need to have NodeJS (any recent version) installed on your machine to use this.