Can we add a copyable link to each header section on a wiki page?

Here’s a page from the Python wiki. https://wiki.python.org/moin/BeginnersGuide

I would like to copy a link from a specific section, but I don’t see a way to do that. Nor do I see a table of contents for the page itself.

Can we add that ability?

Some websites will have a link character popup next to the header so we can copy a link to that exact header on that page.

The link is in the address bar of your browser. Is that what you mean?

You can inspect element to figure out the ID: https://wiki.python.org/moin/BeginnersGuide#Getting_Python

1 Like

The wiki is on MoinMoin, which is separate from documentation. We have lesser ability to make changes there (like, I think nobody would). Moin does support specifying anchors, but I don’t know if it renders them out where they’re something you can “copy link” from. Section headings do generate html with anchors (id="Section_Name"), but they’re not incredibly easy to extract - see the previous “inspect” comment.