WikiSyntax.wiki
author Wuzzy
Wed, 02 May 2018 23:32:42 +0100
changeset 1364 a0547181393a
parent 590 3e416a17f6b9
child 1444 b5bd32ab09ed
permissions -rw-r--r--
LuaLibraryTracker: TOC 2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
590
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     1
#summary The reference to the wiki syntax for Google Code projects
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     2
#labels Restrict-AddWikiComment-Commit
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     3
= Wiki Syntax =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     4
<wiki:toc max_depth="2" /> 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     5
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     6
= Introduction =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     7
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     8
Each wiki page is stored in a .wiki file under the /wiki directory in
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
     9
a project's repository.  Each file's name is the same as the wiki page
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    10
name.  And, each wiki file consists of optional pragma lines followed
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    11
by the content of the page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    12
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    13
= Pragmas =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    14
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    15
Optional pragma lines provide metadata about the page and how it should be
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    16
displayed. These lines are only processed if they appear at the top of
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    17
the file.  Each pragma line begins with a pound-sign (#) and the
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    18
pragma name, followed by a value.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    19
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    20
|| *Pragma*   || *Value*  ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    21
|| #summary   || One-line summary of the page ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    22
|| #labels    || Comma-separated list of labels (filled in automatically via the web UI) ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    23
|| #sidebar   || See [http://code.google.com/p/support/wiki/WikiSyntax#Side_navigation Side navigation] ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    24
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    25
= Wiki-style markup =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    26
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    27
== Paragraphs ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    28
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    29
Use one or more blank lines to separate paragraphs. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    30
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    31
== Typeface ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    32
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    33
||* Name/Sample*   || * Markup *       ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    34
||  _italic_       || `_italic_`       ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    35
||  *bold*         || `*bold*`         ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    36
||  `code`         || {{{`code`}}}     ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    37
||  {{{code}}}     || `{{{code}}}`     ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    38
||  ^super^script  || `^super^script`  ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    39
||  ,,sub,,script  || `,,sub,,script`  ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    40
|| ~~strikeout~~   || `~~strikeout~~`  ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    41
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    42
You can mix these typefaces in some ways:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    43
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    44
||       *Markup*                    ||        *Result*                 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    45
|| `_*bold* in italics_`             || _*bold* in italics_             ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    46
|| `*_italics_ in bold*`             || *_italics_ in bold*             ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    47
|| `*~~strike~~ works too*`          || *~~strike~~ works too*          ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    48
|| `~~as well as _this_ way round~~` || ~~as well as _this_ way round~~ ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    49
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    50
== Code ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    51
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    52
If you have a multiline code block that you want to display verbatim,
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    53
use the multiline code delimiter:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    54
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    55
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    56
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    57
def fib(n):
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    58
  if n == 0 or n == 1:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    59
    return n
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    60
  else:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    61
    # This recursion is not good for large numbers.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    62
    return fib(n-1) + fib(n-2)
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    63
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    64
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    65
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    66
Which results in:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    67
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    68
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    69
def fib(n):
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    70
  if n == 0 or n == 1:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    71
    return n
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    72
  else:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    73
    # This recursion is not good for large numbers.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    74
    return fib(n-1) + fib(n-2)
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    75
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    76
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    77
For more control over the syntax higlighting, the `<code>` tag allows you to specify a file extension:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    78
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    79
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    80
<code language="xml">
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    81
<hello target="world"/>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    82
</code>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    83
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    84
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    85
To disable highlighting entirely, use the `<pre>` tag.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    86
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    87
== Headings ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    88
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    89
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    90
= Heading =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    91
== Subheading ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    92
=== Level 3 ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    93
==== Level 4 ====
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    94
===== Level 5 =====
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    95
====== Level 6 ======
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    96
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    97
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    98
== Dividers ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
    99
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   100
Four or more dashes on a line by themselves results in a horizontal rule.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   101
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   102
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   103
== Lists ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   104
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   105
Google Code wikis support both bulleted and numbered lists. A list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   106
must be indented at least one space to be recognized as such. You can
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   107
also nest lists one within the other by appropriate use of indenting:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   108
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   109
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   110
The following is:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   111
  * A list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   112
  * Of bulleted items
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   113
    # This is a numbered sublist
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   114
    # Which is done by indenting further
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   115
  * And back to the main bulleted list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   116
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   117
 * This is also a list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   118
 * With a single leading space
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   119
 * Notice that it is rendered
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   120
  # At the same levels
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   121
  # As the above lists.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   122
 * Despite the different indentation levels.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   123
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   124
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   125
The following is:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   126
  * A list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   127
  * Of bulleted items
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   128
    # This is a numbered sublist
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   129
    # Which is done by indenting further
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   130
  * And back to the main bulleted list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   131
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   132
 * This is also a list
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   133
 * With a single leading space
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   134
 * Notice that it is rendered
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   135
  # At the same levels
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   136
  # As the above lists.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   137
 * Despite the different indentation levels.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   138
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   139
== Quoting ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   140
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   141
Block quotes place emphasis on a particular extract of text in your
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   142
page. Block quotes are created by indenting a paragraph by at least
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   143
one space:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   144
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   145
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   146
Someone once said:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   147
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   148
  This sentence will be quoted in the future as the canonical example
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   149
  of a quote that is so important that it should be visually separate
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   150
  from the rest of the text in which it appears.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   151
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   152
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   153
Someone once said:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   154
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   155
  This sentence will be quoted in the future as the canonical example
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   156
  of a quote that is so important that it should be visually separate
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   157
  from the rest of the text in which it appears.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   158
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   159
== Links ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   160
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   161
Links are central to the wiki principle, as they create the web of
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   162
content. Google Code wiki permits both internal (within the wiki) and
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   163
external links, and in some cases automatically creates a link when it
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   164
recognizes either a !WikiWord or an URL.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   165
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   166
=== Internal wiki links ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   167
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   168
Internal links within a wiki are created using the syntax below. If
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   169
you add a wiki link to a page that does not exist, the link will
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   170
appear with a !LittleLink[WikiSyntax ?] to project committers and
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   171
owners. Clicking that link will take you to the page creation form
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   172
where you can enter content for that page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   173
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   174
If you are not logged in, wiki links that point to non-existent pages
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   175
will appear as plain text, without the link to the page creation
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   176
form. When you create the target page,
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   177
the link will become a normal hyperlink for all viewers of
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   178
the page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   179
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   180
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   181
WikiSyntax is identified and linked automatically
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   182
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   183
Wikipage is not identified, so if you have a page named [Wikipage] you
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   184
need to link it explicitly.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   185
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   186
If the WikiSyntax page is actually about reindeers, you can provide a
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   187
description, so that people know you are actually linking to a page on
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   188
[WikiSyntax reindeer flotillas].
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   189
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   190
If you want to mention !WikiSyntax without it being autolinked, use an
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   191
exclamation mark to prevent linking.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   192
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   193
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   194
WikiSyntax is identified and linked automatically
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   195
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   196
Wikipage is not identified, so if you have a page named [Wikipage] you
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   197
need to link it explicitly.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   198
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   199
If the WikiSyntax page is actually about reindeers, you can provide a
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   200
description, so that people know you are actually linking to a page on
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   201
[WikiSyntax reindeer flotillas].
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   202
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   203
If you want to mention !WikiSyntax without it being autolinked, use an
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   204
exclamation mark to prevent linking.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   205
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   206
=== Links to anchors within a page ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   207
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   208
Each heading defines a HTML anchor with the same name as the heading, but with spaces replaced by underscores. You can
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   209
create a link to a specific heading on a page like this:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   210
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   211
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   212
[WikiSyntax#Wiki-style_markup]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   213
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   214
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   215
And it will render as: [WikiSyntax#Wiki-style_markup].
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   216
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   217
=== Links to issues and revisions ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   218
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   219
You can easily link to issues and revisions using the following syntax.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   220
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   221
  * `issue 123` will be autolinked to issue number 123 in the current project.  You can include a `#` or not.  If the issue has been closed, the link will appear as a cross-out rather than an underline.  Hovering your mouse over such a link shows the issue summary.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   222
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   223
  * `issue PROJECTNAME:122` will be autolinked to that issue number in the specified project.  This is useful when your project depends on work being done in related projects.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   224
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   225
  * `r123` will be autolinked to the revision detail page for that revision in the current project.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   226
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   227
There is currently no way to disable this type of autolinking. See issue 996.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   228
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   229
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   230
For example: Please add a comment on issue 123 rather than adding more review comments to r456. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   231
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   232
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   233
Renders as: Please add a comment on issue 123 rather than adding more review comments to r456.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   234
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   235
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   236
=== Links to external pages ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   237
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   238
You can of course link to external pages from your own wiki pages,
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   239
using a syntax similar to that for internal links:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   240
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   241
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   242
Plain URLs such as http://www.google.com/ or ftp://ftp.kernel.org/ are
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   243
automatically made into links.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   244
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   245
You can also provide some descriptive text. For example, the following
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   246
link points to the [http://www.google.com Google home page].
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   247
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   248
If your link points to an image, it will get inserted as an image tag
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   249
into the page:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   250
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   251
http://code.google.com/images/code_sm.png
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   252
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   253
You can also make the image into a link, by setting the image URL as
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   254
the description of the URL you want to link:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   255
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   256
[http://code.google.com/ http://code.google.com/images/code_sm.png]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   257
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   258
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   259
Plain URLs such as http://www.google.com/ or ftp://ftp.kernel.org/ are
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   260
automatically made into links.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   261
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   262
You can also provide some descriptive text. For example, the following
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   263
link points to the [http://www.google.com Google home page].
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   264
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   265
You can also make the image into a link, by setting the image URL as
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   266
the description of the URL you want to link:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   267
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   268
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   269
[http://code.google.com/ http://code.google.com/images/code_sm.png]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   270
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   271
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   272
[http://code.google.com/ http://code.google.com/images/code_sm.png]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   273
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   274
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   275
=== Links to images ===
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   276
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   277
If your link points to an image (that is, if it ends in `.png`,
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   278
`.gif`, `.jpg` or `.jpeg`), it will get inserted as an image into the
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   279
page:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   280
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   281
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   282
http://code.google.com/images/code_sm.png
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   283
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   284
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   285
http://code.google.com/images/code_sm.png
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   286
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   287
If the image is produced by a server-side script, you may need to add a nonsense query string parameter to the end so that the URL ends with a supported image filename extension.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   288
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   289
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   290
http://chart.apis.google.com/chart?chs=200x125&chd=t:48.14,33.79,19.77|83.18,18.73,12.04&cht=bvg&nonsense=something_that_ends_with.png
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   291
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   292
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   293
http://chart.apis.google.com/chart?chs=200x125&chd=t:48.14,33.79,19.77|83.18,18.73,12.04&cht=bvg&nonsense=something_that_ends_with.png
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   294
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   295
== Tables ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   296
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   297
Tables are created by entering the content of each cell separated by
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   298
{{{||}}} delimiters. You can insert other inline wiki syntax in table
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   299
cells, including typeface formatting and links.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   300
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   301
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   302
|| *Year* || *Temperature (low)* || *Temperature (high)* ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   303
|| 1900 || -10 || 25 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   304
|| 1910 || -15 || 30 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   305
|| 1920 || -10 || 32 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   306
|| 1930 || _N/A_ || _N/A_ ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   307
|| 1940 || -2 || 40 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   308
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   309
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   310
|| *Year* || *Temperature (low)* || *Temperature (high)* ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   311
|| 1900 || -10 || 25 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   312
|| 1910 || -15 || 30 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   313
|| 1920 || -10 || 32 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   314
|| 1930 || _N/A_ || _N/A_ ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   315
|| 1940 || -2 || 40 ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   316
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   317
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   318
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   319
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   320
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   321
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   322
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   323
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   324
= HTML support =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   325
To aid in the presentation of a wiki page there is some support for HTML. HTML tags are only supported in wiki pages, not in page comments.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   326
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   327
HTML syntax can be used in conjunction with wiki syntax, but it is recommended against doing so where possible.<wiki:comment>Also, avoid blank lines between list items.</wiki:comment>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   328
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   329
The following HTML tags and attributes are currently supported:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   330
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   331
<table border=1>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   332
<thead><th>HTML Tag</th><th>Supported Attributes</th></thead>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   333
<tbody>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   334
<tr><td>a</td><td>title dir lang href</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   335
<tr><td>b</td><td>title dir lang</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   336
<tr><td>br</td><td>title dir lang</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   337
<tr><td>blockquote</td><td>title dir lang</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   338
<tr><td>code</td><td>title dir lang language `[1]`</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   339
<tr><td>dd</td><td>title dir lang</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   340
<tr><td>div</td><td>title dir lang</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   341
<tr><td>dl</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   342
<tr><td>dt</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   343
<tr><td>em</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   344
<tr><td>font</td><td>title dir lang face size color</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   345
<tr><td>h1</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   346
<tr><td>h2</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   347
<tr><td>h3</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   348
<tr><td>h4</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   349
<tr><td>h5</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   350
<tr><td>i</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   351
<tr><td>img</td><td>title dir lang src alt border height width align</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   352
<tr><td>li</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   353
<tr><td>ol</td><td>title dir lang type start</td></tr>    
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   354
<tr><td>p</td><td>title dir lang align</td></tr>     
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   355
<tr><td>pre</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   356
<tr><td>q</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   357
<tr><td>s</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   358
<tr><td>span</td><td>title dir lang</td></tr>      <tr><td>strike</td><td>title dir lang</td></tr>      <tr><td>strong</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   359
<tr><td>sub</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   360
<tr><td>sup</td><td>title dir lang</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   361
<tr><td>table</td><td>title dir lang align valign cellspacing cellpadding border width height</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   362
<tr><td>tbody</td><td>title dir lang align valign cellspacing cellpadding border width height</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   363
<tr><td>td</td><td>title dir lang align valign cellspacing cellpadding border width height</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   364
<tr><td>tfoot</td><td>title dir lang align valign cellspacing cellpadding border width height</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   365
<tr><td>th</td><td>title dir lang align valign cellspacing cellpadding border width height</td></tr>  
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   366
<tr><td>thead</td><td>title dir lang align valign cellspacing cellpadding border width height colspan rowspan</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   367
<tr><td>tr</td><td>title dir lang align valign cellspacing cellpadding border width height colspan rowspan</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   368
<tr><td>tt</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   369
<tr><td>u</td><td>title dir lang</td></tr>      
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   370
<tr><td>ul</td><td>title dir lang type</td></tr>     
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   371
<tr><td>var</td><td>title dir lang</td></tr>      </tbody>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   372
</table>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   373
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   374
`[1]` The language attribute of the code tag is the file extension of the language used in the code block. It is used as a hint for the syntax highlighter.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   375
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   376
== Escaping HTML Tags ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   377
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   378
When you want to display html tags directly on your wiki page (as opposed to rendered), you will need to escape each HTML tag. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   379
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   380
HTML tags can be escaped as shown in the table below:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   381
<table border="1">
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   382
<thead><th>Markup</th><th>Result</th></thead>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   383
<tbody>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   384
<tr><td> {{{`<hr>`}}}</td><td>`<hr>`</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   385
<tr><td> `{{{<hr>}}}`</td><td>{{{<hr>}}}</td></tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   386
</tbody>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   387
</table>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   388
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   389
<br/>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   390
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   391
= Comments =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   392
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   393
The wiki supports embedded comments to help explain the contents of a wiki page. Anything inside the comment block is removed from the rendered page, but is visible when editing or viewing the source for that page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   394
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   395
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   396
<wiki:comment>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   397
This text will be removed from the rendered page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   398
</wiki:comment>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   399
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   400
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   401
= +1 Button =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   402
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   403
Use `<g:plusone></g:plusone>` to add a [http://www.google.com/+1/button/ +1 button] to the page. Example:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   404
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   405
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   406
<g:plusone size="medium"></g:plusone>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   407
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   408
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   409
<g:plusone size="medium"></g:plusone>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   410
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   411
The count, size, and href parameters are supported; see http://code.google.com/apis/+1button/ for documentation.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   412
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   413
= Gadgets =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   414
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   415
You can embed [http://www.google.com/ig/directory?synd=open Gadgets] on your wiki pages with the following syntax:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   416
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   417
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   418
<wiki:gadget url="http://example.com/gadget.xml" height="200" border="0" /> 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   419
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   420
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   421
Valid attributes are:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   422
 * `url`: the URL of the gadget
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   423
 * `width`: the width of the gadget
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   424
 * `height`: the height of the gadget
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   425
 * `title`: a title to display above the gadget
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   426
 * `border`: "0" or "1", whether to draw a border around the gadget
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   427
 * `up_*`: Gadget user preference parameters
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   428
 * `caja`: "0" or "1", whether to use Caja to render the gadget.  [http://code.google.com/p/google-caja Caja] helps protect users from malicious or accidental errors in third party gadgets.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   429
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   430
WorkingWithGoogleGadgets describes how to create gadgets for Google Code. It also provides  a few helpful suggestions that can make it easier to publish gadgets and to integrate with other Google products such as iGoogle.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   431
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   432
InterestingDeveloperGadgets shows some sample gadgets you may want to include on your project pages.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   433
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   434
= Videos =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   435
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   436
You can embed videos with the following syntax:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   437
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   438
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   439
<wiki:video url="http://www.youtube.com/watch?v=3LkNlTNHZzE"/>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   440
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   441
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   442
Valid attributes are:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   443
 * `url`: the URL of the video
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   444
 * `width`: the width of the embedded video
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   445
 * `height`: the height of the embedded video
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   446
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   447
Right now we support videos from YouTube,. Other video sites may be embeddable via a gadget, as described above.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   448
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   449
= Navigation =
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   450
== Table of Contents ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   451
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   452
An inline table of contents can be generated from page headers on a wiki page. Add the following syntax to a page in the location the table of contents should be displayed:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   453
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   454
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   455
<wiki:toc max_depth="1" />
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   456
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   457
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   458
Valid attributes are:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   459
 * `max_depth`: the maximum header depth to display in the table of contents
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   460
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   461
== Side navigation ==
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   462
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   463
You can specify the sidebar for a wiki page by selecting another wiki page that defines your side navigation. The [http://code.google.com/p/guava-libraries/wiki/GuavaExplained?tm=6 Guava project] uses the sidebar extensively across its wiki.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   464
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   465
One way of adding a sidebar is by setting the #sidebar pragma, as shown below. Alternatively, the sidebar pragma can be left blank if no side navigation is desired. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   466
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   467
|| #sidebar !TableOfContents ||
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   468
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   469
The side navigation that is defined should be in the format of a simple list, as shown below. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   470
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   471
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   472
  * [Articles HOWTO articles]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   473
    * [ArticlesXSS Web security]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   474
    * [ArticlesDom DOM manipulation]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   475
    * [ArticlesStyle CSS and style]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   476
    * [ArticlesTips Tips and tricks]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   477
  * [DOMReference DOM reference]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   478
  * [HTMLElements HTML reference]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   479
  * [CSSReference CSS reference]
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   480
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   481
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   482
A default sidebar page can also be specified for all wiki pages by project owners through the Wiki settings in the Administer tab. If a #sidebar pragma is also specified, it will take precedence on the page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   483
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   484
= Localizing Wiki Content = 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   485
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   486
Along with the default language for the wiki, which can be set through the Wiki settings in the Administer tab, additional languages are also supported. If more than one language is available, based on a user's language preference (e.g. browser language), the wiki will try to serve the page for the appropriate language. If no wiki page exists for that language, it will fall back to the default language. Comments, however, are shared amongst all translations of a wiki page.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   487
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   488
New translations for a page cannot be added through the web interface and have to be added through the Subversion repository. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   489
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   490
To add a translation of a page, first checkout the wiki from Subversion: <br/>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   491
`svn checkout https://`<b>yourproject</b>`.googlecode.com/svn/wiki/` <b>yourdirectory</b> `-username` <b>yourusername</b>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   492
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   493
Then create a new directory under /wiki/ using the two letter ISO-639 code as the name of that directory. Place all translated files in the new directory and submit those changes to the Subversion repository. 
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   494
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   495
The following is an example of a valid wiki directory:
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   496
{{{
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   497
wiki/
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   498
   ja/
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   499
      ProjectHistory.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   500
      StyleGuide.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   501
   zh-Hans/
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   502
      ProjectHistory.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   503
      StyleGuide.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   504
   zh-Hant/
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   505
      ProjectHistory.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   506
      StyleGuide.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   507
   ProjectHistory.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   508
   StyleGuide.wiki
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   509
}}}
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   510
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   511
Once the files have been submitted to the project's subversion repository, they can now be edited through the wiki's web editor. The process is the same for Mercurial or Git projects, except that the wiki lives in the root directory (not wiki/) of `https://wiki.`<b>yourproject</b>`.googlecode.com/hg/` or `https://wiki.`<b>yourproject</b>`.googlecode.com/git/`.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   512
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   513
Note: The wiki accepts a subset of ISO-639 two letter language codes, where a few of the codes (such as zh_Hans) contain locale-specific codes. Such locale-specific codes should use a hyphen (zh-Hans) separator. A few example language codes have been specified in the table below.
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   514
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   515
<table border=1>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   516
<tbody><tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   517
<th style="padding: 4px 4px 4px 8px;" scope="col"> Language (Locale)</th>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   518
<th style="padding: 4px 4px 4px 8px;" scope="col"> Directory Name
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   519
</th>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   520
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   521
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   522
<td>Arabic</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   523
<td>ar</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   524
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   525
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   526
<td>Bulgarian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   527
<td>bg</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   528
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   529
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   530
<td>Chinese (China)</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   531
<td>zh-Hans</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   532
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   533
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   534
<td>Chinese (Taiwan)</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   535
<td>zh-Hant</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   536
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   537
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   538
<td>Croatian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   539
<td>hr</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   540
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   541
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   542
<td>Czech</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   543
<td>cs</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   544
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   545
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   546
<td>Danish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   547
<td>da</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   548
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   549
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   550
<td>Dutch</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   551
<td>nl</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   552
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   553
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   554
<td>English (United Kingdom)</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   555
<td>en-GB</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   556
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   557
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   558
<td>English (United States)</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   559
<td>en-US</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   560
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   561
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   562
<td>Finnish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   563
<td>fi</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   564
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   565
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   566
<td>French</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   567
<td>fr</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   568
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   569
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   570
<td>German</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   571
<td>de</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   572
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   573
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   574
<td>Greek</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   575
<td>el</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   576
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   577
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   578
<td>Hebrew</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   579
<td>he</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   580
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   581
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   582
<td>Hungarian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   583
<td>hu</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   584
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   585
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   586
<td>Italian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   587
<td>it</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   588
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   589
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   590
<td>Japanese</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   591
<td>ja</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   592
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   593
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   594
<td>Korean</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   595
<td>ko</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   596
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   597
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   598
<td>Norwegian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   599
<td>no</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   600
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   601
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   602
<td>Polish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   603
<td>pl</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   604
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   605
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   606
<td>Portuguese (Brazil)</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   607
<td>pt-BR</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   608
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   609
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   610
<td>Romanian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   611
<td>ro</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   612
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   613
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   614
<td>Russian</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   615
<td>ru</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   616
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   617
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   618
<td>Slovak</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   619
<td>sk</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   620
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   621
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   622
<td>Spanish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   623
<td>es</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   624
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   625
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   626
<td>Swedish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   627
<td>sv</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   628
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   629
<tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   630
<td>Turkish</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   631
<td>tr</td>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   632
</tr>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   633
</tbody></table>
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   634
3e416a17f6b9 add GC's wiki syntax page
sheepluva
parents:
diff changeset
   635
_The content on this page created by Google is licensed under the [http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 License].  User-generated content is not included in this license._