There are two problems that are preventing SectionLinksPlugin from
working with your current document content:
The first problem concerns use of the following CSS in your
[[StyleSheet]]:
h1 { display:none; }
I recall that I had suggested this particular trick a little while ago
as a way to hide the headings so that only the content in the tiddler
is visible, while still being able to use the headings to define the
'tiddler sections'.
Unfortunately, although this technique works when using the sections
to transclude content into other tiddlers (e.g., <<tiddler
TiddlerName::sectionName>>), SectionLinksPlugin can only scroll to a
section heading if it is actually *displayed* in the document... and
using "display:none" prevents that from working properly because a
hidden heading element apparently has a default rendered location on
the page of (0,0).
Fortunately, there is another way to use CSS that will render the
heading elements at their proper 'inline' locations while also
preventing them from having a *visible* effect on the section content
that follows them:
h1 { display:inline; visibility:hidden; border:0; padding:0; margin:
0; font-size:0; line-height:0; }
The second problem that is interfering with your use section links
relates to how you have formatted the 'target' tiddler: because it is
very long, you have used a custom CSS wrapper, {{sc{...}}}, to enclose
the tiddler's content within a fixed-height, scrolling DIV, where
".sc" is defined in the [[StyleSheet]] as:
.sc { height:225px; ... overflow:auto; ... }
However, SectionLinksPlugin works by scrolling the whole *page* using
the standard window.scrollTo() function, and does not have the ability
to identify and scroll to a position within specific custom-defined
scrollable DIV that has been rendered within some tiddler.
If you want SectionLinksPlugin to work with this particular content
then, in addition to using the alternative "h1" definition I've
described above, you'll also have to remove the {{sc{...}}} wrapper
from the target tiddler (or just set the CSS for .sc to
{ height:auto; }),