-
Notifications
You must be signed in to change notification settings - Fork 98
documented only some pods #70
Comments
Currently, documentation is generated for only public declarations ( |
so i can not document the wole project ? if i want to document the whole project i will make standalone documentation for each class!? although i tried specifying a more specific path to exclude vendored code and did not find any thing in documentation folder , it is empty |
You can indeed generate documentation for your whole project all at once; my point was that you'd probably want to limit to your own code, and not 3rd party dependencies (e.g. nothing in the If documentation for your own classes aren't showing up, it's most likely because they aren't declared with For example, if you have a view controller, like: /// Documentation for MyViewController
class MyViewController: UIViewController { ... } You should make add a /// Documentation for MyViewController
public class MyViewController: UIViewController { ... } |
This feature is tracked by #72. |
Uh oh!
There was an error while loading. Please reload this page.
hey, it worked for me and generated this html file which is probably
documentation for some pods and third party libraries and can not find any of my classes (models, view , presenters) , i even searched for some code in the documentation and could not find it in my code
The text was updated successfully, but these errors were encountered: