Can someone explain how to do an on-click hyperlink or insert a hyperlink in Jupyter notebook markdown?
Ah, found out how to insert external link. https://www.ibm.com/support/knowledgecenter/en/SSGNPV_1.1.3/dsx/markd-jupyter.html
Just need to find out how to do this. I’m not sure what the wording is to describe it. But basically the link embedded in different text, like how it is in in this screenshot in blue, “discussion section”.
Internal links
For internal (within the same notebook) links use this code:
[section title](#section-title)
For the text in the parentheses, replace spaces and special characters with a hyphen.
Alternatively, you can add an ID for a section right above the section title.
Use this code: <a id="section_ID"></a>
Make sure that the section_ID is unique within the notebook.
Use this code: [section title](#section_ID)
External links
Use this code: [external link text](http://url_here)
Make sure that you test all links!
This link is no longer active.