You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a link to another place in the same markdown document, the published Listed site reloads the page at the root level (with the link tag appended to the url) instead of navigating the page scroll to the appropriate tag on the page:
[Link to Header](#example-header)# Example Header
The text was updated successfully, but these errors were encountered:
In short, same-document hyperlinks with the # prefix target elements by ID, and the Listed generated header tags like h1, h2 etc; do not get generated with any ID attributes.
In the example I put in the comment above, the HTML that would get generated to enable same-document hyperlinks would look like:
<ahref="...#example-header">Link to Header</a><h1id="example-header">Example Header</h1>
When using a link to another place in the same markdown document, the published Listed site reloads the page at the root level (with the link tag appended to the url) instead of navigating the page scroll to the appropriate tag on the page:
The text was updated successfully, but these errors were encountered: