Template:Trim

From bg3.wiki
Jump to navigation Jump to search
Template documentation

This template returns its parameter without leading or trailing whitespace. It’s primarily for other templates to remove unwanted whitespace passed around an unnamed parameter (named parameters are automatically trimmed by MediaWiki).

Example:

Markup Renders as
{{trim | {{{1}}} }}
{{{1}}}

Additionally, this can be used for blocks of code in a page's source that would only produce empty lines, such as a series of {{#lvardef:}} declarations. By using this template, you can make such a block of code emit no output at all:

Markup Renders as
{{trim |
{{#lvardef: x | blah }}
{{#lvardef: y | blub }}
}}''The {{#lvar:x}} did {{#lvar:y}}.''

The blah did blub.

If you absolutely want line breaks after the }} at the end, without introducing blank lines in the output, then there's no way around using a div. This is sub-optimal because it will produce some output in the HTML that's ultimately sent to the browser, even if invisible:

Markup Renders as
<div>{{trim |
{{#lvardef: x | blah }}
{{#lvardef: y | blub }}
}}</div>

''The {{#lvar:x}} did {{#lvar:y}}.''

The blah did blub.