sphinx怎么设置开启宽屏模式
时间: 2024-04-29 11:24:29 浏览: 141
sphinx-jsonschema:Sphinx扩展以显示JSON模式
要在Sphinx中启用宽屏模式,需要设置html_theme_options选项。在conf.py文件中,可以添加以下代码:
```python
html_theme_options = {
'wide_pages': True,
}
```
这将启用宽屏模式,并将页面宽度设置为100%。然后重新生成文档即可看到宽屏模式的效果。
阅读全文