Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| wiki:plugins [2022/11/27 10:20] – created ric | wiki:plugins [2022/11/30 16:29] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| # Plugins | # Plugins | ||
| + | |||
| + | ## bootswrapper | ||
| + | |||
| + | Bootswrapper allows us to use some of the bootstrap controls within the page. | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | There' | ||
| + | Note the syntax inside the control has to be dokuwiki syntax instead of markdown which limit' | ||
| + | |||
| + | ~~~ | ||
| + | ```dokuwiki | ||
| + | < | ||
| + | ===== Hello, world! ===== | ||
| + | |||
| + | This is a simple hero unit, a simple jumbotron-style | ||
| + | component for calling extra attention to featured | ||
| + | content or information. | ||
| + | </ | ||
| + | ``` | ||
| + | ~~~ | ||
| + | |||
| + | ```dokuwiki | ||
| + | < | ||
| + | ===== Hello, world! ===== | ||
| + | |||
| + | This is a simple hero unit, a simple jumbotron-style | ||
| + | component for calling extra attention to featured | ||
| + | content or information. | ||
| + | </ | ||
| + | ``` | ||
| + | |||
| + | ## cellbg | ||
| + | |||
| + | cellbg allows us to control the background color of cells within tables | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | | Header1 | Header2 | ||
| + | |--|--| | ||
| + | | @darkgreen: | ||
| + | | @# | ||
| + | |||
| + | This seems to work ok with the markdown table syntax | ||
| + | |||
| + | |||
| + | ## syntaxhighlightjs | ||
| + | |||
| + | syntaxhighlightjs is the plugin used for highlighting code blocks. | ||
| + | The name after the 3 single back ticks is the name of the language to highlight for | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ~~~ | ||
| + | ```py | ||
| + | # Example Python code | ||
| + | def my_function(): | ||
| + | print(" | ||
| + | ``` | ||
| + | ~~~ | ||
| + | |||
| + | ```py | ||
| + | # Example Python code | ||
| + | def my_function(): | ||
| + | print(" | ||
| + | ``` | ||
| + | |||
| + | ## dw2pdf / bookcreator | ||
| + | |||
| + | dw2pdf is an addon for exporting pages as a pdf. | ||
| + | There' | ||
| + | |||
| + | * https:// | ||
| + | * https:// | ||
| + | |||
| + | ## Gallery | ||
| + | |||
| + | The gallery plugin allows us to show all the images in a namespace / directory | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ``` | ||
| + | {{gallery>: | ||
| + | ``` | ||
| + | |||
| + | ## searchtablejs | ||
| + | |||
| + | searchtablejs allows for filterable tables. | ||
| + | However it does rely on the dokuwiki syntax to work, also the sortable aspect doesn' | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ~~~ | ||
| + | ```dokuwiki | ||
| + | < | ||
| + | ^ Test ^ Col1 ^ Col2 ^ | ||
| + | | Row1 | Val1 | Val2 | | ||
| + | | Row2 | Val3 | Val4 | | ||
| + | </ | ||
| + | ``` | ||
| + | ~~~ | ||
| + | |||
| + | ```dokuwiki | ||
| + | < | ||
| + | < | ||
| + | ^ Test ^ Col1 ^ Col2 ^ | ||
| + | | Row1 | Val1 | Val2 | | ||
| + | | Row2 | Val3 | Val4 | | ||
| + | </ | ||
| + | </ | ||
| + | ``` | ||
| ## Barcode | ## Barcode | ||
| Line 7: | Line 118: | ||
| * https:// | * https:// | ||
| - | Example: | + | For example this creates a barcode which links to the current url of this page |
| ~~~ | ~~~ | ||
| ```dokuwiki | ```dokuwiki | ||
| Line 17: | Line 128: | ||
| ~~BARCODE~~ | ~~BARCODE~~ | ||
| ``` | ``` | ||
| + | |||
| + | ## Wrap | ||
| + | |||
| + | The Wrap plugin allows for highlighting warnings or errors, things to watch out for | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ~~~ | ||
| + | ```dokuwiki | ||
| + | <WRAP center round important 60%> | ||
| + | important box | ||
| + | </ | ||
| + | ``` | ||
| + | ~~~ | ||
| + | |||
| + | ```dokuwiki | ||
| + | <WRAP center round important 60%> | ||
| + | important box | ||
| + | </ | ||
| + | ``` | ||
| + | |||
| + | ## Draw IO | ||
| + | |||
| + | This one is very handy, it allows us to embed a draw.io flow chart editor directly into the page. | ||
| + | The file is then saved in the normal file attachment area in the wiki | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ``` | ||
| + | {{drawio> | ||
| + | ``` | ||
| + | |||
| + | {{drawio> | ||
| + | |||
| + | ## Googlemaps3 | ||
| + | |||
| + | For when we want to insert a map into a page | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ~~~ | ||
| + | ```dokuwiki | ||
| + | < | ||
| + | 53.48444383692624, | ||
| + | </ | ||
| + | ``` | ||
| + | ~~~ | ||
| + | |||
| + | ```dokuwiki | ||
| + | < | ||
| + | 53.48444383692624, | ||
| + | </ | ||
| + | ``` | ||
| + | |||
| + | ## xkcd | ||
| + | |||
| + | The xkcd plugin adds a small webcomic to the page | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | ``` | ||
| + | [xkcd] | ||
| + | ``` | ||
| + | |||
| + | [xkcd] | ||
| + | |||
| + | ## Backend Plugins | ||
| + | |||
| + | * Git Backed allows us to backup the wiki content to a git repo | ||
| + | https:// | ||
| + | * Preregister for email verification | ||
| + | https:// | ||
| + | * Captcha plugin | ||
| + | https:// | ||
| + | |||