-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Non-http URL schemes in Markdown cells #189
Comments
This is likely due to the sanitization by caja. We should investigate whether it is doing protocol whitelisting, and if we can disable it. |
@minrk : hi there- do you have any updates on this bug report? Does the bug still exist or can this issue be closed? Thanks! |
How is the current |
Would it compromise notebook security to allow |
Update to JupyterLab 3.1 final
I use URLs like these to link to scientific papers in my Papers2 library:
papers2://publication/citekey/Polsky:2004jc
In the notebook, the following results in a clickable URL:
But in a Markdown cell, this doesn't work (link is underlined but nothing happens when clicked):
Indeed the page source shows it was rendered as
<a>Polsky:2004jc</a>
. Changing the scheme to http causes a href attribute to appear (not fit for the original purpose obviously).I tested it in the current version of
marked
and the link renders properly. Is that a security setting? The notebook is trusted.The text was updated successfully, but these errors were encountered: