• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

LICENSED04-Aug-202434.3 KiB675553

README.mdD04-Aug-20241.3 KiB4433

plugin.info.txtD04-Aug-2024170 76

style.cssD04-Aug-2024828 5144

syntax.phpD04-Aug-20242.6 KiB7053

README.md

1
2# DokuWiki Infobox Plugin
3
4This plugin adds an infobox functionality to DokuWiki, allowing users to easily create structured information boxes for characters, places, or any other entities in their wiki.
5
6![Example Image](https://github.com/user-attachments/assets/bc071cb2-aaf6-41b6-8e6b-95aae67ffa53)
7
8## Features
9
10- Easy-to-use syntax for creating infoboxes
11- Customizable fields
12- Supports DokuWiki internal links within infobox fields
13- Dark theme by default
14
15## Installation
16
171. Download the plugin
182. Create a new folder named `infobox` in your DokuWiki's `lib/plugins/` directory
193. Extract the downloaded files into this new folder
204. Log into your DokuWiki as an admin and go to the Configuration Settings page
215. Look for the infobox plugin in the plugin section and enable it if necessary
22
23## Usage
24
25To use the infobox in a page, use the following syntax:
26
27```markdown
28{{infobox>
29name = Character Name
30image = character_image.jpg
31Full Name = Full Character Name
32Title = Character's Title
33Age = Character's Age
34Race = Character's Race
35Origin = [[Character's Homeland]]
36Role = Character's Role
37Affiliations = [[Group 1]], [[Group 2]], [[Group 3]]
38Special Abilities = Ability 1, Ability 2, Ability 3
39Notable Achievements = Achievement 1, Achievement 2, Achievement 3
40Companions = [[Companion 1]], [[Companion 2]]
41Enemies = [[Enemy 1]], [[Enemy 2]]
42}}
43```
44