Welcome to Lexipedia! This guide will get you up and running as an editor. Whether you're here to document a legal process, create a BPMN diagram, or simply fix a typo, this page covers everything you need to know.
To edit pages on Lexipedia, you need a registered account. Click Register in the top-right corner of any page, fill in the form, and you're ready to go. Once logged in, you'll see Edit buttons on every page section and a pencil icon in the right-hand toolbar.
Lexipedia runs on DokuWiki, a lightweight, file-based wiki engine. Editing is done through simple text markup — no special software required.
To edit an existing page, click the pencil icon on the right side of the page, or click any section's Edit button. To create a new page, simply link to a page name that doesn't exist yet (e.g., [[my new page]]), save, then click the red link to create it.
| What you type | What you get |
|---|---|
**bold text** | bold text |
//italic text// | italic text |
__underlined__ | underlined |
''monospaced'' | monospaced |
DokuWiki uses equals signs for headings. More equals signs means a higher-level heading (the opposite of some other wikis):
====== Level 1 Heading (Page Title) ====== ===== Level 2 Heading ===== ==== Level 3 Heading ==== === Level 4 Heading ===
Headings automatically generate the Table of Contents you see in the sidebar.
* Unordered item (two spaces + asterisk)
* Another item
* Nested item (four spaces + asterisk)
- Ordered item (two spaces + dash)
- Another item
Tables use | for cells and ^ for header cells:
^ Header 1 ^ Header 2 ^ | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
Upload images through the Media Manager (top menu bar), then embed them:
{{image.png}} - full size
{{image.png?200}} - 200px wide
{{image.png?200x150}} - 200x150px
---- creates a horizontal rule<code>...</code> creates a code block<nowiki>...</nowiki> prevents wiki formatting from being processedFor the complete reference, see the official DokuWiki syntax guide.
BPMN (Business Process Model and Notation) is the backbone of Lexipedia. It's an international standard (ISO 19510) for visually diagramming business processes, and it's how we represent legal and civic procedures as clear, step-by-step flowcharts.
Legal processes are often buried in dense statutory text. BPMN diagrams make them visual and executable. If you can read a flowchart, you can read a BPMN diagram. For a deeper look at the rationale, see the Project Overview.
Here are the building blocks you'll encounter and use:
| Element | Symbol | What It Means |
|---|---|---|
| Start Event | Circle (thin border) | Where the process begins |
| End Event | Circle (thick border) | Where the process concludes |
| Task | Rounded rectangle | A single unit of work (e.g., “File application”) |
| Gateway (Exclusive) | Diamond | A decision point — the flow takes one path (e.g., “Approved?” → Yes/No) |
| Gateway (Parallel) | Diamond with + | All outgoing paths are followed simultaneously |
| Sequence Flow | Arrow | Shows the order of steps |
| Pool / Lane | Large horizontal box | Represents a participant or department |
Each legal process entry in Lexipedia (see the Sample Entry template) includes a BPMN model section. BPMN diagrams are stored as XML and rendered visually in the wiki. The typical workflow is:
See How We Process Our Data for a diagram of this pipeline.
The easiest way to get started:
You can also use AI assistants (Claude, ChatGPT, Gemini) to generate BPMN XML from a plain-language description of a process. Just describe the steps and ask for BPMN 2.0 XML output, then paste the result into the wiki. See the technical documentation for more on this approach.
DMN (Decision Model and Notation) is BPMN's companion standard. While BPMN models the flow of a process, DMN models the decisions within it.
DMN provides a way to define business decisions using decision tables, which look a lot like spreadsheets. Each row represents a rule: “If these conditions are met, then here's the result.”
For example, in a business licensing process, a DMN table might capture:
| Business Type | Revenue | License Required |
|---|---|---|
| Restaurant | Any | Food Service License |
| Retail | > $500k | Large Retail Permit |
| Retail | ≤ $500k | Standard Business License |
In Lexipedia process models, you'll often find a BPMN task labeled something like “Determine License Type.” That task's logic is defined by a DMN decision table. Together, BPMN and DMN give you the complete picture: the process flow (BPMN) and the rules driving each decision (DMN).
DMN tables can also be executed in SpiffWorkflow, turning static documentation into working automation.
Most Lexipedia process documentation follows the structure shown in the Sample Entry. Here's a simplified overview of the key sections:
You don't need to fill out every section for every page. Start with what you know and the community will help fill in the rest.
Here are some easy ways to make your first edit:
[[brackets]].Welcome aboard — we're glad you're here.