Marking Up Your Files
Learn how to mark up TypeScript and Sass code files with Compodoc and SassDoc.
We'll cover the following...
We'll cover the following...
Documenting with Compodoc
Currently, the options for documenting your classes with JSDoc are limited when using Compodoc to using only the following tags:
- The
@exampletag - The
@ignoretag - The
@linktag - The
@param {type} Name Descriptiontag - The
@returnstag
If you’re familiar with using a documentation library such as JSDoc or YUIDoc, this might feel restrictive at first. Surprisingly, this is ...