Help:Style/White space

From ArchWiki
Revision as of 09:11, 10 May 2020 by Lahwaacz.bot (talk | contribs) (update interlanguage links)

This article defines the standards for the use of whitespace characters in the source code of articles. The style used in the examples is to be considered an integral part of the rules.

Generic rules

  • Use a single space to separate sentences in the same paragraph (i.e. after period marks).
  • Avoid using multiple blank lines to space out paragraphs or sections.
  • Separate section titles from the = characters with a single space character.
  • Separate section headers from section bodies with an empty line.
  • There should be no spaces around template names, template parameters, link titles, and alternative link text.
  • Separate list characters (*, #, ; and :) from their items with a space. When used for indentation, a space after : is optional.
  • Individual list items cannot be separated by blank lines, otherwise the wiki parser will start a new list for each item.
  • Separate special blocks (the related articles box, lists, code blocks, article status templates, notes, tips, warnings etc.) from normal text with an empty line.

Main, Category, ArchWiki, Help namespaces

Example

[[Category:Example A]]
[[Category:Example B]]
[[es:Article]]
[[zh-hans:Article]]
{{Expansion|Example status template}}

{{Related articles start}}
{{Related|Related article A}}
{{Related|Related article B}}
{{Related articles end}}

Example introduction.

== Section 1 ==

Example section body.

=== Section 1.1 ===

Example section body with [[Related article|link]].

== Section 2 ==

=== Section 2.1 ===

Example section body with {{Template|Parameter 1|2=Parameter 2}}.

* List item
** List item
* List item

=== Section 2.2 ===

 Singe-line code example

{{bc|
Multiline code example
1
2
3
}}

{{bc|1=
Multiline code example
1
2
3
}}

{{bc|<nowiki>
Multiline code example
1
2
3
</nowiki>}}

=== Section 2.3 ===

Paragraph text

{{Note|
* first note
* second note
}}

Second paragraph

{{Tip|some useful tip}}

Talk, *_talk namespaces

Separate different replies with an empty line.

Example

== Discussion 1 ==

First post, paragraph 1.

First post, paragraph 2.

-- ~~~~

:Reply 1, single paragraph. -- ~~~~

::Reply 2, paragraph 1.
::Reply 2, paragraph 2.
::-- ~~~~

== Discussion 2 ==

First post, single paragraph. -- ~~~~

:Reply 1, paragraph 1.
:Reply 1, paragraph 2.
:-- ~~~~

::Reply 2, single paragraph. -- ~~~~