Editing Pages
The pages on this site are wiki-based pages, which means that pages can be created and edited by multiple authors. To create and edit pages at JACoW.org, you must be a member of the JACoW team and have an account. If you need an account and/or are new to JACoW.org, please see Working in the JACoW.org Wiki.
PmWiki is not WYSIWYG - When editing a page, you see the markup text that describes the content of the page. The basic rules for page markup are simple:
- Use a blank line to start a new paragraph more.
- To make a list, start each line with # for numbered (ordered) lists or * for bulleted (unordered) lists more.
- To make a heading, start a line with two or more ! marks; !! is a subheading, and !!! is a sub-subheading more.
- To emphasize text, enclose it in 2 or 3 single quotes;
''text''
for italics or '''text'''
for bold more.
- To make a link to another page, enclose the page's name in double brackets; for example
[[basic editing]]
links to this page more.
- To make a link to another site, type its address, such as http://example.com/ more.
If you want to experiment with editing a page, try it on the Wiki Sandbox. You can edit the Wiki Sandbox without affecting anything important on this site.
Basic Formatting
General Tips
- Don't look for complicated formatting; it's hard to get and difficult to work with.
- Use headings to separate content within a page, particularly if the page is long.
- Use lists, bullet or numeric, which simplify reading.
- Use tables when you have a small amount of data. For more complex, longer tabular content, use the Table from CSV module.
The tables below demonstrate many of the common markups used to format pages. The left column shows what to write to achieve the effect, the right column shows the effect of the markup. More details are available from the text formatting rules and other documentation pages. An exhaustive list of default markup is available as the markup master index.
Paragraphs and line breaks
What to type
|
What it looks like
|
Consecutive lines
will be merged together
as part of the same paragraph.
One or more empty lines will start a new paragraph.
| Consecutive lines
will be merged together
as part of the same paragraph.
One or more empty lines will start a new paragraph.
|
Two backslashes at the end of a line \\
force a line break.
Or use this markup: [[<<]] to force a break.
| Two backslashes at the end of a line force a line break.
Or use this markup: to force a break.
|
Further reading:
- text formatting rules for more information on linebreaks, indented or hanging paragraphs.
- wiki styles for centered or right justified paragraphs and "floating" text (boxes), borders and much more.
Lists
Start each line with # for numbered (ordered) lists or * for bulleted (unordered) lists:
* Bullet list
* Another item
** More asterisks produce sub-items
** etc.
| - Bullet list
- Another item
- More asterisks produce sub-items
- etc.
|
# Numbered lists
# Another item
## more hashes produce sub-items
| - Numbered lists
- Another item
- more hashes produce sub-items
|
# List types
# can be mixed
** numbered list with unordered sub-list
| - List types
- can be mixed
- numbered list with unordered sub-list
|
Learn more about lists (including definition lists) and list styles.
Headings
Headings are useful for creating a "well-structured" page. They're not just for making big text.
What to type
|
What it looks like
|
!! Major Subheading
!!! Minor Subheading
!!!! And More
!!!!! Subheadings
| Major Subheading
Minor Subheading
And More
Subheadings
|
Text Emphasis
To emphasize, enclose text in apostrophes (single-quote marks), not double-quotes.
What to type
|
What it looks like
|
''Emphasize'' (italics),
'''strong''' (bold),
'''''very strong''''' (bold italics).
| Emphasize (italics),
strong (bold),
very strong (bold italics).
|
Links
To make a link to another page, enclose the page's name in double square brackets.
What to type
|
What it looks like
|
Practice editing in the [[wiki sandbox]]
| Practice editing in the wiki sandbox
|
Note that words are automatically capitalized in page titles. The link above links to the page WikiSandbox.
Text after a pipe (|) is used as the link text:
Practice editing in the
[[WikiSandbox | practice area]].
| Practice editing in the
practice area.
|
Endings become part of the link text, parentheses hide parts of the link name:
When linking to a page in a different WikiGroup, provide the group name, followed by a separator, and then the page name:
Links to external sites
Colons make InterMap (also called InterWiki) links to other wikis:
PmWiki supports more link types and a lot of display options, see Links to learn more.
Preformatted text
Preformatted text is displayed using a monospace font and not generating linebreaks except where explicitly indicated in the markup.
Note that very long lines of preformatted text can cause the whole page to be wide.
For preformatted text with markup (e.g. emphasis) being processed, start each line with a space:
Lines that begin with a space
are formatted exactly as typed
in a '''fixed-width''' font.
| Lines that begin with a space
are formatted exactly as typed
in a fixed-width font.
|
If you don't want Wiki markup to be processed, use [@ @]. Can also be used inline.
[@
Text escaped this way has
the HTML ''code'' style
@]
|
Text escaped this way has
the HTML ''code'' style
|
Escape sequence
If you don't want Wiki markup to be processed, but lines reformatted use [= =]
. Can also be used inline.
[=
markup is ''not'' processed
but lines are reformatted
=]
|
markup is ''not'' processed
but lines are reformatted
|
Horizontal line
Four or more dashes at
the beginning of a line
----
produce a "horizontal rule"
| Four or more dashes at
the beginning of a line
produce a "horizontal rule"
|
Tables
Simple tables use double pipe characters to separate cells:
|| border=1
||! head 1 ||! head 2 ||! head 3 ||
|| cell 1 || cell 2 || cell 3 ||
| head 1 | head 2 | head 3 |
cell 1 | cell 2 | cell 3 |
|
See simple tables and advanced tables to learn more about the rich feature set of PmWiki tables.
Images
See Images
Character formatting
What to type
|
What it looks like
|
* @@Monospaced text@@
* Text with '^superscripts^'
* Text with '_subscripts_'
* deleted {-strikethrough-} text
* inserted {+underline+} text
* [+big+], [++bigger++] text
* [-small-], [--smaller--] text
| Monospaced text
- Text with superscripts
- Text with subscripts
- deleted
strikethrough text
- inserted underline text
- big, bigger text
- small, smaller text
|
Use WikiStyles to change the text color .
Page titles
The (:title:)
directive sets the page's title to something other than its page name.
(:Title Basic PmWiki editing rules:)
The name of this page is "{$Name}", and its title is "{$Title}".
| The name of this page is "BasicEditing", and its title is "Basic PmWiki editing rules".
|
Page Description
- The
(:Description Page summary here:)
directive sets the page description. The description is used by search engines, and can displayed in search results and in page lists.
(:Description PmWiki's basic edit syntax:)
The summary description of this page is {$Description}.
| The summary description of this page is PmWiki's basic edit syntax.
|