documentation icon indicating copy to clipboard operation
documentation copied to clipboard

:book: documentation for modern JavaScript

Results 138 documentation issues
Sort by recently updated
recently updated
newest added

It's not used too often and removing it will improve the install time and reduce the bundle size. I'm happy to tackle this if there's interest

Currently, when we generate the JSON docs, It includes the location. The location includes the filename (absolute path with USERNAME). Here is sample code from the JSON docs of `documentation.js`...

This is more a feature request/future planning idea. Right now, the JSON output of a doc parsing run cannot (easily) be used with something like GraphQL because it requires a...

I'm a big fan on inferring documentation properties from code: I'm using _documentation.js_ mainly because it allows me to omit the ‘boring’ parts of doc comments by using Flow types....

enhancement

JSDoc standard: >All symbols in the file are assumed to be members of the module unless documented otherwise. This does not happen. Mentioned in #234 but there is no specific...

The following class has one `public` and one `protected` method. The `protected` one is not marked as protected in any way in the HTML output. When in JSON, it is...

I've just finished a documentation.js theme that renders to plain markdown, so I can integrate the output in my documentation generator ([mkdocs](https://www.mkdocs.org/) in this case). Since the default markdown output...

This bug confused the heck out of me! This: ```js // eslint-disable-next-line require-jsdoc const Foo = () => ``` Or this: ```js /* eslint-disable require-jsdoc */ const Foo = ()...

In `src/test.js`: ```js const foo = { bar: () => {} } /** A baz. */ class Baz {} ``` Running `documentation lint src` results in this warning: ``` 5:1...