I have a Jupyter notebook that I'm using for data analysis, everything is working exactly as I expect as far as the actual analysis part. I'm trying to get my output to a simple report on the analysis, without showing the code that I used to generate the results / maps. I've tried adding a "hide-input" tag to the code block per https://jupyterbook.org/en/stable/interactive/hiding.html, but the code block is still being rendered as if the tag isn't there.
The metadata on the code block is:
{
"trusted": true,
"tags": [
"hide-input"
]
}
I don't care as much about the display inside the Jupyter notebook, but when I render a PDF, I don't want the code input block showing, since it will only serve to confuse my audience (said audience has no experience with or even knowledge of Python and uses computers only to check email).