DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:instructions

This is an old revision of the document!


instructions Plugin

Compatible with DokuWiki

Frusterick Manners, Greebo

plugin Provides a highly customizable, standardised instruction

Last updated on
2019-10-19
Provides
Syntax

This extension has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues.

Similar to textinsert, wrap

Tagged with formatting, macro

Installation

Install the plugin using the Plugin Manager and the download URL above, which points to latest version of the plugin. Refer to Plugins on how to install plugins manually.

Examples/Usage

With this code:

{{INSTR<cms_warning>
|- Warning
|- Title of the warning
|- Description of the warning
|- Therefore:
|- • make this
|+ • and perhaps this
|+ • and some more things
}}

… the result with a certain template would be like this:

Syntax

Wiki-Syntax

First the syntax within the wiki page:

{{INSTR<[template]>
|- [parameter 1]
|- [parameter 2a]
|+ [parameter 2b]
|- [parameter n]
}}

a) The leading syntax tag is INSTR.

b) After this you have to reference to a specific template (see later)

c) The listed parameters can be normal text. Each parameter is defined in one line that is prefixed by |-.

In addition there are some special markups:

  • Marking text with wiki syntax as bold, italic und underline is accepted.
  • Two spaces are interpreted as indentation or gap.
  • Wiki-Links are understood with this syntax: [[namespace:page#section|description]] (description is necessary).
  • If you want to have a line break within one parameter you can achieve this by inserting a new line prefixed by |+.

Template

To work correctly you have to define a template. This is built as html-text and defines the look of the instruction.

a) The first line in the template file has to be the code “<html>”, followed by an optional short description (not more than one line).

b) After this the file contains all parameters that should be processed within the wiki page. When a parameter shall be inserted in the html content just insert a new line and write “param-1” (or “param-2” and so on).

c) At the end of the html file you have to append a line with the code “</html>”. With the tags <html> and </html> at the beginning and the end you can test the content in a normal wiki testing page.

The template has to be placed in a subfolder to “…/lib/plugins/instructions/tpl”. The subfolder name will be the name of the template. The html file name in that folder is “html.txt”. Besides this you can provide images in this folder which can be adressed by your html code with “lib/plugins/instructions/tpl/your_template/image_file”

Here is an example with 5 parameters:

<html> WARNING
<table style="width:100%;"> <tbody> <tr> <td style="width:130px; text-align:center; padding:0px; border-left:none; border-bottom:none; border-top:none;"> <img src="lib/plugins/instructions/tpl/cms_warning/symbol.png" alt="" width="35"> </td> <td style="background-color:#E6E6FA; font-size:16pt; text-transform:uppercase; color:black; vertical-align:middle; padding:0px 5px;"> 
<strong>
param-1
</strong> </td> </tr> 
<tr> <td rowspan="5" style="border-left:none; border-top:none;"> </td> <td> <span style="font-size: large;"> 07 <strong>
param-2
</strong> </span> 
<br>
param-3
</td> </tr> 
<tr> <td style="border-bottom:3px inset lightgrey;"> <em>
param-4
</em> 
<br> 
param-5
</td> </tr> 
</tbody> </table>
</html>

This code is placed here: “lib/plugins/instructions/tpl/cms_warning/html.txt”, and in addition there is an image in the same folder: “lib/plugins/instructions/tpl/cms_warning/symbol.png”.

Development

Change Log

  • 2019-10-19
    • Initial release

Known Bugs and Issues

ToDo/Wish List

FAQ

Discussion

plugin/instructions.1571910478.txt.gz · Last modified: 2019-10-24 11:47 by juergen_aus_zuendorf

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki