What is prosemirror using for generating javascript documentation?

I am looking for documenting my javascript code and checked out jsDoc, esDoc, docco, etc. Still not able to fall for any one of these. I really like how prosemirror documentation flows. Especially no tables.

Can you please let me know, what are you using?

We use getdocs to extract the doc comments from the code, and builddocs to turn the result of that into HTML, via this script. These are tools that I built for this purpose, so though they are designed to be generic, they haven’t seen much use in other projects yet.

1 Like

Thanks @marijn!! I will try this.