intersphinx
文档举个例子:
intersphinx_mapping = {
'python': ('https://docs.python.org/3', None),
}
与上面的示例类似,Polars 的正确 URL 是什么?
反复试验表明以下应该可行(如果想参考
stable
Polars;否则,必须进行适当的修改):
intersphinx_mapping = {
'polars': ('https://docs.pola.rs/api/python/stable', None)
}