diff --git a/docs/conf.py b/docs/conf.py index bd470994..ad72b42a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,6 +23,7 @@ 'sphinx.ext.napoleon', 'sphinx.ext.viewcode', "sphinx.ext.intersphinx", + "hoverxref.extension", ] @@ -44,7 +45,12 @@ } intersphinx_disabled_reftypes = ["*"] - +hoverxref_auto_ref = True +hoverxref_intersphinx = [ + 'readthedocs', + 'sphinx', + 'python', +] napoleon_google_docstring = True autosummary_generate = True autoclass_content = 'both' @@ -87,18 +93,6 @@ 'navbar_links': [ ("TalkyTrader", "https://talkytrader.github.io/wiki/",True), - ("_menu", "🗿 Talky",[ - ("🪙 Get started", "https://talky.rtfd.io/01_start",True), - ("⚙️ Config", "https://talky.rtfd.io/02_config",True), - ]), - ("_menu", "🔌 Plugins",[ - ("👂 IamListening", "https://iamlistening.rtfd.io/", True), - ("🔎 FindMyOrder", "https://findmyorder.rtfd.io/", True), - ("⛓️ DXSP", "https://dxsp.rtfd.io/", True), - ("💱 CEX", "index",True), - ("💁 Helper", "index",True), - ("📰 Talkytrend", "https://talkytrend.rtfd.io/", True), - ]), ("_menu", "➕ More",[ ("🆕 What's new?", "https://github.com/mraniki/tt",True), ("💬 Connect", "https://talky.rtfd.io",True), diff --git a/pyproject.toml b/pyproject.toml index c91e4b7d..ade3c55a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ optional = true [tool.poetry.group.docs.dependencies] sphinx = ">=5,<6" sphinx_bootstrap_theme = "^0.8.1" -sphinxext-remoteliteralinclude = "^0.4.0" +sphinx-hoverxref = "^1.3.0" [tool.pytest.ini_options]