Difference between revisions of "How to Edit Pages"

From Fancyclopedia 3
Jump to navigation Jump to search
m
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{mlo}}
+
Here's the official guide to Mediawiki: [https://www.mediawiki.org/wiki/Help:Editing_pages Mediawiki editing guide]
Mediawiki (where we are now) is a wiki and so is Wikidot (where we used to be). There's a lot in common, but there's a lot minor differences in how you do things.  '''''Don't let this bother you!''''' Feel free to use the markup if you're comfortable with it, but also feel free to just add text -- we'll fix up the formatting.
 
  
Here's the official guide: [https://www.mediawiki.org/wiki/Help:Editing_pages Mediawiki editing guide]
+
Fancyclopedia 3 has '''[[standards]]''' for the content of pages, and here's a short guide:
  
We have [[standards]] for the content of pages, and here's a short guide to the important differences for people familiar with Wikidot:
+
=== Links ===
 +
 
 +
Links are indicated by two square brackets: '''<nowiki>[[Noreascon Three]]</nowiki>''' around the page name.
 +
 
 +
Page names in Mediawiki are ''case sensitive'' after the first letter when used in links, so you must capitalize the link correctly (except for the first character!), e.g., '''<nowiki>[[Noreascon Three]]</nowiki>''' ''not <nowiki>[[Noreascon three]]</nowiki>.
 +
 
 +
(This is the most annoying difference between Mediawiki and Wikidot, the wiki software Fancyclopedia used for its first eight years.)
  
=== Links ===
+
Unicode characters for accents, curly quotes, etc., are distinct characters from unaccented characters and straight quotes. See [[Standards]] for recommendations on their use.
  
Links are indicated by two square brackets rather than three: '''<nowiki>[[Noreascon Three]]</nowiki>''', rather than <nowiki>[[[Noreascon Three]]]</nowiki>
+
===Templates ===
  
Unlike in Wikidot, page names in Mediawiki are ''case sensitive'' after the first letter when used in linksSo in wikidot, you could get away with <nowiki>[[[noreascon three]]]</nowiki>, but in Mediawiki, you must capitalize the link correctly (except for the first character!): '''<nowiki>[[Noreascon Three]]</nowiki>'''
+
We use Mediawiki templates to collect structured data. For example we include [[Template:Person]] in every person page and [[Template:Convention]] in every convention pageThey are included by <nowiki>{{person | born=????}} or {{convention}}</nowiki>. The template pages have arguments and give documentation on the arguments, all of which are optional, though you might get nag messages if obvious things, like the year of a convention, are missed. See [[Templates]] for a complete list. Every pages should use one master template.
(This is likely to be the most annoying difference between the two systems.)
 
  
 
=== Tables ===
 
=== Tables ===
Line 17: Line 21:
 
For tables, don't use the Mediawiki standard tables, use the [https://www.mediawiki.org/wiki/Extension:SimpleTable SimpleTable] extension with a '||' separator between columns.  There are basically three changes: First, the table must be delimited by <nowiki><tab></nowiki>, secondly, "||" only ''separates'' the columns. You don't put them at the beginning or end of a row,and thirdly, there's some fancy frosting needed to put a header row on the table.  So:
 
For tables, don't use the Mediawiki standard tables, use the [https://www.mediawiki.org/wiki/Extension:SimpleTable SimpleTable] extension with a '||' separator between columns.  There are basically three changes: First, the table must be delimited by <nowiki><tab></nowiki>, secondly, "||" only ''separates'' the columns. You don't put them at the beginning or end of a row,and thirdly, there's some fancy frosting needed to put a header row on the table.  So:
  
<pre><tab head=top collapse=true>
+
<pre><tab head=top>
 
Header 1||Header 2||Header 3
 
Header 1||Header 2||Header 3
 
Field 4||Field 5||Field 6
 
Field 4||Field 5||Field 6
Line 31: Line 35:
  
 
=== Other Markup ===
 
=== Other Markup ===
If you are familiar with wikidot syntax, the mapping to mediawiki is as follows
+
If you are familiar with Wikidot syntax, the mapping to Mediawiki is as follows
 
