Template:Indent
This template uses Lua: |
The template {{indent}}
performs a newline and indents by a specified number of spaces. However, the spaces are not all the same size, but rather a mixture of en-size & em-size spaces that have been tested to work on a wide range of browsers.
Usage
The indentation spacing generated by {{Indent}} will match the alignment of a colon-shift :
by using {{indent|5}}
. To match ::
, use {{indent|10}}
.
- Note: This may vary depending on your browser.
Usage: {{indent|# of spaces}}
- Indents up to 30 spaces.
- Indent differs from
{{space}}
only in that it automatically begins a wrapped-newline, then spaces over n spaces, whereas {{space}} spaces over n in the same (current) line.
Examples
The following are detailed examples, also comparing to the equivalent indentation generated if a colon-shift :
were used instead.
Markup | Renders As |
---|---|
Some text.{{indent|5}}Some more text. | Some text. Some more text. |
Markup | Renders As |
---|---|
: Line of colon-shifted text. {{indent|5}}Line of indent-5-shifted text. |
Line of space-10-shifted text. |
Note that if the prior line is already colon-shifted text, then using "{{indent|5}}
" generates a blank line first, so instead, use "{{space|5}}
" (or such) after a colon-shifted line.
Analysis of uneven spacing
As computers optimize code, they occasionally risk displaying unsavory results after condensing monotonous strings of characters (such as spaces). Thus, many templates around Wiki choose to avoid this hurdle by alternating different types of spaces (with the intention of displaying no differently than regular spaces).
Spaces come in two main size varieties: em spaces and en spaces. Em spaces are generally defined as the width of one character, and en spaces exactly half that size. However, there is no requirement that browsers must conform to this standard, and so templates that code in en spaces may not display uniformly across all browsers. Neither {{indent}} nor {{space}} use true space-size (that is, em-size spaces), but rather mix en and em spaces.
See also
- {{block indent}}, to indent an entire block of content, similar to a block quotation (uses
<div>
and CSS margins) - {{space}}, which indents a single line (or content inline in one) uses non-breaking spaces
TemplateData
Template to perform a newline and indent by a specified number of spaces.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Number | 1 | Number of spaces to indent.
| Number | required |