Vcl.Markdown.TMDViewer.GotoAnchor
Prototype
procedure GotoAnchor(const aAnchor :string);
Description
Jump to aAnchor in the current document. A leanding hash # is optional.
Jumping to an anchor adds an entry to the history list, allowing you to jump back and forth using the GotoPrevious and GotoNext methods. OnNavigate is fired after this method is called.
Examples
GotoAnchor('#my_anchor');
GotoAnchor('my_anchor');