Toggle menu
14
236
69
27.5K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 03:54, 17 February 2025 by Prd (talk | contribs) (Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AT THE BOTTOM OF THIS PAGE --> {{COinS safe|n}} {{Uses TemplateStyles |Template:Mono/styles.css}} == Usage == <syntaxhighlight lang="wikitext">{{monodiv| text line 1 text line 2 text line 3}}</syntaxhighlight> renders as: {{monodiv| text line 1 text line 2 text line 3}} This template is for formatting multi-line sections of content as plain, monospaced (nonproportional) text. It is a quick shorthand for the ne...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:COinS safe

Usage

{{monodiv|
text line 1

text line 2

text line 3}}

renders as:

text line 1

text line 2

text line 3

This template is for formatting multi-line sections of content as plain, monospaced (nonproportional) text. It is a quick shorthand for the necessary CSS code. It is the multi-line version of {{mono}} and a replacement for <tt>...</tt>, which is an obsolete element under HTML5. (Non-conforming features)

This template should be used where the content is being rendered in monospaced text for purely stylistic/display reasons, where this display has no particular semantic significance. Because it uses <div>...</div> tags for formatting instead of <span>...</span> tags, it can be used to wrap bulleted lists, along with div-based list templates like {{hlist}}.

It should not be used to indicate source code, nor for variables or variable input (use {{code}} or <code>...</code> for code and {{var}} or <var>...</var> for variables). For keyboard or samples, use <kbd>...</kbd> or <samp>...</samp> respectively.

When the content ends with a single closing curly brace (}), the content should be followed by <nowiki/>, for example, to mark up {foo}, use {{monodiv|{foo}<nowiki/>}} or {{monodiv|<nowiki>{foo}</nowiki>}}.

If the content contains pipe characters (|) not surrounded by <nowiki>...</nowiki>, they must be escaped with &#124; or {{!}}.

Parameters

There is only one parameter:

|1= or unnamed
The content to format as monospaced. If the content contains a = character, the parameter must be numbered with |1=.

See also