AnchorLink

Background and rationale

MoinMoin provides a the macro <<Anchor(anchorname)>> to insert anchors into a page. To link to anchors in the current page the MoinMoin markup is [[#anchorname]] or [[#anchorname|label text]]. This inserts a link using a call to the pagelink function of the formatter, with the link created in the form <a href="/pagename#achorname">anchorname</a>. This works fine but it isn't interpreted as a internal page link when converted to a PDF by wkhtmltopdf as used in the PDF.py action.

However, the internal page links to title anchors inserted by the <<TableOfContents>> macro are interpreted correctly by wkhtmltopdf. This occurs because <<TableOfContents>> calls the anchorlink function of the formatter. This function creates a link in the form <a href="#achorname">anchorname</a>.

Therefore, a macro to create a link to an anchor in the current page in the same way links are created by the <<TableOfContents>> macro is needed to provide compatibility with the PDF.py action.

Description

AnchorLink is a macro to insert a link to an anchor in the current page using HTML that is correctly interpreted when the page is converted to a PDF by wkhtmltopdf as used in the PDF.py action.

The label text is inserted without a # prefix. This prefix is included for links created by [[#anchorname]], which is ideal. So if the anchorname is meaningful in its own right, no alternative text needs to be provide, keeping the markup more readable.

Usage

<<AnchorLink(text)>>

<<AnchorLink(anchorname) - inserts anchor link using anchorname as the label text.

<<AnchorLink(anchorname|description>> - inserts anchor link using description as the label text.

To be functional an anchor must be created by <<Anchor(anchorname)>> elsewhere in the page.

Alternatively anchorname can be the same as a heading, thereby creating a link to that heading because MoinMoin creates anchors for all headings.

Example

<<AnchorLink(ExampleAnchor|Click to go to Example Anchor)>>

<<AnchorLink(Example Heading|Click to go to Example Heading)>>

<<Anchor(ExampleAnchor)>> Example anchor here.

=== Example Heading ===

Click to go to Example Anchor

Click to go to Example Heading

Example anchor points here.

Example Heading

Example anchor link point to this section.

Download & Release Notes

Download

Release Version

Moin Version

Release Notes

AnchorLink-1.0.py

1.0

1.9.2

License

GNU GPL, see COPYING for details.

Known issues and limitations


Hits

480

AnchorLink.py (last edited 2013-06-23 06:23:21 by IanRiley)