If you only need one tab, install the “WRAP” Plugin (See http://dokuwiki.org/plugin:wrap), and then use the following syntax:
<WRAP indent>your text</WRAP>
Example:
foo 1
foo 2
Use ''%%--%%''
to render --
.
Compare this to ''--''
which renders as a single dash –
Ref:- https://www.dokuwiki.org/wiki:syntax#no_formatting
Extension:-
To display an option such as --skip-string-normalization
, use
''%%--skip-string-normalization%%''
.
{{tag>"foo bar" baz}}
will set two tags “foo bar” and “baz”.
startSectionEdit: $data "section" is NOT an array! One of your plugins needs an update.
on all the pages.
tags | lists inside table cells wrap plugin
When the WRAP plugin is used to create lists inside table cells, an extra line is added at the end of the list. To remove it, add the following to /etc/dokuwiki/userstyle.css .
div.plugin_wrap ul { margin-bottom: 0px; }
The new setting will be picked up automatically when the page is refreshed.
Put the <code>
tag on the same line of the item. For example
bar
as opposed to
bar
Install the wrap plugin and do something like
^ days ^ months ^ | <WRAP> * Sunday * Monday </WRAP> | <WRAP> * January * February * March </WRAP> | | <WRAP> * Tuesday * Wednesday </WRAP> | <WRAP> * April * May </WRAP> |
which will give
days | months |
---|---|
|
|
|
|
Ref:-