Help:Editing

From Hattrick
Jump to navigationJump to search

Wiki Editing

Wikis are easy to edit, giving the user a wide array of options without having to learn any programming or markup languages.

Editing Resources

  1. Use the Hattrick wiki sandbox to try out your editing skills.
  2. Start with Getting started to know more about editing in Hattrick wiki.
  3. You can see more generic details in Help:Contents.
  4. Detailed help for Editors can be found on the Wikimedia site: Wikimedia for Editors.

Short examples

The best example is to click EDIT at the top of any page to see the source of the content to see how things are done.

Some basic examples to get you going (click EDIT to see the source of how this is done):

  • To create a list (like this one) just start every line with an asterisk: *
  • To create a numbered list, start each line with a hash: #
  • Italic text is created by enclosing your text with two apostrophes: ''Italic text''.
  • Bold text is created by enclosing your text with three apostrophes: '''Bold text'''.
  • To create a link to something inside the Wiki, just enclose the page name in 2 sets of square brackets My Hattrick: [[My Hattrick]]
  • To create a link to something outside the Wiki, enclose the URL 1 set of square brackets: Hattrick
  • To write titles, sections... put 2 or more equals signs at the start and the end of the line: ==Short Examples==.

The wiki markup

In the left column of the table below, you can see what effects are possible. In the right column, you can see how those effects were achieved. In other words, to make text look like it looks in the left column, type it in the format you see in the right column.

You may want to keep this page open in a separate browser window for reference. If you want to try out things without danger of doing any harm, you can do so in the Sandbox.

Note: The more up to date version of the MediaWiki User's Guide (editing overview) can be found here.

Sections, paragraphs, lists and lines

This section has been moved to Help:Editing (sections, paragraphs, lists and lines).

Links and URLs

This section has been moved to Help:Editing (links and URLs).


Images

What it looks like What you type
A picture:

or, with alternative text: jigsaw globe

or, floating to the right side of the page and with a caption:

Wikipedia Encyclopedia

or, floating to the right side of the page without a caption:

Wikipedia Encyclopedia
Wikipedia Encyclopedia

A picture: [[Image:Wiki.png]]

or, with alternative text:
[[Image:Wiki.png|jigsaw globe]]

or, floating to the right side of the page and with a caption:
[[Image:Wiki.png|frame|Wikipedia Encyclopedia]]

or, floating to the right side of the page ''without'' a caption:
[[Image:Wiki.png|right|Wikipedia Encyclopedia]]

Clicking on an uploaded image displays a description page, which you can also link directly to: Image:Wiki.png


[[:Image:Wiki.png]]

To include links to images shown as links instead of drawn on the page, use a "media" link.


Image of a Tornado



[[media:Tornado.jpg|Image of a Tornado]]

Character formatting

What it looks like What you type

Emphasize, strongly, very strongly.

  • These are double and triple apostrophes (single-quote marks), not double-quote marks.
''Emphasize'', '''strongly''', '''''very strongly'''''.

<math>\sin x \ln y</math>
sinx lny

<math>\mathbf{x} = 0</math>
x = 0

Ordinary text should use wiki markup for emphasis, and should not use

Tables

Placement of the Table of Contents (TOC)

At the current status of the wiki markup language, having at least four headers on a page triggers the TOC to appear in front of the first header (or after introductory sections). Putting __TOC__ anywhere forces the TOC to appear at that point (instead of just before the first header). Putting __NOTOC__ anywhere forces the TOC to disappear. See also compact TOC for alphabet and year headings.

Keeping headings out of the Table of Contents

If you want some subheadings to not appear in the Table of Contents, then make the following replacements.

Replace == Header 2 == with <h2> Header 2 </h2>

Replace === Header 3 === with <h3> Header 3 </h3>

And so forth.

For example, notice that the following header has the same font as the other subheaders to this "Tables" section, but the following header does not appear in the Table of Contents for this page.

This header has the h4 font, but is NOT in the Table of Contents

This effect is obtained by the following line of code.

<h4> This header has the h4 font, but is NOT in the Table of Contents </h4>

Variables

(See also m:Help:Variable)

Code Effect
{{CURRENTMONTH}} 09
{{CURRENTMONTHNAME}} September
{{CURRENTMONTHNAMEGEN}} September
{{CURRENTDAY}} 17
{{CURRENTDAYNAME}} Thursday
{{CURRENTYEAR}} 2026
{{CURRENTTIME}} 16:23
{{NUMBEROFARTICLES}} 25,539
{{PAGENAME}} Editing
{{NAMESPACE}} Help
{{localurl:pagename}} /wiki/Pagename
{{localurl:Wikipedia:Sandbox|action=edit}} /index.php?title=Wikipedia:Sandbox&action=edit
{{SERVER}} https://wiki.hattrick.org
{{ns:1}} Talk
{{ns:2}} User
{{ns:3}} User talk
{{ns:4}} Hattrick
{{ns:5}} Hattrick talk
{{ns:6}} File
{{ns:7}} File talk
{{ns:8}} MediaWiki
{{ns:9}} MediaWiki talk
{{ns:10}} Template
{{ns:11}} Template talk
{{ns:12}} Help
{{ns:13}} Help talk
{{ns:14}} Category
{{ns:15}} Category talk
{{SITENAME}} Hattrick

NUMBEROFARTICLES is the number of pages in the main namespace which contain a link and are not a redirect, i.e. number of articles, stubs containing a link, and disambiguation pages.

Templates

The MediaWiki software used by Hattrick wiki has limited support for template inclusion. This means standardized text chunks (such as boilerplate text) can be inserted into articles. For example, typing {{stub}} will appear as "This article is a stub. You can help Hattrick by expanding it." when the page is saved. See Hattrick:Template messages for the complete list. Other commonly used ones are: {{disambig}} for disambiguation pages, {{spoiler}} for spoiler warnings and {{sectstub}} like an article stub but for a section. The are many subject-specific stubs e.g.: {{stub-country}} and {{stub-region}}. For a complete list of stubs see Hattrick:Template messages/Stubs.

Hiding the edit links

Insert __NOEDITSECTION__ into the document to suppress the edit links that appear next to every section header.