Skip to content

Commit 12f3258

Browse files
committed
Remove hidden items from listing, linkify links
1 parent 2d85a64 commit 12f3258

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

bit-docs.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ var path = require("path");
2222
* - `html`
2323
*
2424
* Registering the `tags` hook adds JavaScript-related tags:
25-
* - [bit-docs-js/tags/codeend @codeend]
26-
* - [bit-docs-js/tags/codestart @codestart]
2725
* - [bit-docs-js/tags/function @function]
2826
* - [bit-docs-js/tags/module @module]
2927
* - [bit-docs-js/tags/option @option]
@@ -32,12 +30,12 @@ var path = require("path");
3230
* - [bit-docs-js/tags/prototype @prototype]
3331
* - [bit-docs-js/tags/return @return]
3432
* - [bit-docs-js/tags/signature @signature]
35-
* - [bit-docs-js/tags/static @static]
3633
* - [bit-docs-js/tags/typedef @typedef]
3734
*
3835
* Registering the `processor` hook adds a processor for `*.js` files that gets
3936
* code comments in JavaScript, and processes tags like `@function` and
40-
* `@param` into docObjects that are subsequently added to the docMap.
37+
* `@param` into [bit-docs/types/docObject]s that are subsequently added to the
38+
* [bit-docs/types/docMap].
4139
*
4240
* The processor is also smart enough process regular comments above functions
4341
* that have not explicitly been documented with closure type annotations, and
@@ -54,5 +52,4 @@ module.exports = function(bitDocs){
5452
bitDocs.register("html", {
5553
templates: path.join(__dirname, "templates")
5654
});
57-
5855
};

0 commit comments

Comments
 (0)