diff options
author | http://kerravonsen.dreamwidth.org/ <http://kerravonsen.dreamwidth.org/@web> | 2012-01-16 02:30:38 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-01-16 02:30:38 -0400 |
commit | 2d99a2b6ee208c79003657735f69e148e33340f8 (patch) | |
tree | a6d3aedb4d4780f7fc1148dd4bc8e5fd6abc0476 | |
parent | fb80a045e48bbfdff50a3bb315dc9d8897541b83 (diff) | |
download | ikiwiki-2d99a2b6ee208c79003657735f69e148e33340f8.tar ikiwiki-2d99a2b6ee208c79003657735f69e148e33340f8.tar.gz |
new plugin "newpage"
-rw-r--r-- | doc/plugins/contrib/newpage.mdwn | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/plugins/contrib/newpage.mdwn b/doc/plugins/contrib/newpage.mdwn new file mode 100644 index 000000000..850411004 --- /dev/null +++ b/doc/plugins/contrib/newpage.mdwn @@ -0,0 +1,29 @@ +[[!template id=plugin name=newpage author="[[rubykat]]"]] +[[!tag type/web]] +[[!toc]] +## NAME + +IkiWiki::Plugin::newpage - add a "create new page" form to actions + +## SYNOPSIS + + # activate the plugin + add_plugins => [qw{goodstuff newpage ....}], + +## DESCRIPTION + +This plugin adds a new action to the "ACTIONS" section of a page; +a button labelled "create" and an input field next to it. + +The common way of creating a new page is to edit a different page +and add a link to the new page. However, there are some situations +where that is a nuisance; for example, where pages are listed using +a [[!ikiwiki plugins/map]] directive. The newpage plugin enables +one to simply type the name of the new page, click the "create" button, +and one is then taken to the standard IkiWiki create-page form. + +## DOWNLOAD + +* browse at GitHub: <http://github.com/rubykat/ikiplugins/blob/master/IkiWiki/Plugin/newpage.pm> +* git repo at git://github.com/rubykat/ikiplugins.git + |