<pre>
 
<pre>
 
++ heading to == heading
 
++ heading to == heading
Line 37: Line 41:
 
**bold** to '''bold'''
 
**bold** to '''bold'''
 
//italic// to ''italic''
 
//italic// to ''italic''
[[[page|text]]] to [[page|text]]
 
 
[[include stub]] to {{stub}}
 
[[include stub]] to {{stub}}
 
[[module Redirect destination="target"]] to #REDIRECT [[target]]
 
[[module Redirect destination="target"]] to #REDIRECT [[target]]
</pre>
 
 
=== External Links===
 
For external links, don't use the standard Mediawiki syntax, but use our special template which will also give access to the page on the Internet Archive, in case it gets deleted.
 
 
<pre>
 
{{link | website=http://taff.org.uk | text=TAFF}}
 
{{link | website=http://taff.org.uk | text=TAFF | capture=2019}}
 
 
</pre>
 
</pre>
  
Line 54: Line 49:
  
 
=== Tags ===
 
=== Tags ===
For tags use <nowiki>[[Category:category]]</nowiki> (where category is something like "Fan" "pro" "fanzine", "club", etc) at the bottom of the page. All pages must be in at least one category (e.g., must have at least one tag).  Multiple categories are indicated by repeated use of the <nowiki>[[Category:category]]</nowiki>
 
 
People must be fan/pro/mundane.  A fan who is also a pro should be tagged with both: <nowiki>[[Category:fan]] [[Category:pro]]</nowiki>
 
 
Anything geographical must be one of Asia/Australia/Europe/Ireland/Japan/NZ/UK/US/World (multiple places OK for joint efforts).  Use "World" if none of the more specific categories fit.
 
 
  
 +
The Mediawiki term for tags is categories. See the [[Categories]] pages for how use categories
  
 
[[Category:Admin]]
 
[[Category:Admin]]

Revision as of 23:07, 29 January 2021

Here's the official guide to Mediawiki: Mediawiki editing guide

Fancyclopedia 3 has standards for the content of pages, and here's a short guide:

Links[edit]

Links are indicated by two square brackets: [[Noreascon Three]] around the page name.

Page names in Mediawiki are case sensitive after the first letter when used in links, so you must capitalize the link correctly (except for the first character!), e.g., [[Noreascon Three]] not [[Noreascon three]].

(This is the most annoying difference between Mediawiki and Wikidot, the wiki software Fancyclopedia used for its first eight years.)

Unicode characters for accents, curly quotes, etc., are distinct characters from unaccented characters and straight quotes. See Standards for recommendations on their use.

Templates[edit]

We use Mediawiki templates to collect structured data. For example we include Template:Person in every person page and Template:Convention in every convention page. They are included by {{person | born=????}} or {{convention}}. The template pages have arguments and give documentation on the arguments, all of which are optional, though you might get nag messages if obvious things, like the year of a convention, are missed. See Templates for a complete list. Every pages should use one master template.

Tables[edit]

For tables, don't use the Mediawiki standard tables, use the SimpleTable extension with a '||' separator between columns. There are basically three changes: First, the table must be delimited by <tab>, secondly, "||" only separates the columns. You don't put them at the beginning or end of a row,and thirdly, there's some fancy frosting needed to put a header row on the table. So:

<tab head=top>
Header 1||Header 2||Header 3
Field 4||Field 5||Field 6
Field 7||Field 8||Field 9
</tab>

or, for a headerless table:

<tab>
Field 1||Field 2||Field 3
Field 4||Field 5||Field 6
Field 7||Field 8||Field 9
</tab>

Other Markup[edit]

If you are familiar with Wikidot syntax, the mapping to Mediawiki is as follows

++ heading to == heading
+++ heading to === heading
**bold** to '''bold'''
//italic// to ''italic''
[[include stub]] to {{stub}}
[[module Redirect destination="target"]] to #REDIRECT [[target]]

Attached Files[edit]

If you have files to upload, tell the Administrators.

Tags[edit]

The Mediawiki term for tags is categories. See the Categories pages for how use categories