documentation
documentation copied to clipboard
:book: documentation for modern JavaScript
Now that we've powered up themes to have substantive logic of their own, I think they're probably going to want options of their own too. Example use cases: more specialized...
How exactly does one make a custom theme work: I tried initially to - copy this folder locally in my project to docs/theme https://github.com/documentationjs/documentation/tree/master/src/default_theme - run command `documentation build --format...
### non-private field :+1: ```js /** * Holding builtin toHtml variants. * @property {toHtml} classic - designed for {@link TaxiOptions}.data type of string[]. */ static ToHtml = Object.freeze({ classic: (entry)...
* What version of documentation.js are you using?: 13.1.0 * How are you running documentation.js (on the CLI, Node.js API, Grunt, other?): CLI I have a react native project with...
* What version of documentation.js are you using?: 5.3.2 * How are you running documentation.js (on the CLI, Node.js API, Grunt, other?): CLI On a project, we have fairly gnarly...
I am trying using the following command: `documentation build ./packages/* -f html -o docs --shallow` It generates some docs that looks quite weird and it takes quite some time to...
Hi, i am experiencing the following error with graphql codegenerator tool with flow. Generated code looks fine, but documentation returns an Error. test.flow.js ```javascript // @flow /** All built-in and...
How to generate documentation for different languages?
I have the following module and methods signature: ```js function module() { function method() { } function Method() { } return { method, Method } } ``` How would I...
Is it possible to make the following code work? ```javascript /** * @typedef { import("@organization/package/path") } Config * / ```