User:Prabuanand/Help:Cheatsheet: Difference between revisions

From Alpine Linux
(Added Templates for Issues, Main and See Also)
m (rephrased sentence about Refer another Article)
 
(5 intermediate revisions by the same user not shown)
Line 203: Line 203:
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Character escape
|Character escape
<div style="padding-left:.5em; font-size:0.9em;">''See [[Help:Template#Escape template-breaking characters]].''</div>
<div style="padding-left:.5em; font-size:0.9em;">''See [[Template:Cat#Example|Escape template-breaking characters]]''</div>
|
|
{{ic|<nowiki>{{ic|1=echo =}}</nowiki>}}
{{ic|<nowiki>{{ic|1=echo =}}</nowiki>}}<br/>
{{ic|<nowiki>{{ic|echo{{=}}}}</nowiki>}}
|
|
{{ic|1=echo =}}
{{ic|1=echo =}}<br/>
{{ic|echo {{=}}}}
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Display File Contents
|Display File Contents
Line 218: Line 220:
Second line.}}
Second line.}}
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Cmd
|Command
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Cmd]].''</div>
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Cmd]].''</div>
|
|
Line 237: Line 239:
Use {{Codeline|apk upgrade -U}} to upgrade.
Use {{Codeline|apk upgrade -U}} to upgrade.
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Path
|Display Path
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Path]].''</div>
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Path]].''</div>
|
|
Line 252: Line 254:
|
|
{{Note|This text should be noted.}}
{{Note|This text should be noted.}}
|- style="border-top:1px solid #aaaaaa;"
|Tip
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Tip]].''</div>
|
{{ic|<nowiki>{{Tip|This text should be considered.}}</nowiki>}}
|
{{Tip|This text should be considered.}}
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Warning
|Warning
Line 269: Line 278:
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
-->
-->
|Package
|Refer Packages
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Pkg]].''</div>
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Pkg]].''</div>
|
|
{{ic|<nowiki>{{Pkg|linux}}</nowiki>}}
{{ic|<nowiki>{{Pkg|linux-lts}}</nowiki>}}
|
|
{{Pkg|linux}}
{{Pkg|linux-lts}}
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Refer Issue or Bugs
|Refer Issue or Bugs
Line 284: Line 293:
|- style="border-top:1px solid #aaaaaa;"
|- style="border-top:1px solid #aaaaaa;"
|Refer Another Article
|Refer Another Article
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Main]] or [[Template:Seealso]].Placed immediately under section headings to point to a main page or additional reference page''</div>
<div style="padding-left:.5em; font-size:0.9em;">''Use [[Template:Main]] or [[Template:Seealso]]. Placed immediately under section headings''</div>
|
|
{{ic|<nowiki>{{Main|IRC}}</nowiki>}}<br />
{{ic|<nowiki>{{Main|IRC}}</nowiki>}}<br />

Latest revision as of 09:41, 14 October 2024

For a full list of editing commands, see Help:Editing. To experiment with editing, use the sandbox.

Works anywhere in the text (wikitext)
Description You type You get
Italic text

''italic''

italic

Bold text

'''bold'''

bold

Bold and italic text

'''''bold & italic'''''

bold & italic

Link to another Wiki page

[[Name of page]]
[[Name of page|Text to display]]
[[Name of page#Section]]
[[Name of page#Section|Text to display]]

Name of page
Text to display
Name of page#Section
Text to display

Link to section on same page

[[#Section]]
[[#Section|Text to display]]

#Section
Text to display

External link

[https://www.google.com/ Google search engine]

Google search engine

Add a page to a category
Categories should be placed at the bottom of pages.
[[Category:Category name]] The category name will display in a bar at the bottom when the page is previewed or saved.
Signature

Sign your contributions when posting to a Talk page.

Do not sign when contributing to an article.

See also Help:Signature.

~~~~

Username, 13:15, 14 October 2024 (UTC)

Works anywhere in the text (HTML)
Description You type You get
Strikethrough

<s>strikethrough</s>

strikethrough

Underline

<u>underline</u>

underline

Subscripts and superscripts

regular<sub>sub</sub> <sup>sup</sup>

regularsub sup

Works only at the beginning of lines
Description You type You get
Code

Start code lines with one or more spaces.

 $ echo Hello World

$ echo Hello World

Section headings

A Table of Contents will automatically be generated for articles with four or more headings.

=Level 1= should not be used.

== Level 2 ==
=== Level 3 ===
==== Level 4 ====
===== Level 5 =====
====== Level 6 ======

Level 2

Level 3

Level 4

Level 5
Level 6
Horizontal rule

----


Bulleted list

* One
* Two
** Two point one
* Three

  • One
  • Two
    • Two point one
  • Three
Numbered list

# One
# Two
## Two point one
# Three

  1. One
  2. Two
    1. Two point one
  3. Three
Definition list

; Term one: Definition one
; Term two: Definition two

Term one
Definition one
Term two
Definition two
Indenting text
This is generally used when replying on a Talk page, as it keeps conversations easy to browse.

no indent (normal)
:first indent
::second indent
:::third indent

no indent (normal)

first indent
second indent
third indent
Templates
Description You type You get
Inline code

{{ic|code}}

code

Character escape

{{ic|1=echo =}}
{{ic|echo{{=}}}}

echo =
echo =

Display File Contents

{{Cat|/path/file|Body '''text'''
Second line.}}

Contents of /path/file

Body '''text''' Second line.
Command

{{Cmd|apk add package}}

apk add package

Codeline

Use {{Codeline|apk upgrade -U}} to upgrade

Use apk upgrade -U to upgrade.

Display Path

{{Path|/etc/network/interfaces}}

/etc/network/interfaces

Note

{{Note|This text should be noted.}}

Note: This text should be noted.
Tip

{{Tip|This text should be considered.}}

Tip: This text should be considered.
Warning

{{Warning|This text should be heeded.}}

Warning: This text should be heeded.

Refer Packages

{{Pkg|linux-lts}}

linux-lts

Refer Issue or Bugs

{{Issue|279}}

#279

Refer Another Article
Use Template:Main or Template:Seealso. Placed immediately under section headings

{{Main|IRC}}
{{Seealso|IRC}}