Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
Post History
Fancy Heading This is technically already possible using HTML: just add an id attribute to your header tags: <h1 id="fancy-heading">Fancy Heading</h1> Going to /questions/123456#fancy-...
Answer
#2: Post edited
- This is technically already possible using HTML: just add an `id` attribute to your header tags:
- ```
- <h1 id="fancy-heading">Fancy Heading</h1>
- ```
- Going to `/questions/123456#fancy-heading` will now send you straight to that heading - even if it's in an answer.
Given that this is already possible and adding it to the Markdown renderer isn't that easy, we'll leave it as-is for now, but we may be able to revisit once we've hit MVP.
- <h1 id="fancy-heading">Fancy Heading</h1>
- This is technically already possible using HTML: just add an `id` attribute to your header tags:
- ```
- <h1 id="fancy-heading">Fancy Heading</h1>
- ```
- Going to `/questions/123456#fancy-heading` will now send you straight to that heading - even if it's in an answer.
- Given that this is already possible and adding it to the Markdown renderer isn't that easy, we'll leave it as-is for now, but we may be able to revisit once we've hit MVP.
- <a href="#fancy-heading">Click this!</a>
#1: Initial revision
This is technically already possible using HTML: just add an `id` attribute to your header tags: ``` <h1 id="fancy-heading">Fancy Heading</h1> ``` Going to `/questions/123456#fancy-heading` will now send you straight to that heading - even if it's in an answer. Given that this is already possible and adding it to the Markdown renderer isn't that easy, we'll leave it as-is for now, but we may be able to revisit once we've hit MVP.