-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add docstrings #53
Comments
See |
Seems there is: https://docs.npmjs.com/cli/v9/configuring-npm/package-json#man |
Care to make a PR? |
Hmm ... I just went to do that and realized the line is already there in the package.json, so it should work already.
|
Did a little digging. It could have something to do with the fact I'm using Here's what its installation directory tree looks like. Seems it puts the man doc in ~/.local/share/pnpm/global/5/node_modules/@djot/djot
❯ tree
.
├── dist
│ └── djot.js
├── doc
│ └── djot.1
├── lib
│ ├── ast.js
│ ├── attributes.js
│ ├── block.js
│ ├── cli.js
│ ├── djot-renderer.js
│ ├── event.js
│ ├── filter.js
│ ├── find.js
│ ├── html.js
│ ├── index.js
│ ├── inline.js
│ ├── options.js
│ ├── pandoc.js
│ ├── parse.js
│ └── version.js
├── LICENSE
├── node_modules
├── package.json
├── README.md
└── types
├── ast.d.ts
├── attributes.d.ts
├── block.d.ts
├── cli.d.ts
├── djot-renderer.d.ts
├── event.d.ts
├── filter.d.ts
├── find.d.ts
├── html.d.ts
├── index.d.ts
├── inline.d.ts
├── options.d.ts
├── pandoc.d.ts
├── parse.d.ts
└── version.d.ts I'll dig a little more later ... |
You probably just need to adjust your MANPATH so that it looks in this directory. |
When you get a chance, it'd be nice to have tsdoc/jsdoc docstrings in the codebase :-)
Also:
The text was updated successfully, but these errors were encountered: