{ "info": { "author": "Nathan Van Gheem", "author_email": "vangheem@gmail.com", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 5.0", "Framework :: Plone :: 5.1", "Programming Language :: Python", "Programming Language :: Python :: 2.7" ], "description": "collective.simplewiki\n=====================\n\nProvides simple wiki-style linking to other content within a Plone site.\n\nText that is wrapped with `(())` or `[[]]` is rendered as a link.\n\nThe wrapped text is used to look up content items within the site, as either ID or title.\n\nIf the content item exists on the site, the rendered link is to that item.\n\nThe link is resolved in the following order:\n\n1. a matching ID within the same folder\n2. a matching title within the same folder\n3. a matching ID somewhere else in the site\n4. a matching title somewhere else in the site\n\nIf 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 `[[]]`.\n\nExample\n-------\n\nThe 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\")\n\nThe text::\n\n This is a link to a ((test page)).\n\n Whatever you do, don't [[try this at home]]!\n\n If in doubt, link to ((front-page)) or to ((front page)).\n\n You can also link to [[Welcome!]] or [[Welcome]] or [[Welcome to Plone]].\n\nis rendered as:\n\n.. code-block:: html\n\n
This is a link to a\n + test page\n .\n
\nWhatever you do, don't\n + try this at home\n !\n
\nIf in doubt, link to\n Welcome to Plone\n or to\n + front page\n .\n
\nYou can also link to\n + Welcome!\n or\n + Welcome\n or\n Welcome to Plone\n .\n
\n