Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial support for notebook document sync methods #356

Merged
merged 12 commits into from
Sep 19, 2023
Merged
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
def lsp_role(name, rawtext, text, lineno, inliner, options={}, content=[]):
"""Link to sections within the lsp specification."""

anchor = text.replace("/", "_")
anchor = text.replace("$/", "").replace("/", "_")
ref = f"https://microsoft.github.io/language-server-protocol/specification.html#{anchor}"

node = nodes.reference(rawtext, text, refuri=ref, **options)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ User Guide

pages/getting_started
pages/tutorial
pages/advanced_usage
pages/user-guide
pages/testing
pages/migrating-to-v1
pages/reference
Expand Down
Loading
Loading