Cunnan:How does one edit a page: Difference between revisions

From Cunnan
Jump to navigationJump to search
No edit summary
(Swapped Cunnan:How does one edit a page with Help:Editing, to setup the help system.)
 
(14 intermediate revisions by 10 users not shown)
Line 1: Line 1:
#redirect [[Help:Editing]]
[[Cunnan]] is a [[WikiWiki]], meaning that anyone can easily edit any [[Cunnan:What is an article|article]] and have those changes posted immediately. This page is the reference for '''Wiki markup'''. You may also want to learn about:

* [[cunnan:How to start a page|How to start a page]]
* General policies in [[Cunnan:Policies and guidelines]]
* [[Cunnan:Naming conventions]] for how to name articles themselves

It's very easy to edit a Wiki page. Simply click on the "'''Edit'''" link at the top or bottom of a Wiki page to change the page itself, or click on "'''Discussion'''" link and then on "Edit this page" to write on the corresponding [[Cunnan:Talk page|talk page]]. This will bring you to a page with a text box containing the editable text of that Wiki page.

Then type away, write a short Edit summary on the small field below the edit-box and when finished press "Save page"! You can also preview your changes before saving if you like. Depending on your system, pressing Enter while the edit box is not active (there is no typing cursor in it) may have the same effect as pressing Save.

Please use a [[Cunnan:Neutral point of view|neutral point of view]].

It is often more convenient to copy and paste the text first into your favorite text editor, edit and spell check there, and then paste back into the browser to preview. This way, you can also keep a local backup copy of the pages you authored so that you can make changes offline.

==Minor edits==
[http://nosenno.weebly.com/]
[http://nosenno.weebly.com/index.html]
[http://nosenno.weebly.com/page2.html]
[http://nosenno.weebly.com/page3.html]
[http://nosenno.weebly.com/pag4.html]
[http://nosenno.weebly.com/p5.html]
[http://nosenno.weebly.com/p6.html]
[http://nosenno.weebly.com/p7.html]
[http://nosenno.weebly.com/p8.html]
[http://nosenno.weebly.com/p9.html]
[http://nosenno.weebly.com/p10.html]
When editing a page, a [[Cunnan:How to log in|logged-in]] user has the option of flagging the edit as a "minor edit". When to use this is somewhat a matter of personal preference. The rule of thumb is that an edit of a page that is spelling corrections, formatting, and minor rearranging of text should be flagged as a "minor edit". A major edit is basically something that makes the entry worth relooking at for somebody who wants to watch the article rather closely, so any "real" change, even if it is a single word. This feature is important, because users can choose to ''hide'' minor edits in their view of the Recent Changes page, to keep the volume of edits down to a manageable level.

The reason for not allowing a user who is not logged in to mark an edit as minor is that vandalism may be marked as a minor edit, in which case it may stay unnoticed longer. This limitation is another reason to log in.

==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 [[cunnan:Sandbox|Sandbox]].

=== Sections, paragraphs, lists and lines ===

<table border="1" cellpadding="2" cellspacing="0">
<tr>
<th>What it looks like</th>
<th>What you type</th>
</tr>
<tr>
<td>
Start your sections with header lines:

== New section ==
=== Subsection ===
==== Sub-subsection ====

</td>
<td><pre><nowiki>

== New section ==

=== Subsection ===

==== Sub-subsection ====
</nowiki></pre>
</td>
</tr>

<tr>
<td>
A single [[newline]]
has no effect
on the layout.
These can be used to separate
sentences within a paragraph.

This aids editing and
improves the ''diff'' function.


But an empty line
starts a new paragraph.
</td>
<td><pre><nowiki>A single newline
has no effect
on the layout.
These can be used to separate
sentences within a paragraph.
This aids editing and
improves the ''diff'' function.

But an empty line
starts a new paragraph.
</nowiki></pre>
</td>
</tr>

<tr valign="top"><td>You can break lines<br>
without starting a new paragraph.</td>
<td><pre><nowiki>You can break lines<br>
without starting a new paragraph.</nowiki></pre>
</td>
</tr>

<tr>
<td>
* Lists are easy to do:
** start every line with a star
** more stars means deeper levels
</td>
<td><pre><nowiki>* Lists are easy to do:
** start every line with a star
** more stars means deeper levels
</nowiki></pre>
</td>
</tr>

<tr>
<td>
# Numbered lists are also good
## Very organized
## easy to follow
</td>
<td><pre><nowiki># Numbered lists are also good
## Very organized
## easy to follow</nowiki></pre>
</td>
</tr>

<tr>
<td>
* You can even do mixed lists
*# and nest them
*#* like this
</td>
<td><pre><nowiki>* You can even do mixed lists
*# and nest them
*#* like this</nowiki></pre>
</td>
</tr>

<tr>
<td>
; Definition list : list of definitions
; item : the item's definition
</td>
<td><pre><nowiki>; Definition list : list
of definitions
; item : the item's definition</nowiki></pre>
</td>
</tr>

<tr>
<td>
:A colon indents a line or paragraph.
A manual newline starts a new paragraph.

This is, however, considered bad practice.
</td>
<td><pre><nowiki>:A colon indents a line or paragraph.
A manual newline starts
a new paragraph.</nowiki></pre>
</td>
</tr>

<tr valign=top>
<td>
<pre><nowiki>IF a line starts with a space THEN
it will be formatted exactly
as typed;
in a fixed-width font;
lines won't wrap;
ENDIF
this is useful for:
* pasting preformatted text;
* algorithm descriptions;
* program source code
* ascii art;</nowiki></pre>

WARNING If you make it wide,
you [[page widening|force the whole page to be wide]] and
hence less readable. Never start ordinary lines with spaces.
</td>
<td><pre><nowiki> IF a line starts with a space THEN
it will be formatted exactly
as typed;
in a fixed-width font;
lines won't wrap;
ENDIF
this is useful for:
* pasting preformatted text;
* algorithm descriptions;
* program source code
* ascii art;</nowiki></pre></td>
</tr>

<tr valign="top"><td><center>Centered text.</center>
</td>
<td><pre><nowiki><center>Centered text.</center></nowiki></pre>
</td>
</tr>

<tr>
<td>A horizontal dividing line: above
----

and below.
</td>
<td><pre><nowiki>A horizontal dividing line: above
----
and below. </nowiki></pre>
</td>
</tr>
</table>


=== Links, URLs, images ===

<table border="1" cellpadding="2" cellspacing="0">
<tr>
<th>What it looks like</th>
<th>What you type</th>
</tr>
<tr valign="top">
<td>London has good [[public transport]].
*First letter of target is automatically capitalized.
*Internally spaces are automatically represented as underscores (typing an underscore has the same effect as typing a space, but is not recommended).

Thus the link above is to <nowiki>http://www.cunnan.org/wiki/Public_transport</nowiki>, which is the article with the name "Public transport".
</td>
<td><pre><nowiki>London has good [[public transport]].</nowiki></pre>
</td>
</tr>

<tr valign="top">
<td>Same target, different name: [[cunnan FAQ|answers]].
</td>
<td><pre><nowiki>Same target, different name:
[[cunnan FAQ|answers]]</nowiki></pre>
</td>
</tr>

<tr valign="top">
<td>Endings are blended into the link: [[test]]ing, [[gene]]s
</td>
<td>

<pre><nowiki>Endings are blended
into the link: [[test]]ing, [[gene]]s</nowiki></pre>
</td>
</tr>

<tr valign="top">
<td>
Automatically hide stuff in parentheses: [[kingdom (biology)|kingdom]].

Automatically hide namespace: [[Cunnan:Village Pump|Village Pump]].

The server fills in the part after the | when you save the page.

</td>
<td>
<pre><nowiki>Automatically hide stuff in parentheses:
[[kingdom (biology)|]]. </nowiki></pre>


<pre><nowiki>Automatically hide namespace:
[[Cunnan:Village Pump|]].</nowiki></pre>
</td></tr>

<tr>
<td>When adding a comment to a Talk page,
you should sign it. You can do this by
adding three tildes for your user name:
: [[User:Montrealais|Montrealais]]
or four for user name plus date/time:
: [[User:Montrealais|Montrealais]] 08:10 Oct 5, 2002 (UTC)
</td>
<td><pre><nowiki>When adding a comment to a Talk page,
you should sign it. You can do this by
adding three tildes for your user name:
: ~~~
or four for user name plus date/time:
: ~~~~</nowiki></pre>
</td>
</tr>

<tr valign="top">
<td>[[The weather in London]] is a page that doesn't
exist yet.

*You can create it by clicking on the link.


*To create a new page:
*#Create a link to it on some other page.
*#Save that page.
*#Click on the link you just made. The new page will open for editing.
*Have a look at [[Cunnan:How to start a page|how to start a page]] guide and Cunnan's [[Cunnan:Naming conventions|naming conventions]].
*After creating a page, search for its title and make sure that everyone correctly links to it.
</td>
<td><pre><nowiki>[[The weather in London]] is a page
that doesn't exist yet.</nowiki></pre>
</td>
</tr>

<tr valign="top"><td>
Redirect one article title to another by putting text like this in its first line. Note that there must be no text following this, or the redirect may not work. See [[Cunnan:How to use redirect pages]] for more.
</td>
<td><pre><nowiki>#REDIRECT [[United States]]</nowiki></pre>
</td>
</tr>

<tr valign="top"><td>
For a special way to link to the article on the same subject in another language, see [[Cunnan:Interlanguage links]].

</td>
<td>

Latest revision as of 20:33, 13 June 2014

Redirect to: