Description
Is your feature request related to a problem or challenge?
Part of #7013
@ugoa has updated our examples in the following PR to all compile and be tested
One major problem I have with using # to hide setup code, is that the sphinx won't respect the leading # and still renders the whole block, which leading huge chunk of ugly code blocks.
Describe the solution you'd like
I would like to be able to hide the setup code for the examples, following the rustdoc convention of ignoring lines that begin with #
For example, in our docs here:
datafusion/datafusion/core/src/lib.rs
Lines 59 to 94 in 91c0975
Lines that start with #
are not rendered in the markdown docs on https://docs.rs/datafusion/latest/datafusion/index.html
Describe alternatives you've considered
I wonder if we can find find some way to add a sphinx plugin or something to avoid rendering the blocks of ugly code.
You can build and test the documentation locally by following the instructions here: https://github.com/apache/datafusion/blob/main/docs/README.md
I normally do
cd docs
./build.sh
open build/html/index.html
Additional context
No response