The __NextPlugin__ is a [NeWikiPlugin] that creates a 'next page' link, with a selectable icon.
This also sets a page attribute "next-page-name" to the name of the next page.

If more than one instance occurs on a page the last one processed wins.

See also: [PreviousPlugin]


!! Parameters

* __page__ = '''name'''. A required parameter providing the name of the target page.
* __icon__ = '''arrow''' | '''button''' | '''hand''' | '''page''' | '''triangle'''. An optional parameter indicating the type of icon to use. The default is 'arrow'.
* __text__ = '''true''' | '''on''' | '''yes''' . An optional parameter flag that if true shows the page name in the link (default true).

!! Test

(default icon)
{{{
[{NextPlugin page='Main'}]
}}}
[{NextPlugin page='Main'}]

{{{
[{NextPlugin icon='button' page='Main'}]
}}}
[{NextPlugin icon='button' page='Main'}]


{{{
[{NextPlugin icon='hand' page='Main'}]
}}}
[{NextPlugin icon='hand' page='Main'}]


{{{
[{NextPlugin icon='page' page='Main'}]
}}}
[{NextPlugin icon='page' page='Main'}]


{{{
[{NextPlugin icon='triangle' page='Main'}]
}}}
[{NextPlugin icon='triangle' page='Main'}]


{{{
[{NextPlugin icon='triangle' text='no' page='Main'}]
}}}
[{NextPlugin icon='triangle' text='no' page='Main'}]

----

See also: [PreviousPlugin]