Considerations

By default, this extension will generate the following HTML markup for TYPO3 content element headers:

<header>
    <h1 id="c35-section-of-interest" class="">
        This is the header of an interesting part of my article

        <!-- This link is only rendered if 'Set link to #anchor' is activated -->
        <a class="headline-anchor" href="#c35-section-of-interest">#</a>
    </h1>
</header>
Copied!

As you can see, the fragment identifier is used as an id attribute in HTML. This id can then be referenced in a link.

Potential issue

By adding the uid of the current TYPO3 content element, we'll circumvent this potential issue.