collective.simplewiki

Simple wiki linking syntax support for Plone


Keywords
Plone, wiki, wicked
License
GPL-2.0+
Install
pip install collective.simplewiki==1.0.1

Documentation

collective.simplewiki

Provides simple wiki-style linking to other content within a Plone site.

Text that is wrapped with (()) or [[]] is rendered as a link.

The wrapped text is used to look up content items within the site, as either ID or title.

If the content item exists on the site, the rendered link is to that item.

The link is resolved in the following order:

  1. a matching ID within the same folder
  2. a matching title within the same folder
  3. a matching ID somewhere else in the site
  4. a matching title somewhere else in the site

If none of these match (i.e., a content item by that ID or title does not exist), the rendered link is to the add form for a page ("Document" content type), with the Title field pre-filled with the text wrapped by (()) or [[]].

Example

The following example shows how text is rendered on a new local Plone site named "Wiki" containing the default welcome page (ID: front-page, title: "Welcome to Plone")

The text:

This is a link to a ((test page)).

Whatever you do, don't [[try this at home]]!

If in doubt, link to ((front-page)) or to ((front page)).

You can also link to [[Welcome!]] or [[Welcome]] or [[Welcome to Plone]].

is rendered as:

Comments:

  • The entire rich text field is wrapped in a <div> with the class simplewiki-container.
  • ((test page)) links to an add form.
  • [[try this at home]] links to an add form because no content item exists by that ID or title on the site.
  • ((front-page)) links to the site's default front page.
  • ((front page)) links to an add form because no content item exists by that ID or title on the site.
  • [[Welcome!]] and [[Welcome]] do not match any content item by ID nor by full title, but [[Welcome to Plone]] links to the default front page since its title matches fully.

Installation

Install collective.simplewiki by adding it to your buildout:

[buildout]

 ...

 eggs =
     collective.simplewiki

and then running "bin/buildout"

Plone Compatibility

This add-on has been tested with Plone 5.0 and 5.1.

Contribute

License

The project is licensed under the GPLv2.

Acknowledgements

This add-on was developed by Wildcard Corp. and graciously funded and released to the community by Zombie Orpheus Entertainment.

Thanks to Ben Dobyns of Zombie Orpheus Entertainment and Hawke Robinson of RPG Research