Difference between revisions of "Editing FBFT"

From fbft
Jump to: navigation, search
Line 15: Line 15:
 
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.
 
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, or take a screen-shot of it. '''If you want to try out things without danger of doing any harm, you can do so in the [[Wikipedia:Sandbox|Sandbox]]'''. Try opening the Sandbox in a separate window or tab and keeping this page open for reference.
+
<!--
 +
:'''The rest of this page is deprecated but will be updated periodically.'''
 +
:'''Please direct edits to the [[meta:MediaWiki User's Guide: Editing overview|Meta-Wikimedia version of this page]]'''
 +
 
 +
-->
 +
{| border="1" cellpadding="2" cellspacing="0"
 +
|-
 +
! What it looks like
 +
! What you type
 +
|- valign="top"
 +
|
 +
Start your [[Wikipedia:Manual of Style (headings)|sections]] as follows:
 +
 
 +
<!-- The following code messes up the table of contents
 +
    and makes the section edit links much less useful,
 +
    so please do not use it.
 +
== New section ==
 +
=== Subsection ===
 +
==== Sub-subsection ====
 +
-->
 +
<!-- The following should look almost the same, using
 +
    HTML headings markup instead of wiki headings.
 +
    However, it messes up the section edit links,
 +
    so please do not use it.
 +
<h2>New section</h2>
 +
<h3>Subsection</h3>
 +
<h4>Sub-subsection</h4>
 +
-->
 +
<!-- The following just uses bolding and font changes,
 +
    so it should be safe.  However, it might not
 +
    look exactly right, especially when people
 +
    use non-standard CSS stylesheets.
 +
-->
 +
'''<font style="font-size:150%;color:grey;">New section</font>'''
 +
 
 +
'''<font style="font-size:130%;color:grey;">Subsection</font>'''
 +
 
 +
'''<font style="font-size:110%;color:grey;">Sub-subsection</font>'''
 +
 
 +
*Start with a second-level heading (<tt><nowiki>==</nowiki></tt>); don't use first-level headings (=).
 +
*Don't skip levels (for example, second-level followed by fourth-level).
 +
*A [[#Table of contents|table of contents]] will automatically be added to an article that has four or more sections.
 +
*If appropriate, place subsections in an appropriate order. If listing countries, place them in alphabetical order rather than, say, relative to population of [[OECD]] countries, or some random order.
 +
|
 +
<pre><nowiki>
 +
== New section ==
 +
 
 +
=== Subsection ===
 +
 
 +
==== Sub-subsection ====
 +
 
 +
===== Sub-sub-subsection =====
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
A single [[newline]]
 +
generally has no effect on the layout.
 +
These can be used to separate
 +
sentences within a paragraph.
 +
Some editors find that this aids editing
 +
and improves the function ''diff''
 +
(used internally to compare
 +
different versions of a page).
 +
 
 +
But an empty line
 +
starts a new paragraph.
 +
 
 +
* When used in a list, a newline ''does'' affect the layout ([[#lists|see below]]).
 +
|
 +
<pre><nowiki>
 +
A single [[newline]]
 +
generally has no effect on the layout.
 +
These can be used to separate
 +
sentences within a paragraph.
 +
Some editors find that this aids editing
 +
and improves the function ''diff''
 +
(used internally to compare
 +
different versions of a page).
 +
 
 +
But an empty line
 +
starts a new paragraph.
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
You can break lines<br/>
 +
without starting a new paragraph.
 +
 
 +
* Please use this sparingly.
 +
* Close markup between lines, do not start a [[link]] or ''italics'' or '''bold''' on one line and close it on the next.
 +
|
 +
<pre><nowiki>
 +
You can break lines<br/>
 +
without starting a new paragraph.
 +
</nowiki></pre>
 +
|- id="lists" valign="top"
 +
|
 +
* It's easy to create a list:
 +
** Start every line with a star ([[asterisk]]).
 +
*** More stars means deeper levels.
 +
**** A newline in a list
 +
marks the end of a list item.
 +
 
 +
* An empty line starts a new list.
 +
|
 +
<pre><nowiki>
 +
* It's easy to create a list:
 +
** Start every line with a star.
 +
*** More stars means deeper levels.
 +
**** A newline in a list
 +
marks the end of a list item.
 +
 
 +
* An empty line starts a new list.
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
# Numbered lists are also good
 +
## very organized
 +
## easy to follow
 +
### easier still
 +
|
 +
<pre><nowiki>
 +
# Numbered lists are also good
 +
## very organized
 +
## easy to follow
 +
### easier still
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
* You can even create mixed lists
 +
*# and nest them
 +
*#* like this
 +
|
 +
<pre><nowiki>
 +
* You can even create mixed lists
 +
*# and nest them
 +
*#* like this
 +
</nowiki></pre>
 +
|- valign="top" id="definition"
 +
|
 +
; Definition list : list of definitions
 +
; item : the item's definition
 +
; another item
 +
: the other item's definition
 +
 
 +
* One item per line; a newline can appear before the colon, but using a space before the colon improves parsing.
 +
|
 +
<pre><nowiki>
 +
; Definition list : list of definitions
 +
; item : the item's definition
 +
; another item
 +
: the other item's definition
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
: A colon indents a line or paragraph.
 +
A manual newline starts a new paragraph.
 +
 
 +
* This is primarily for displayed material, but is also used for discussion on [[Wikipedia:Talk page|Talk page]]s.
 +
|
 +
<pre><nowiki>
 +
: A colon indents a line or paragraph.
 +
A manual newline starts a new paragraph.
 +
</nowiki></pre>
 +
|- valign=top
 +
|
 +
When there is a need for separating a block of text
 +
<blockquote>
 +
the '''blockquote''' command will indent both margins when needed instead of the left margin only as the colon does. 
 +
</blockquote>
 +
This is useful for (as the name says) inserting blocks of quoted (and cited) text. 
 +
|
 +
<pre><nowiki>
 +
<blockquote>
 +
The '''blockquote''' command will indent
 +
both margins when needed instead of the
 +
left margin only as the colon does. 
 +
</blockquote>
 +
</nowiki></pre>
 +
|- valign=top
 +
|
 +
IF a line starts with a space THEN
 +
it will be formatted exactly
 +
as typed;
 +
in a fixed-width font;
 +
lines will not wrap;
 +
ENDIF
 +
 
 +
*This is useful for:
 +
** pasting preformatted text;
 +
** algorithm descriptions;
 +
** program source code;
 +
** [[ASCII art]];
 +
** chemical structures;
 +
* '''WARNING''': If you make it wide, you [[page widening|force the whole page to be wide]] and hence less readable, especially for people who use lower resolutions. Never start ordinary lines with spaces.
 +
|
 +
<pre><nowiki>
 +
IF a line starts with a space THEN
 +
it will be formatted exactly
 +
as typed;
 +
in a fixed-width font;
 +
lines will not wrap;
 +
ENDIF
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
<center>Centered text.</center>
 +
 
 +
* Please note the American spelling of "center."
 +
|
 +
<pre><nowiki>
 +
<center>Centered text.</center>
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
A [[horizontal dividing line]]:
 +
this is above it
 +
----
 +
and this is below it.
 +
 
 +
* Mainly useful for
 +
**disambiguation - but to be used sparsely, only when separating completely different, unrelated (groups of) meanings
 +
**separating threads on Talk pages.
 +
|
 +
<pre><nowiki>
 +
A [[horizontal dividing line]]:
 +
this is above it
 +
----
 +
and this is below it.
 +
</nowiki></pre>
 +
|}
 +
 
 +
=== Links and URLs ===
 +
{| border="1" cellpadding="2" cellspacing="0"
 +
|-
 +
! What it looks like
 +
! What you type
 +
|- valign="top"
 +
|
 +
London has [[public transport]].
 +
 
 +
* A link to another Wikipedia article.
 +
* Internally, the first letter of the target page is automatically capitalized and spaces are represented as underscores (typing an underscore in the link has the same effect as typing a space, but is not recommended).
 +
* Thus the link above is to the [[URL]] www.wikipedia.org/wiki/Public_transport, which is the Wikipedia article with the name "Public transport". See also [[Wikipedia:Canonicalization]].
 +
|
 +
<pre><nowiki>
 +
London has [[public transport]].
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
San Francisco also has
 +
[[public transport|public transportation]].
 +
 
 +
* Same target, different name.
 +
* This is a [[piped link]].
 +
* The "piped" text must be placed first, the text that will be displayed, second.
 +
|
 +
<pre><nowiki>
 +
San Francisco also has
 +
[[public transport|public transportation]].
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
San Francisco also has
 +
[[public transport]]ation.
 +
 
 +
Examples include [[bus]]es, [[taxi]]s,
 +
and [[streetcar]]s.
 +
 
 +
* Endings are blended into the link.
 +
* Preferred style is to use this instead of a piped link, if possible.
 +
|
 +
<pre><nowiki>
 +
San Francisco also has
 +
[[public transport]]ation.
 +
 
 +
Examples include [[bus]]es, [[taxi]]s,
 +
and [[streetcar]]s.
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
See the [[Wikipedia:Manual of Style]].
 +
 
 +
* A link to another [[Wikipedia:namespace|namespace]].
 +
|
 +
<pre><nowiki>
 +
See the [[Wikipedia:Manual of Style]].
 +
</nowiki></pre>
 +
|- id="link-to-section" valign="top"
 +
|
 +
[[Economics#See also]] is a link
 +
to a section within another page.
 +
 
 +
[[#Links and URLs]] is a link
 +
to a section on the current page.
 +
 
 +
[[#example]] is a link to an
 +
anchor that was created using
 +
<div id="example">an id attribute</div>
 +
 
 +
* The part after the number sign (#) must match a section heading on the page. Matches must be exact in terms of spelling, case, and punctuation.  Links to non-existent sections are not broken; they are treated as links to the top of the page.
 +
* Identifiers may be created by attaching an <code>id="..."></code> attribute to almost any HTML element.
 +
|
 +
<pre><nowiki>
 +
[[Economics#See also]] is a link
 +
to a section within another page.
 +
 
 +
[[#Links and URLs]] is a link
 +
to a section on the current page.
 +
 
 +
[[#example]] is a link to an
 +
anchor that was created using
 +
<div id="example">an id attribute</div>
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
Automatically hide stuff in parentheses:
 +
[[kingdom (biology)|kingdom]].
 +
 
 +
Automatically hide namespace:
 +
[[Wikipedia:Village Pump|Village Pump]].
 +
 
 +
Or both:
 +
[[Wikipedia:Manual of Style (headings)|Manual of Style]]
 +
 
 +
But not:
 +
[[Wikipedia:Manual of Style#Links|]]
 +
 
 +
* The server fills in the part after the pipe character (|) when you save the page. The next time you open the edit box you will see the expanded piped link. When [[Wikipedia:Show preview|preview]]ing your edits, you will not see the expanded form until you press '''Save''' and '''Edit''' again. The same applies to links to sections within the same page ([[#link-to-section|see previous entry]]).
 +
|
 +
<pre><nowiki>
 +
Automatically hide stuff in parentheses:
 +
[[kingdom (biology)|]].
 +
 
 +
Automatically hide namespace:
 +
[[Wikipedia:Village Pump|]].
 +
 
 +
Or both:
 +
[[Wikipedia:Manual of Style (headings)|]]
 +
 
 +
But not:
 +
[[Wikipedia:Manual of Style#Links|]]
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
[[The weather in London]] is a page
 +
that does not exist yet.
 +
 
 +
* You can create it by clicking on the link (but please do not do so with this particular link).
 +
* To create a new page:
 +
*# Create a link to it on some other (related) page.
 +
*# Save that page.
 +
*# Click on the link you just made. The new page will open for editing.
 +
* For more information, see [[Wikipedia:How to start a page|How to start a page]] and check out Wikipedia's [[Wikipedia:Naming conventions|naming conventions]].
 +
* Please do not create a new article without linking to it from at least one other article.
 +
|
 +
<pre><nowiki>
 +
[[The weather in London]] is a page
 +
that does not exist yet.
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
[[Wikipedia:How to edit a page]] is this page.
 +
 
 +
* [[Self link]]s appear as bold text when the article is viewed.
 +
* Do not use this technique to make the article name bold in the first paragraph; see the [[Wikipedia:Manual of Style#Article titles|Manual of Style]].
 +
|
 +
<pre><nowiki>
 +
[[Wikipedia:How to edit a page]] is this page.
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
When adding a comment to a Talk page,
 +
you should sign it by adding
 +
three tildes to add your user name:
 +
: [[User:Brockert|Ben Brockert]]
 +
or four to add user name plus date/time:
 +
: [[User:Brockert|Ben Brockert]] 00:18, Nov 19, 2004 (UTC)
 +
Five tildes gives the date/time alone:
 +
: 00:18, Nov 19, 2004 (UTC)
 +
 
 +
* The first two both provide a link to your [[Wikipedia:user page|user page]].
 +
|
 +
<pre><nowiki>
 +
When adding a comment to a Talk page,
 +
you should sign it by adding
 +
three tildes to add your user name:
 +
: ~~~
 +
or four for user name plus date/time:
 +
: ~~~~
 +
Five tildes gives the date/time alone:
 +
: ~~~~~
 +
</nowiki></pre>
 +
|- valign="top"
 +
|
 +
* [[Wikipedia:Redirect|Redirect]] one article title to another by placing a directive like the one shown to the right on the ''first'' line of the article (such as at a page titled "[[UN]]").
 +
* Note that, while it is possible to link to a section, it is not possible to redirect to a section. For example, "<nowiki>#REDIRECT [[United Nations#International_Years]]</nowiki>" will redirect to the [[United Nations]] page, but not to any particular section on it. This feature '''will not''' be implemented in the future, so such redirects should not be used.
 +
|
 +
<pre><nowiki>
 +
#REDIRECT [[United Nations]]
 +
</nowiki></pre>
 +
|- valign="top"
 +
|

Revision as of 15:06, 27 August 2005

Tips on editing Fargo Band Family Tree entries

Always use a neutral point of view, as the Fargo Band Family Tree is not a place to promote points of view. Write as if the information is a non-judgmental news article.

After making a new page, it's a good idea to:

  • use What links here (with your page displayed) to check the pages that already link to it. This is a good way to make sure that you've added the appropriate links to your new page (Related Bands, City, Decade, Alphabet, etc).
  • use the Search button to search Fargo Band Family Tree for your page title—and possible variants—to find pages that mention it, and make links from them if appropriate.

Minor edits

When editing a page, a user can mark that edit as being "minor". Minor edits generally mean spelling corrections, formatting, and minor rearrangement of text. It is possible to hide minor edits when viewing Recent Changes. Marking a significant change as a minor edit is considered bad behavior, and even more so if it involves the deletion of some text. If one has accidentally marked an edit as minor, the person should edit the source once more, mark it major (or, rather, ensure that the check-box for "This is a minor edit" is not checked), and, in the summary, state that the previous change was a major one.

Wiki markup

The wiki markup is the syntax system you can use to format a Fargo Band Family Tree page.

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.

What it looks like What you type

Start your sections as follows:

New section

Subsection

Sub-subsection

  • Start with a second-level heading (==); don't use first-level headings (=).
  • Don't skip levels (for example, second-level followed by fourth-level).
  • A table of contents will automatically be added to an article that has four or more sections.
  • If appropriate, place subsections in an appropriate order. If listing countries, place them in alphabetical order rather than, say, relative to population of OECD countries, or some random order.
== New section ==

=== Subsection ===

==== Sub-subsection ====

===== Sub-sub-subsection =====

A single newline generally has no effect on the layout. These can be used to separate sentences within a paragraph. Some editors find that this aids editing and improves the function diff (used internally to compare different versions of a page).

But an empty line starts a new paragraph.

  • When used in a list, a newline does affect the layout (see below).
A single [[newline]]
generally has no effect on the layout. 
These can be used to separate
sentences within a paragraph.
Some editors find that this aids editing
and improves the function ''diff'' 
(used internally to compare
different versions of a page).

But an empty line
starts a new paragraph.

You can break lines
without starting a new paragraph.

  • Please use this sparingly.
  • Close markup between lines, do not start a link or italics or bold on one line and close it on the next.
You can break lines<br/>
without starting a new paragraph.
  • It's easy to create a list:
    • Start every line with a star (asterisk).
      • More stars means deeper levels.
        • A newline in a list

marks the end of a list item.

  • An empty line starts a new list.
* It's easy to create a list:
** Start every line with a star.
*** More stars means deeper levels.
**** A newline in a list
marks the end of a list item.

* An empty line starts a new list.
  1. Numbered lists are also good
    1. very organized
    2. easy to follow
      1. easier still
# Numbered lists are also good
## very organized
## easy to follow
### easier still
  • You can even create mixed lists
    1. and nest them
      • like this
* You can even create mixed lists
*# and nest them
*#* like this
Definition list 
list of definitions
item 
the item's definition
another item
the other item's definition
  • One item per line; a newline can appear before the colon, but using a space before the colon improves parsing.
; Definition list : list of definitions
; item : the item's definition
; another item
: the other item's definition
A colon indents a line or paragraph.

A manual newline starts a new paragraph.

  • This is primarily for displayed material, but is also used for discussion on Talk pages.
: A colon indents a line or paragraph.
A manual newline starts a new paragraph.

When there is a need for separating a block of text

the blockquote command will indent both margins when needed instead of the left margin only as the colon does.

This is useful for (as the name says) inserting blocks of quoted (and cited) text.

<blockquote>
The '''blockquote''' command will indent 
both margins when needed instead of the 
left margin only as the colon does.  
</blockquote>
IF a line starts with a space THEN
it will be formatted exactly
as typed;
in a fixed-width font;
lines will not wrap;
ENDIF
  • This is useful for:
    • pasting preformatted text;
    • algorithm descriptions;
    • program source code;
    • ASCII art;
    • chemical structures;
  • WARNING: If you make it wide, you force the whole page to be wide and hence less readable, especially for people who use lower resolutions. Never start ordinary lines with spaces.
 IF a line starts with a space THEN
 it will be formatted exactly
 as typed;
 in a fixed-width font;
 lines will not wrap;
 ENDIF
Centered text.
  • Please note the American spelling of "center."
<center>Centered text.</center>

A horizontal dividing line: this is above it


and this is below it.

  • Mainly useful for
    • disambiguation - but to be used sparsely, only when separating completely different, unrelated (groups of) meanings
    • separating threads on Talk pages.
A [[horizontal dividing line]]:
this is above it
----
and this is below it.

Links and URLs

What it looks like What you type

London has public transport.

  • A link to another Wikipedia article.
  • Internally, the first letter of the target page is automatically capitalized and spaces are represented as underscores (typing an underscore in the link has the same effect as typing a space, but is not recommended).
  • Thus the link above is to the URL www.wikipedia.org/wiki/Public_transport, which is the Wikipedia article with the name "Public transport". See also Wikipedia:Canonicalization.
London has [[public transport]].

San Francisco also has public transportation.

  • Same target, different name.
  • This is a piped link.
  • The "piped" text must be placed first, the text that will be displayed, second.
San Francisco also has
[[public transport|public transportation]].

San Francisco also has public transportation.

Examples include buses, taxis, and streetcars.

  • Endings are blended into the link.
  • Preferred style is to use this instead of a piped link, if possible.
San Francisco also has
[[public transport]]ation.

Examples include [[bus]]es, [[taxi]]s,
and [[streetcar]]s.

See the Wikipedia:Manual of Style.

See the [[Wikipedia:Manual of Style]].

Automatically hide stuff in parentheses: kingdom.

Automatically hide namespace: Village Pump.

Or both: Manual of Style

But not: [[Wikipedia:Manual of Style#Links|]]

  • The server fills in the part after the pipe character (|) when you save the page. The next time you open the edit box you will see the expanded piped link. When previewing your edits, you will not see the expanded form until you press Save and Edit again. The same applies to links to sections within the same page (see previous entry).
Automatically hide stuff in parentheses:
[[kingdom (biology)|]].

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

Or both:
[[Wikipedia:Manual of Style (headings)|]]

But not:
[[Wikipedia:Manual of Style#Links|]]

The weather in London is a page that does not exist yet.

  • You can create it by clicking on the link (but please do not do so with this particular link).
  • To create a new page:
    1. Create a link to it on some other (related) page.
    2. Save that page.
    3. Click on the link you just made. The new page will open for editing.
  • For more information, see How to start a page and check out Wikipedia's naming conventions.
  • Please do not create a new article without linking to it from at least one other article.
[[The weather in London]] is a page 
that does not exist yet.

Wikipedia:How to edit a page is this page.

  • Self links appear as bold text when the article is viewed.
  • Do not use this technique to make the article name bold in the first paragraph; see the Manual of Style.
[[Wikipedia:How to edit a page]] is this page.

When adding a comment to a Talk page, you should sign it by adding three tildes to add your user name:

Ben Brockert

or four to add user name plus date/time:

Ben Brockert 00:18, Nov 19, 2004 (UTC)

Five tildes gives the date/time alone:

00:18, Nov 19, 2004 (UTC)
  • The first two both provide a link to your user page.
When adding a comment to a Talk page,
you should sign it by adding
three tildes to add your user name:
: ~~~
or four for user name plus date/time:
: ~~~~
Five tildes gives the date/time alone:
: ~~~~~
  • Redirect one article title to another by placing a directive like the one shown to the right on the first line of the article (such as at a page titled "UN").
  • Note that, while it is possible to link to a section, it is not possible to redirect to a section. For example, "#REDIRECT [[United Nations#International_Years]]" will redirect to the United Nations page, but not to any particular section on it. This feature will not be implemented in the future, so such redirects should not be used.
#REDIRECT [[United Nations]]