README.md
1Strata
2======
3This is a fork from the Strata plugin originally created by Brend Wanders, and no longer maintained.
4I added minor changes for my own use as the basis for a risks management tool, I publish them here in case it could help someone.
5
6
7Strata is a semi-structured data plugin for [DokuWiki][dw]. Strata allows you to add data to your wiki pages, and later on query that data to create automatic indices or other overviews.
8
9#### Installation
101. Use the DokuWiki plugin manager to install Strata.
112. Optionally, copy the contents of the ``manual.txt`` file into a wiki page (``wiki:strata`` would be a good location)
123. Optionally, configure your DokuWiki instance's [`useheading`](https://www.dokuwiki.org/config:useheading) setting to have nicer-looking links.
13
14#### Quick-start
15Below is a very simple example of how to use Strata. You can find more information in the ``manual.txt`` (which you can copy-paste into a wiki page to have the manual available for all users).
16
17Add data to a page with:
18
19 <data person>
20 Full Name: John Doe
21 Age: 24
22 Contact [link]: john.doe@example.org
23 </data>
24
25Later on, you can make a list (to get a table, use ``<table>`` instead) of people with:
26
27 <list ?person ?contact>
28 ?person is a: person
29 ?person Contact [link]: ?contact
30 </list>
31
32
33#### More Information
34
35See the [plugin page][pp] for more information on usage and configuration.
36
37[dw]: https://www.dokuwiki.org
38[pp]: https://www.dokuwiki.org/plugin:strata
39