VS Code reStructuredText 找不到 conf.py 路徑解決辦法
阿新 • • 發佈:2018-11-02
VS Code reStructuredText 找不到 conf.py 路徑解決辦法
lextudio.restructuredtext
這一外掛用來預覽 rst 檔案很方便,但是有時不能正常檢測出 sphinx 配置,這時可以在 .vscode/settings.json
中寫這樣的配置
{
"restructuredtext.confPath": "${workspaceRoot}/你的conf.py所在目錄"
}
${workspaceRoot}
代表 VS Code 開啟的資料夾的根目錄。
例如我的 conf.py
路徑是${workspaceRoot}/snippets/rst-sphinx/conf.py
{
"restructuredtext.confPath": "${workspaceRoot}/snippets/rst-sphinx"
}