How can I hide the code cells of an ipynb file when building a website with Jupyter book?

如何在使用Jupyter book搭建网站时隐藏 ipynb 文件代码单元格?How can I hide the code cells of an ipynb file when building a website with Jupyter book?
这样有利于我复习。This is beneficial for my review.
下面设置后仍然不起作用。The following settings still don’t work.

config:
html:
use_repository_button: false # 去掉 GitHub 按钮
use_issues_button: false # 去掉问题按钮
use_download_button: false # 去掉下载按钮
favicon: favicon.ico # 网站图标
theme:
name: furo # 主题名称pydata_sphinx_theme
static_dir:
- _static # 静态文件目录
css_files:
- _static/custom.css # 自定义 CSS 文件
search:
enabled: true # 启用搜索功能
interactive: true # 启用交互支持
pygments_style: monokai # 指定代码高亮样式

script_files:

- _static/hide_code.js

nb_render:
hide_code: true # 隐藏所有代码单元格
hide_output: false # 显示输出
hide_prompt: true # 隐藏提示符

myst_enable_extensions:
- “html_image” # 启用 HTML 图像扩展
- “colon_fence” # 启用冒号围栏语法
- “dollarmath” # 启用 LaTeX 数学公式支持

Sphinx 配置

sphinx:
extra_extensions:
- myst_nb # 启用 MyST-NB 扩展
# - _extensions.print_config # 加载调试扩展
myst_nb:
execute:
cache: true # 启用缓存
remove_code_source: true # 隐藏代码单元格
remove_code_outputs: false # 显示输出
code_cell_tags:
- “hide-input” # 隐藏输入
- “scroll-output” # 滚动输出