Releases: cesarParra/apexdocs
Releases · cesarParra/apexdocs
v2.0.0-alpha.14
Ground up refactoring using the Apex Reflection library for Apex code parsing.
v1.13.4
- Encoding HTML characters for anything outputted by the Markdown generator. 35f4887
Method types with `<>` and spaces now returned correctly.
Fixes issue #12 where method types with <>
and spaces in between were not correctly generating the return type.
v1.11.0
- Issue #9 where the
@return
param was missing from the generated docs was fixed. Thanks to @NicolasGach for reporting and submitting the fix!
v1.10.2
Fixed rendering issues with void private methods where the description was showing as a stand-alone title.
V1.10.1
v1.10.0
Added support for the namespaceaccessble
scope.
When this scope is defined any code marked as @NamespaceAccessible
will be included as part of the documentation, even if the additional scope of the code is not specified. For example, if you have a NamespaceAccessible public class and specify the namespaceaccessble
scope but not the public scope, the code will still be picked up.
v1.9.0
- A default group name can now be set for classes that do not have an
@group
annotation to override the default "Miscellaneous" - Can now specify the programming language to use when generating code example blocks, which gives you the ability to add syntax highlighting to the generated files.
- Support for
@throws
annotation - Support for {@link ClassName} syntax to generate a hyperlink between classes.
v1.6.1
- Fixing issue where single line enums caused parsing issues with the following block
v1.4.1
- Method parameters are rendered as tables