Open
Description
Right now, every single function is @exported. This should not be the case (ie some functions aren't really meant to be called outside the package (helper functions). This requires changing the auto-documentation generation/checking.
For this to work, there needs to be a way for the code to know when a function should be exported or not. It's possible to use some sort of conventions (or perhaps even a file with names of functions that should not be exported, which is probably much easier to implement).