Difference between revisions of "Help:Editing"

From wiki.visual-prolog.com

(Editing help)
(External links to Wikipedia & Token Coloring)
 
Line 1: Line 1:
<div align="center">
<div align="center">
<!--COMMENT MARKUP. Displays:Edit mode only.-->
<!--COMMENT MARKUP. Displays:Edit mode only.-->
{|align="center" style="width:100%; border:2px #a3b1bf solid; background:#f5faff; text-align:left;"
{|align="center" style="width:700px; border:2px #a3b1bf solid; background:#f5faff; text-align:left;"
|colspan="3" align="center" style="background:#cee0f2; text-align:center;" |
|colspan="3" align="center" style="background:#cee0f2; text-align:center;" |
<h2 style="margin:.5em; margin-top:.1em; margin-bottom:.1em; border-bottom:0; font-weight:bold;">Editing Cheatsheet</h2>
<h2 style="margin:.5em; margin-top:.1em; margin-bottom:.1em; border-bottom:0; font-weight:bold;">Editing Cheatsheet</h2>
<h4>For more details, see [[Help:How to edit a page|How to edit a page]]</h4>
<h4>For more details, see [http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page How to edit a page (Wikipedia)]</h4>
|-<!--COLUMN HEADINGS-->
|-<!--COLUMN HEADINGS-->
| width="25%" style="background:#cee0f2; padding:0.3em; text-align:center;"|'''Description'''
| width="25%" style="background:#cee0f2; padding:0.3em; text-align:center;"|'''Description'''
Line 12: Line 12:
| colspan="3" style="background:#E6F2FF; padding: 0.2em; font-family: sans-serif; font-size: 0.9em; text-align:center;" | Applies anywhere
| colspan="3" style="background:#E6F2FF; padding: 0.2em; font-family: sans-serif; font-size: 0.9em; text-align:center;" | Applies anywhere
|-<!--1ST ROW 1ST COLUMN-->
|-<!--1ST ROW 1ST COLUMN-->
|[[Help:How_to_edit_a_page#Character_formatting|Italicise text]]
|Italicise text
|<!--2ND COLUMN-->
|<!--2ND COLUMN-->
<tt><nowiki>''italic''</nowiki></tt>
<tt><nowiki>''italic''</nowiki></tt>
Line 20: Line 20:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-<!--2ND ROW 1ST COLUMN-->
|-<!--2ND ROW 1ST COLUMN-->
|[[Help:How_to_edit_a_page#Character_formatting|Bold text]]
|Bold text
|
|
<tt><nowiki>'''bold'''</nowiki></tt>
<tt><nowiki>'''bold'''</nowiki></tt>
Line 28: Line 28:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
|[[Help:How_to_edit_a_page#Character_formatting|Bold and italic]]
|Bold and italic
|
|
<tt><nowiki>'''''bold & italic'''''</nowiki></tt>
<tt><nowiki>'''''bold & italic'''''</nowiki></tt>
Line 36: Line 36:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
||[[Help:How_to_edit_a_page#Links_and_URLs|Internal link]]<br />
|[[Help:Token_Coloring|Token coloring]]
(within Visual Prolog Wiki)
|
<tt><nowiki><vip>clauses</nowiki></tt><br />
<tt><nowiki>&nbsp;&nbsp;&nbsp;&nbsp;f(0) = 1.</nowiki></tt><br />
<tt><nowiki>&nbsp;&nbsp;&nbsp;&nbsp;f(N) = N*f(N-1).</vip></nowiki></tt>
|
<vip>clauses
  f(0) = 1.
  f(N) = N*f(N-1).</vip>
|-
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
||Internal link<br />
(within the wiki)
|
|
<tt><nowiki>[[Name of page]]</nowiki></tt><br />
<tt><nowiki>[[Name of page]]</nowiki></tt><br />
Line 47: Line 59:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
|[[Help:How_to_edit_a_page#Links_and_URLs|Redirect to another page]]
|Redirect to another page
|
|
<tt><nowiki>#REDIRECT [[Target page]]</nowiki></tt>
<tt><nowiki>#REDIRECT [[Target page]]</nowiki></tt>
Line 55: Line 67:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
|[[Help:How_to_edit_a_page#Links_and_URLs|External link]]<br />
|External link<br />
(to other websites)
(to other websites)
|
|
Line 96: Line 108:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
|[[Help:List|Bulleted list]]
|[http://en.wikipedia.org/wiki/Help:List Bulleted list]
|
|
<tt>* One</tt><br />
<tt>* One</tt><br />
Line 110: Line 122:
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
|-
|-
|[[Help:List|Numbered list]]
|[http://en.wikipedia.org/wiki/Help:List Numbered list]
|
|
<tt># One</tt><br />
<tt># One</tt><br />
Line 123: Line 135:
|}
|}
</div>
</div>
==See Also==
* [[Help:Token_Coloring|Token coloring]]
* [http://en.wikipedia.org/wiki/Help:List Lists]
* [http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page How to edit a page (Wikipedia)]


__NOTOC__ __NOEDITSECTION__
__NOTOC__ __NOEDITSECTION__

Latest revision as of 23:59, 27 August 2007

Editing Cheatsheet

For more details, see How to edit a page (Wikipedia)

Description You type You get
Applies anywhere
Italicise text

''italic''

italic

Bold text

'''bold'''

bold

Bold and italic

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

bold & italic

Token coloring

<vip>clauses
    f(0) = 1.
    f(N) = N*f(N-1).</vip>

clauses
   f(0) = 1.
   f(N) = N*f(N-1).
Internal link

(within the wiki)

[[Name of page]]
[[Name of page|display text]]

Name of page
display text

Redirect to another page

#REDIRECT [[Target page]]

Target page

External link

(to other websites)

[http://www.example.org]
[http://www.example.org display text]
http://www.example.org

[1]
display text
http://www.example.org

Sign your posts
on talk pages

~~~~

Your username 15:05,
26 April 2024 (UTC)

Applies only at the beginning of the line
Headings

A Table of Contents will automatically be generated when four headings are added to an article.

== Level 1 ==
=== Level 2 ===
==== Level 3 ====
===== Level 4 =====
====== Level 5 ======

Level 1

Level 2

Level 3

Level 4
Level 5
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

See Also