I like being able to test that the code in my documentation is valid and runs, and to show the output without having to copy and paste it.
Hope htat's useful!
When I looked at Docusaurus I had the impression it would work very well for JavaScript projects where you could runt he code in-browser, but wasn't designed to document other language code?
We use MDX which basically compiles markdown to React components and allows to interleave components inside md content. So you can do similar things like having one doc importing the other. Maybe not as flexible (like importing only a few lines of the other doc).
You can display real production source code in code blocks in any language without having to copy-paste and it can stay in sync.
The live playground allows you to display js code blocks and print the result in the browser. I don't see how this could work with other languages.
You can display real production source code in code blocks in any language without having to copy-paste and it can stay in sync.
The live playground allows you to display js code blocks and print the result in the browser. I don't see how this could work with other languages.