Template:Block indent/doc

From HIBIKIFORUM
< Template:Block indent
Revision as of 03:34, 20 August 2023 by Penguinplushie (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Light bulb.png }}
It contains usage information, categories and other content that is not part of the original template page.


{{block indent}} adds a block of indented text to a page.

Usage

{{block indent|1=The material to be indented here. May include markup, paragraph breaks, etc.}}

Alternatives that are not recommended

A colon at the start of the line produces a similar indent, but it produces incorrect HTML. (An initial : was intended only for use after ;, in constructing description lists, but most editors have used it almost everywhere for indenting.)

{{block indent}} supports paragraph breaks using <p>...</p> around second and subsequent paragraphs, as well as other HTML markup, and it is always safest to explicitly format with HTML rather than rely on MediaWiki's parser to do the right thing, because the developers could alter its behavior at any time.

Example

{{block indent|1=Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.}}

produces:

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Parameters

|1= a.k.a. |text=
The material to be indented. It is always safest to explicitly define this with 1=, not as an unnamed parameter, because any occurrence (e.g. in a URL, template, etc.) of the = character will break the template without it.
|left= a.k.a. |em=
the value (e.g. 0.1 or 7) in em units by which to indent the material from the left; defaults to 3
|right=
the value, also in em, by which to indent the material from the right; defaults to 0 (use 7 to match the default left indentation)
|style=
arbitrary CSS declarations, e.g. font-size: 95%;. This parameter should not normally be needed. Note: It already includes overflow: hidden; by default, to avoid collision of the div's background with floating elements.
|class=
any CSS class names, comma-separated if more than one. This parameter should not normally be needed.

See also

  • {{indent}}, which indents a single line, after a newline, using a mixture of en- and em-dash sized spaces
  • {{space}}, which indents a single line (or content inline in one) uses non-breaking spaces

TemplateData

Adds a block of indented text to a page.

Template parameters

ParameterDescriptionTypeStatus
Text1 text

The material to be indented.

Stringrequired
Left Indentleft em

the value in em units by which to indent the material from the left.

Default
3
Numberoptional
Right Indentright

The value in em by which to indent the material from the right.

Suggested values
7
Default
0
Numberoptional
CSS Stylestyle

Arbitrary CSS declarations.

Stringoptional
CSS Classclass

Any CSS class names.

Stringoptional