Earlier quoted context omitted.
It comes out of the box. We are now trying to figure out how to switch screenshots based on the light/dark mode. The screenshots taken from light mode of ToolJet looks odd in Docusaurus' dark mode.
You could build your own react image wrapper then use that component in the mdx and pass in two images, then display the appropriate one based on the current theme provider. Docusaurus makes using inline react components easy. You could also write your own remark plugin, that does it for you, and would have the benefit of having more control over what happens on the github side if it was still standard markdown.
Ask HN: What are you using for public documentation these days?
61–70 of 111 posts
Re: Ask HN: What are you using for public documentation these days?
#62Some of the styling could be improved (those section headings for one!), but IMHO it produces better results than other more general-purpose manpage to HTML converters: see e.g. https://www.htslib.org/doc/samtools.html>.
Re: Ask HN: What are you using for public documentation these days?
#63Docs are kept in separate folders for each release.
Re: Ask HN: What are you using for public documentation these days?
#64It can generate HTML, CHM, PDF etc, all from a single source.
It is one of my favourite software tools (I am a customer and have no financial interest in it).
Re: Ask HN: What are you using for public documentation these days?
#65https://squidfunk.github.io/mkdocs-material/getting-started/
Re: Ask HN: What are you using for public documentation these days?
#66We are using Docusaurus ( https://docusaurus.io/ ). - it is easy to configure/customise - looks really great out of the box - solid documentation - fast In our case, we just had to change the colors and font. Here is our Docusaurus code if that's helpful: https://github.com/ToolJet/ToolJet/tree/develop/docs and here is the live documentation: https://docs.tooljet.com/
Docusaurus is great! We migrated from Sphinx to Docusaurus[1] recently, the navigation is much better than before. One thing that bothers us: we have not figure a way to name the anchor that both work in Github (` `) and Docusaurus (`{#aws-s3}`), for example [2]. Any ideas? [1] https://juicefs.com/docs/community/introduction [2] https://github.com/juicedata/juicefs/blob/main/docs/en/how_t...
Re: Ask HN: What are you using for public documentation these days?
#67Earlier quoted context omitted.
You are right, placing the navigation on the sidebar is more useful than the links to GitHub and Slack.
Update to a more recent version, they re-worked the nav to be one menu on mobile.
Re: Ask HN: What are you using for public documentation these days?
#68Re: Ask HN: What are you using for public documentation these days?
#69Preview: https://www.pinecone.io/docs/
Re: Ask HN: What are you using for public documentation these days?
#70Anyone know of a good hosted documentation that allows you to password protect the docs for a startup? (We don’t want public documentation and want to control access per user)
https://docs.nginx.com/nginx/admin-guide/security-controls/c...
You can Google 'nginx reverse proxy authentication' to find guides.