Plugin Indentation

Introduced in Tiki24

Use this wiki plugin to indent a block of wiki content at the paragraph level (such as paragraphs, tables, code blocks...) by one level. Use properly nested {INDENT()}...{INDENT} calls for further indentation.

Parameters

There are no parameters required - only the text between the INDENT tags is needed. Indent a block of wiki content by one level
Introduced in Tiki 24.
Go to the source code
Preferences required: wikiplugin_indent

Parameters
(body of plugin) - Wiki content (text) that is to be indented.
no parameters

Examples

Example 1

This code:

Copy to clipboard
Before {INDENT()}Between{INDENT} Afters

Would produce on this site:

Before

  • Between

Afters

Example 2

Use this code to indent two levels:

Copy to clipboard
Before {INDENT()} Level 1 {INDENT()}Level 2{INDENT} {INDENT} Afters

This produces:

  • Level 1

    • Level 2

Example 3

Do not use this code to indent two levels:

Copy to clipboard
Before {INDENT()}Level 1{INDENT} {INDENT()}{INDENT()}Level 2{INDENT}{INDENT} Afters

This is because the browser generates a vertical gap when repeating the indentation several times, like above. The gap gets bigger with each level of indentation. This is what the browser produces when doing it like in example 3:

Before

  • Level 1
    • Level 2

Afters

No related pages.

Aliases

No aliases.