What's new? | Help | Directory | Sign in
Google
             
Search
for
Updated Nov 19 (2 days ago) by jrobbins
Labels: Featured
WikiSyntax  
The reference to the wiki syntax for Google Code projects

Introduction

Each wiki page is stored in a .wiki file under the /wiki directory in a project's repository. Each file's name is the same as the wiki page name. And, each wiki file consists of optional pragma lines followed by the content of the page.

Pragmas

Optional pragma lines provide metadata about the page and how it should be displayed. These lines are only processed if they appear at the top of the file. Each pragma line begins with a pound-sign (#) and the pragma name, followed by a value.

Pragma Value
#summary One-line summary of the page
#labels Comma-separated list of labels (filled in automatically via the web UI)
#sidenav Name of another wiki page to display in left-hand column on this page, or blank for no sidenav. For an example, see the doctype project.

A default sidenav page can be specified by project owners on the Wiki sub-tab of the Administer tab.

Wiki-style markup

Paragraphs

Use one or more blank lines to separate paragraphs.

Typeface

Name/Sample Markup
italic _italic_
bold *bold*
code `code`
code {{{code}}}
superscript ^super^script
subscript ,,sub,,script
strikeout ~~strikeout~~

You can mix these typefaces in some ways:

Markup Result
_*bold* in italics_ bold in italics
*_italics_ in bold* italics in bold
*~~strike~~ works too* strike works too
~~as well as _this_ way round~~ as well as this way round

Code

If you have a multiline code block that you want to display verbatim, use the multiline code delimiter:

{{{
def fib(n):
  if n == 0 or n == 1:
    return n
  else:
    # This recursion is not good for large numbers.
    return fib(n-1) + fib(n-2)
}}}

Which results in:

def fib(n):
  if n == 0 or n == 1:
    return n
  else:
    # This recursion is not good for large numbers.
    return fib(n-1) + fib(n-2)

Headings

= Heading =
== Subheading ==
=== Level 3 ===
==== Level 4 ====
===== Level 5 =====
====== Level 6 ======

Heading

Subheading

Level 3

Level 4

Level 5
Level 6

Dividers

Four or more dashes on a line by themselves results in a horizontal rule.

Lists

Google Code wikis support both bulleted and numbered lists. A list must be indented at least one space to be recognized as such. You can also nest lists one within the other by appropriate use of indenting:

The following is:
  * A list
  * Of bulleted items
    # This is a numbered sublist
    # Which is done by indenting further
  * And back to the main bulleted list

 * This is also a list
 * With a single leading space
 * Notice that it is rendered
  # At the same levels
  # As the above lists.
 * Despite the different indentation levels.

The following is:

Quoting

Block quotes place emphasis on a particular extract of text in your page. Block quotes are created by indenting a paragraph by at least one space:

Someone once said:

  This sentence will be quoted in the future as the canonical example
  of a quote that is so important that it should be visually separate
  from the rest of the text in which it appears.

Someone once said:

This sentence will be quoted in the future as the canonical example of a quote that is so important that it should be visually separate from the rest of the text in which it appears.

Links

Links are central to the wiki principle, as they create the web of content. Google Code wiki permits both internal (within the wiki) and external links, and in some cases automatically creates a link when it recognizes either a WikiWord or an URL.

Internal wiki links

Internal links within a wiki are created using the syntax below. If you add a wiki link to a page that does not exist, the link will appear with a LittleLink? to all project members and owners. Clicking that link will take you to the page creation form where you can enter content for that page.

If you are not logged in, wiki links that point to non-existent pages will appear as plain text, without the link to the page creation form. When you create the target page as a project member or owner, the link will switch to being an actual hyperlink for all viewers of the page.

WikiSyntax is identified and linked automatically

Wikipage is not identified, so if you have a page named [Wikipage] you
need to link it explicitly.

If the WikiSyntax page is actually about reindeers, you can provide a
description, so that people know you're actually linking to a page on
[WikiSyntax reindeer flotillas].

If you want to mention !WikiSyntax without it being autolinked, use an
exclamation mark to prevent linking.

WikiSyntax is identified and linked automatically

Wikipage is not identified, so if you have a page named Wikipage you need to link it explicitly.

If the WikiSyntax page is actually about reindeers, you can provide a description, so that people know you're actually linking to a page on reindeer flotillas.

If you want to mention WikiSyntax without it being autolinked, use an exclamation mark to prevent linking.

Links to external pages

You can of course link to external pages from your own wiki pages, using a syntax similar to that for internal links:

Plain URLs such as http://www.google.com/ or ftp://ftp.kernel.org/ are
automatically made into links.

You can also provide some descriptive text. For example, the following
link points to the [http://www.google.com Google home page].

If your link points to an image, it will get inserted as an image tag
into the page:

http://code.google.com/images/code_sm.png

You can also make the image into a link, by setting the image URL as
the description of the URL you want to link:

[http://code.google.com/ http://code.google.com/images/code_sm.png]

Plain URLs such as http://www.google.com/ or ftp://ftp.kernel.org/ are automatically made into links.

You can also provide some descriptive text. For example, the following link points to the Google home page.

You can also make the image into a link, by setting the image URL as the description of the URL you want to link:

[http://code.google.com/ http://code.google.com/images/code_sm.png]

Links to images

If your link points to an image (that is, if it ends in .png, .gif, .jpg or .jpeg), it will get inserted as an image into the page:

http://code.google.com/images/code_sm.png

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.

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

Tables

Tables are created by entering the content of each cell separated by || delimiters. You can insert other inline wiki syntax in table cells, including typeface formatting and links.

|| *Year* || *Temperature (low)* || *Temperature (high)* ||
|| 1900 || -10 || 25 ||
|| 1910 || -15 || 30 ||
|| 1920 || -10 || 32 ||
|| 1930 || _N/A_ || _N/A_ ||
|| 1940 || -2 || 40 ||

Year Temperature (low) Temperature (high)
1900 -10 25
1910 -15 30
1920 -10 32
1930 N/A N/A
1940 -2 40

Wiki plug-ins

Gadgets

You can embed Gadgets on your wiki pages with the following syntax:

<wiki:gadget url="http://example.com/gadget.xml" height="200" border="0" /> 

Valid attributes are:

  • url: the URL of the gadget
  • width: the width of the gadget
  • height: the height of the gadget
  • title: a title to display above the gadget
  • border: "0" or "1", whether to draw a border around the gadget
  • up_*: Gadget user preference parameters

InterestingDeveloperGadgets shows some sample gadgets you may want to include on your project pages.

Table of Contents

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:

<wiki:toc max_depth="1" />

Valid attributes are:

The content on this page created by Google is licensed under the Creative Commons Attribution 3.0 License. User-generated content is not included in this license.


Comment by max.at.xam.de, Jul 18, 2007

What are the restrictions on internal wiki names? It seems one cannot use characters such as dot or minus in link names within square brackets.

Comment by anthony.aziz, Jul 20, 2007

Why is SourceCodeParser? or TypeDef? automatically recognized as a link, when it shows up with a '?' beside it?

Comment by ajiaojr, Jul 21, 2007

Can we have a directive to disable syntax highlighting? Currently syntax highlighting is applied to all code blocks, whether we want it or not, and is making some Wiki pages look strange. Take the current page as example.

Comment by lenoam, Jul 24, 2007

Can you add inline HTML? or at least the ability to add google group's subscribe/promotion box?

Comment by sashulika, Jul 25, 2007

what about [TableOfContents?] ?

Comment by pluskid.zju, Jul 25, 2007

Yes, I agree with ajiaojr, I don't like the syntax highlighting, it's better to have a choise of the highlighting type(type of language) or at least a choice to turn off it.

Comment by jrobbins, Jul 25, 2007

anthony.aziz: Any word that is written with CapitalsInTheMiddle? is automatically considered to be a link to a wiki page. If there is no page with that name, the "?" link allows you to easily create that page. That is just part of the way that all wiki's work, becaue the main idea of a wiki is to make it very easy to create hyperlinked pages. You can reverse the default behavior by using an exclaimation point, e.g., CapitalsInTheMiddle.

ajiaojr: pelase see the later comments in issue 44. You may want to star that issue.

lenoam: please see issue 23. You may want to star that issue.

sashulika: Please see  issue 116 . You may want to star that issue.

Comment by jrobbins, Jul 25, 2007

Woops, that example was supposed to look like: !CapitalsInTheMiddle.

Comment by Zoom.Quiet, Jul 27, 2007

very suggest add TableOfContent? support such as MoinMoin? [TableOfContents?]

Comment by gameweld, Jul 31, 2007

Can you edit the way the page name appears?

Comment by HamletDRC, Jul 31, 2007

Can we change the background color of a wiki page?

Comment by aziz.koeksal, Aug 04, 2007

It wasn't obvious to me, but if you want to write literals of *_~^ just put them in backquotes. Example: __FILENAME__

Comment by petdance, Aug 05, 2007

I don't see a way to force linefeeds, and suppress wrapping, unless I put lines between paragraphs.

Comment by marco.segato, Aug 06, 2007

@petdance: I personally use an heading markup with a blank inside.

Comment by philip.waters.pryce, Aug 07, 2007

any chance of a table of contents, or even internal page linking?

Comment by jrobbins, Aug 07, 2007

philip: please see  issue 116 . You may want to star that issue.

Comment by philipmjohnson, Aug 09, 2007

@aziz.koeksal: You have singlehandedly made my week. I have been trying to figure out how to produce a * in my wiki pages for so long without success. GoogleFolk?: could you please add this escape syntax to the Wiki Markup Help?

Comment by dmitry.shilnikov, Aug 17, 2007

Please dl, dd, and dt are needed.

Comment by james.heshka, Aug 25, 2007

Indenting?

Comment by ripper42, Aug 26, 2007

Image can point to external link, but cannot point to internal wiki page... ??

Comment by cleveridea.net, Sep 05, 2007

Without any reverse look up, Google Code Wiki is very UnWiki?

Comment by jrobbins, Sep 05, 2007

cleveridea.net: I have entered issue 410 to track this request. You may want to star that issue.

Comment by berlin.brown, Sep 15, 2007

How do you add the "summary" message?

Comment by jrobbins, Sep 16, 2007

Berlin: the syntax to set the summary is #summary This is the summary of this page.

You can see an example of that every time you create a page via the web UI.

Comment by berlin.brown, Sep 23, 2007

is there a special way to add images into wiki docs? Are there any special upload repository or can we just submit through subversion and then link to them like any other image.

Comment by jrobbins, Sep 24, 2007

berlin: the expected way to do it is to put images in subversion and then link to them.

Comment by davide.rognoni, Sep 30, 2007

Why this block code shows &quot; and not "

javascript:function fun(){ var win = window.open(document.location); win.document.write("<html><head><title>jshArea - JavaScript Hacking Area by Davide Rognoni</title></head><body><form><textarea id='jshArea' cols='80' rows='18'>alert(opener)</textarea><br><input type='button' value='eval jshArea' onclick='javascript:eval(document.getElementById(\"jshArea\").value)'></form></body></html>") } fun()
Comment by matthews.andrew, Oct 01, 2007

how do I control the size of paragraph text (i.e. like html small or smaller)?

Comment by john.clapperton, Oct 03, 2007

There seems to be no way to insert Tab characters (the cursor moves to the first Labels field), nor any way to force a new line except with a paragraph break.

Re "Comment by marco.segato, Aug 06, 2007 @petdance: I personally use an heading markup with a blank inside. "

I don't see how this works - for me it just displays the heading markup.

Comment by tmbdev, Oct 06, 2007

How can I rename a wiki page?

Comment by jrobbins, Oct 07, 2007

tmbdev: you can use the svn command-line to do it. There is not yet any way to do it via the web UI, and there is no automated update of all other pages that link to the page you are moving.

Comment by broofa, Oct 11, 2007

One more vote for TableOfContents? support.

Also, the ability to link to sections (headings) within a document would be very useful.

Comment by victorgmartins, Oct 11, 2007

Can I change the background color of a table´s cell ?

Comment by jrobbins, Oct 11, 2007

broofa: adding a comment here does not count as a vote on anything. The only way to vote for something to be changed is to star an issue in the support issue tracker.

victorgmartins: there is no way to do that yet.

Comment by schultzter, Oct 12, 2007

Is there a list anywhere of the #tags supported? Besides #summary and #labels.

Comment by broofa, Oct 14, 2007

Is there a way to link to files in the SVN repository? E.g. [svn:/path/to/file my source file]

Comment by kei060, Oct 14, 2007
Comment by nasa42, Oct 15, 2007

How can I write a comment in my wikis, something like

 /* this is a wiki comment, in my wiki code */
 // or this is a comment?
 # or this is a comment?
 <!-- not even this works. -->
Comment by EinarGango, Oct 16, 2007

When I use sentence like: /Configuration /Template /Languages

I get no newline...

Comment by EinarGango, Oct 16, 2007

oh! Not in the comments either...

Comment by joachim.lous, Oct 17, 2007

I second the request for non-highlighting literal blocks. How about [[[ for syntax ?

Comment by jean.jordaan, Oct 19, 2007

Please could we have restructured text support for wiki pages? http://docutils.sourceforge.net/rst.html

Comment by yann.regisgianas, Oct 19, 2007

My project defines a new programming language. I would like to quote program written in this language. Yet, your syntax highlighting does not know how to format it (which is not surprising of course).

Is that possible to add, in a future version, a simple customizable mode for syntax highlighting to define my own keywords ?

Comment by berlin.brown, Oct 21, 2007

Does the wiki support named anchor tags. Eg, I can scroll down to that particular section. I am assuming no, but would nice to have.

In html:

href="/blah.html#dog"?That dog sectiona?

name=dog?

Comment by berlin.brown, Oct 21, 2007

Oops, it looks like the wiki messed up my HTML formatting

Something like this.

[a href="/blah.html#dog"]That dog section[/a]

[name="dog"]
Comment by coughlinj, Oct 23, 2007

@berlin.brown: Yes, see above under "Links to External pages" (second example).

Comment by berlin.brown, Oct 24, 2007

"You can also provide some descriptive text. For example, the followinglink points to the Google home page."?

I dont see that example; I was thinking more like this.

http://www.google.com#some_page_farther_down_on_google_page

Comment by ansaralthu, Oct 27, 2007

its very nice ya

Comment by rhamph, Oct 30, 2007

You can create an absolute URL with an anchor, but not a relative URL. More importantly, you can't created a named link to use as the target.

Comment by berlin.brown, Oct 31, 2007

More importantly, you can't created a named link to use as the target

Would be a nice feature?

Comment by gwt.team.sumit, Nov 06, 2007

Are unicode characters supported? What if I wanted to do something like &#33865; ?

Comment by mschaff, Nov 08, 2007

Why can't we use the [embed?] tag to include a JavaScript? on project pages?

Comment by eduard.benes, Nov 08, 2007

Just another VOTE begging for Table Of Contents. Pleeeeeeease ;-)

Comment by david.c.fu, Nov 10, 2007

we need a new line synx. something like <br> or \n

Comment by meshee.knight, Nov 14, 2007

1 vote for Table of Contents

Comment by jrobbins, Nov 14, 2007

meshee.knight and everyone: votes in comments here do not count. The only way to vote for issues that matter to you is to mark them with a star in the issue list or the issue detail pages. In this case, there is already  issue 116  that you can star.

Comment by cumeo89, Nov 15, 2007

table of contents, please!

Comment by gabriel.kent, Nov 17, 2007

Insert HTML ?

....being able to insert a live mindmeister map would be a major +

Comment by michaell...@hotmail.de, Nov 17, 2007

Yes. We need a code to break lines easy.

maybe like this.

(i cant make "=" because the br is big then, i write "equality sign" for "=")

"equality sign"br"equality sign"

Comment by michaell...@hotmail.de, Nov 17, 2007

There is a problem with this "Uploaded-information"..

I uploaded my project .. i dont know 20 min ago and theres written "Updated Yesterday (37 hours ago) "

Comment by prudhomm, Nov 19, 2007

What about latex like in wikipedia ? that would be useful when document requires typing mathematics !

Comment by tifauv, Nov 21, 2007

Something that would be interresting is a way to link from wiki-enabled texts to issues, source revisions and source files.

It may be interesting from a general wiki page to be able to link to a particular source revision, for example to link source tags to releases.

In issue description and comments, a link to a file:revision or a revision would allow to easily browse the file where the error lays and in where revision it is fixed.

Comment by timcharper, Nov 26, 2007

If you need to escape characters, use the verbatim code block:

ie:

To access this variable, use var["hi"]

Comment by franklin.vp, Nov 27, 2007

Are you sure this works

http://franklin.vp.googlepages.com

Comment by peter.masiar, Nov 29, 2007

Excellent. Just one nitpick: TOC, table of contents, generated from headers, is the most important feature right now. Without it, it is hard to skim over long page. Can you please add it? Pretty please? Or is there better forum to beg for a feature?

Comment by jacek.kolezynski, Dec 02, 2007

What about adding support for polling? I would like to put a short polling to let people vote if they like or dislike my program.

Comment by djreimer, Dec 03, 2007

And add the umpteenth vote for ToC ("table of contents, generated from headers", as peter.masiar wrote on Nov 29) feature. Please. Please please please please please. Pleeeeeeaaaaase. Plz.

Merci.

Comment by berlin.brown, Dec 12, 2007

Are you guys going to make the 2007 milestone. Kind of cutting it close? There are a lot of features that I would like to use.

Comment by tekrei, Dec 14, 2007

Hello, I want to paste an HTML block and this block must be treated not as wiki, as HTML. I couldn't succeded. Can anyone tell me if wiki markup support something like <nowiki> ? thanks.

Comment by stefan.petrea, Dec 14, 2007

I need to make a TOC. How do I do this ? Thanks

Comment by svofski, Dec 17, 2007

TOC + 1

Comment by maciej.gajewski0, Dec 19, 2007

TOC + 1

Comment by kikikata, Dec 26, 2007

Wait.. literal `` characters, I mean. Or do I? See what I mean? Could you add it to the list?

Comment by JPCalifano, Jan 08, 2008

Is there some kink of escape character? Or some way to mark a verbatim -non code- blok?

I'm trying to write the name of one of the folders in my project ( AS3_Class_Exporter_Front?? ) but haven't found a way around the autolinking feature.

Even though I've placed an exclamation mark to prevent autolinking, it keeps adding the link. I think it's a combination of the second char being upper case after an upper case first char, and the underscores.

I could just strip out the underscores or use a small 's' as the second char, but I'm intendig to document the actual name of the folder, so that wouldn't make much sense...

I think this is a bug. Should I open an issue?

Comment by kherge, Jan 09, 2008

Anybody know what I'm getting bolding in the list items? I'm using a single asterisk at the beginning of each line with a single white space indentation.

Problem page: http://code.google.com/p/aperture-cms/wiki/Features

Comment by ajuanpi, Jan 12, 2008

What about math? My code <math>F=ma</math> is not working... How can I enter math formulas?

Comment by szczepiq, Jan 14, 2008

I want line breaks in tables!!!!

Comment by michaelbibby, Jan 15, 2008

I really need TableOfContents? feature.

Comment by malevolyn, Jan 17, 2008

Any way to use a single asterisk without creating bold text for the rest of the line?

Comment by konstantin.s.serebryany, Jan 19, 2008

Is there a way to embed a graph written in 'dot' (www.graphviz.org)?

Comment by stefan.petrea, Jan 21, 2008

We want TOC !

Comment by ionel.mc, Jan 24, 2008

could we have colored inline code? eg. `bla bla`

Comment by larosel, Jan 28, 2008

1 vote for Table of Contents

Comment by robertsdavidddr, Jan 29, 2008

The system seems OK, but how about a hard return code? The current way leaves a blank line between the lines you want to put the hard return between.

Thanks.

Comment by autodesker, Feb 03, 2008

怎样在Project Home 里插入youtude的FLV文件呢?? 谢谢o(≧ω≦)o

Comment by jrobbins, Feb 03, 2008

autodesker: Right now there is no way to embed a video on your project home page. All that you can do now is hyperlink to youtube. For example, just type http://www.youtube.com/watch?v=jtK6qITij5k and it will be a link.

Comment by autodesker, Feb 03, 2008

jrobbins:enen thanks

Comment by m...@rco.li, Feb 10, 2008

How to change in the Project Metadata the licenses to Multiple Licenses like on http://code.google.com/p/google-summer-of-code/ ?

Comment by jrobbins, Feb 10, 2008

m@roc.li: that value is not available on regular open source projects, you must choose one license. We only use it on special projects that we run.

Comment by arauzo, Feb 11, 2008

Why is it not using MediaWiki? (Wikipedia.org) standard wiki syntax?

Comment by billfromhk, Feb 16, 2008

The link should be rendered as text, but it showed up as an image instead

And linking a jpg file didn't work (without the square bracket), see http://code.google.com/p/tvsearch/issues/detail?id=1

Comment by jdcohenesq, Feb 17, 2008

The section headings create anchors; so you can link to them. For instance, if you type this:

[WikiSyntax#Internal_wiki_links Internal wiki links]
You get this:
Internal wiki links

Comment by jdcohenesq, Feb 17, 2008

And of course, you can use the anchors to build a TOC by hand.

Comment by lmayne, Feb 18, 2008

My lists seem fine in preview mode, but get all messed up on saving. e.g.

  • This is a long line that just keeps going and going, until it wraps onto a new line because it's so long and extremely dull and boring

The above displays fine in preview, but after saving the bullet is displayed on the last line of the text.

Numbering isn't working either. e.g.

  1. Numbered item 1
  2. Numbered item 2

Again, looks fine in preview, but after saving all the numbered items are 1:

1 Numbered item 1 1 Numbered item 1

Comment by Praitheesh, Feb 18, 2008

Why not include a way to like to SVN change sets in pages, and issues. That would be great.

Is it already there? I couldn't find...!

Comment by xufengbing, Feb 25, 2008

hi,jdcohenesq,

I can create a internal html link in a wiki page using Internal wiki links .

BUT can not do it in the project home page.
MY question: HOW CAN I BUILD A TOC in the project home page.

Comment by xufengbing, Feb 25, 2008

for example, how to build a TOC in your the following page?

http://code.google.com/p/support/

Comment by m...@geoinova.com, Feb 28, 2008

Something's wrong with wiki formatting since recently :-) Lists and paragraphs are broken, although they did work fine just month (or so) ago.

Comment by jeremy.cothran, Mar 04, 2008

Another vote for table of contents with links to section headers would be great.

Comment by brian.olson, Mar 04, 2008

How to do images:

svn co https://your project.googlecode.com/svn/wiki projwiki --username your.name

copy the image into that checkout and svn add it. Either commit now and edit the wiki from the web interface (it's good to preview this way) or edit the .wiki file and then commit.

Edit the wiki page to link to http://your project.googlecode.com/svn/wiki/beautiful_evidence.png

Comment by c.gilles...@ncl.ac.uk, Mar 05, 2008

Can I add attachments to my wiki page, or do I need to explicitly add them to the downloads section?

Comment by pluskid, Mar 08, 2008

Is there any to turn off the automatically python syntax highlighting for codes? There are many programming language that is neither Python, nor python-like. No highlighting is better than a bad highlighting. At least provide an option to turn on/off.

Comment by luigi.cl...@yahoo.co.uk, Mar 11, 2008

Stupid question. Why not a WYSIWYG editor (optional)? Do we really have to suffer like this? ;-)

Comment by luis.yucra, Mar 16, 2008

hello, how i can center images for example ?

Comment by nat.pryce, Mar 16, 2008

I'd like a way to generate content about the project. E.g. a list of links to pages that have a given label, to issues in the tracker, to files in SVN, etc.

Comment by linux.fabricio, Mar 18, 2008

TOC TOC TOC \o\

Comment by thewoolleyman, Mar 20, 2008

If you want to change the name of a page (pagename page name for those grepping comments), just check out the wiki in subversion, and do a subversion move of the page file to a different name. Wiki pages are stored in /wiki in the root of the project repository.

Comment by Yeef.CN, Mar 22, 2008

great

Comment by tnagy1024, Mar 24, 2008

colors would be very useful (text color)

Comment by jeremy.cothran, Mar 27, 2008

TOC ..., TOC ? TOC ! TOC .

Comment by Zoom.Quiet, Mar 30, 2008

[[Include()]] pls !!

Comment by cesarsouza, Mar 30, 2008

And what about image resizing or scalling?

Comment by grozavpava, Apr 01, 2008

How can I specify the locale of wiki page?

Comment by mnijph, Apr 02, 2008

Okay, if I start a numbered list with sub-bullets, the wiki doesn't understand I'm continuing my numbered list later. Example.

  1. First item
  • Bullet one
  • Bullet two
  1. This should be 2., not 1.
Comment by rrizun, Apr 03, 2008

looks like you can

  • wiki link to issues using markup like "issue 123"
  • wiki link to svn change sets using markup like "r123"

Comment by shaun.patrick.wallace, Apr 04, 2008
test
Comment by shaun.patrick.wallace, Apr 04, 2008
  • est(1)
  • est(2)
Comment by shaun.patrick.wallace, Apr 04, 2008
  • test(2)
  • test(1)
Comment by shaun.patrick.wallace, Apr 04, 2008

TestMode

Comment by leif902, Apr 05, 2008

It would be nice if we could include some basic HTML and Javascript so that I could have a feedburner feed display on my projects home page.

Comment by floresg, Apr 05, 2008

How about an example on preventing autolinking? It says use an exclamation mark... how so?

Comment by jorge.bigarte, Apr 08, 2008

How to, if possible, embed flash? (youtube video) Thx.

Comment by ljz_4427...@126.com, Apr 09, 2008

test.............

Comment by drewm1980, Apr 11, 2008

Is there a way to make the Wiki tab automatically open the top page of my wiki, instead of just a flat list of all the pages?

Comment by sebast...@alombra.de, Apr 15, 2008
Your Javascript highlighting breaks when E4X syntax is used, take a look here: http://code.google.com/p/dinejs/wiki/SampleXingProfile
Comment by svollbehr, Apr 19, 2008

Could you add support for having Google Talk chatback badge to the Wiki pages?

Ability to insert (X)HTML snippets would do it too..

Comment by leolaoshi, Apr 27, 2008

hh

Comment by strategictech, Apr 27, 2008

Add one more vote to the TOC tally

Comment by cp.ambrosio, Apr 29, 2008
def fib(n):
  if n == 0 or n == 1:
    return n
  else:
    # This recursion is not good for large numbers.
    return fib(n-1) + fib(n-2)
Comment by rodolfo.borges, May 04, 2008

People, this is not the place to complain about bugs, or ask for features.

The appropriate site is: http://code.google.com/p/support/issues

Comment by nathanbrit, May 06, 2008

Joining with cesarsouza here - resizing please!

Comment by andyrealestate, May 08, 2008

Hello Guys......How can I get PostTube? to show on One post but not all posts...I placed the function in SINGLE.PHP (to display the player and the playlist separately:

  • <?php echo get_theVideo(400, 300); ?>
  • <?php echo get_thePlaylist(250, 200, 80); ?>

Any can help me to get this function to point on only specific post only but not ON all posts...

Comment by ixombat, May 15, 2008

WikiSyntax is identified and linked automatically

Wikipage is not identified, so if you have a page named Wikipage? you need to link it explicitly.

If the WikiSyntax page is actually about reindeers, you can provide a description, so that people know you're actually linking to a page on reindeer flotillas.

If you want to mention WikiSyntax without it being autolinked, use an exclamation mark to prevent linking.

Comment by hwaara, May 20, 2008

It would be nice if there was a syntax which worked in SVN commit messages, which would make it possible to link to a existing user.

So for example when I give credit for a patch, I'd do "Thanks to [user:MrFoobar?] for the patch!" and it would be linked to his user page here.

Comment by ixombat, May 23, 2008
Comment by habamax, May 23, 2008

there is bug with tables and bolding:

||*bold*||*bold*||
|| *bold*|| *bold*||

the result:

boldbold
bold bold

Comment by jdandrea, May 24, 2008

OK, ixombat, how did you get that heading to have the (better looking) colored background? :)

Comment by SeekAWayOut, May 25, 2008

how use color text

Comment by habamax, May 29, 2008

yes, my guess. use h3 ===hello=== to have that nice looking header:

hello

Comment by kayleben, Jun 01, 2008

I wanna textile support :-(

Comment by veryin, Jun 03, 2008

test

Comment by veryin, Jun 03, 2008

INTLR Test Link

Comment by bspa10, Jun 06, 2008

tabela
chururuu

Comment by andrew.p.schaeffer, Jun 06, 2008

what about TOC?

Comment by stefan.petrea, Jun 08, 2008

can you please use mimetex so we can all display math formulas ?

Comment by mancai.eltiempo, Jun 09, 2008

+1 for TableOfContents?

Comment by zlvbvbzl, Jun 09, 2008
Comment by zlvbvbzl, Jun 09, 2008

A B C

Comment by zlvbvbzl, Jun 09, 2008

The following is: A list Of bulleted items # This is a numbered sublist # Which is done by indenting further And back to the main bulleted list This is also a list With a single leading space Notice that it is rendered # At the same levels # As the above lists. Despite the different indentation levels.

Comment by catalinm...@yahoo.com, Jun 11, 2008

A preview and modify comment would be nice. testing 1 2 3

Comment by sugarXu, Jun 12, 2008

H H EEE L L OOO
H H E L L O O
HHH EEE L L O O
H H E L L O O
H H EEE LLL LLL OOO

Comment by GL.Deng, Jun 16, 2008

Comment by Dmitriy.Polishchuk, Jun 18, 2008

Dmitriy Polishchuk

Comment by Dmitriy.Polishchuk, Jun 18, 2008

Dmitriy Polishchuk

Comment by sugarXu, Jun 21, 2008

How to start a new line? dose BR? work? BR? [BR?] go

Comment by sugarXu, Jun 21, 2008

How to start a new line?

A blank line dose work. like this.

Comment by martinahansen, Jun 25, 2008

The syntax hilighting is clearly non-sense in those code snippets above. Where is the function to disable syntax highlighting?

Comment by nshen121, Jun 27, 2008
function...
Comment by mbc2000, Jun 27, 2008

Is it possible to put left and right brackets on a page without turning the contents of the brackets into a link?

Comment by thebugslayer, Jul 01, 2008

+1 on TOC !!!

I also would like to be able to insert direct HTML to render page. Is this possible now?

Comment by crocell.01, Jul 02, 2008

Comment by crocell.01, Jul 02, 2008

h3 ===hello===

Comment by svodev, Jul 04, 2008

|bold

Comment by c95029, Jul 07, 2008
Comment by simoncpu, Jul 07, 2008

Is there a way to use asterisk without making the rest of the line bold? Also, is there a Google wiki equivalent for <nowiki> and <pre>? I can't seem to turn off syntax highlighting in verbatim code block.

Thanks!

Comment by simoncpu, Jul 07, 2008

+1 for TOC

Comment by simoncpu, Jul 09, 2008

I can't seem to embed images that don't have the usual filename extensions (i.e., http://example.org/myimage.php). :(

Comment by simoncpu, Jul 09, 2008

This is the wrong place to report bugs.

The correct place is: http://code.google.com/p/support/issues/list

Comment by TazManiack, Jul 09, 2008

It would be very nice to have the possibility of linking to anchors with dots and minus signs.

Is there any chance to get it?

Thanks!

Comment by designerstlye, Jul 12, 2008

can we decorate tables and background with minimal mem.........

Comment by vittorio.giovara, Jul 14, 2008
Comment by dakrauth, Jul 14, 2008

Trying to escape words that look like Wiki links: LinkedIn

Comment by tiange, Jul 15, 2008

how to display a star?

Comment by johnzabroski, Jul 25, 2008

Can you guys add a Wiki Markup tag for embedding Youtube videos?

Comment by bgmeiner, Jul 29, 2008

is there a way to specify the size of images?

Comment by theprestig3, Aug 02, 2008

yes a way to specify the size of an image would be great

Comment by fractioncalc, Aug 02, 2008

Using the instructions here, I can't seem to link to other images. Can someone tell me why???

Comment by mtvwang, Aug 06, 2008

Comment by mtvwang, Aug 06, 2008

Comment by anarchic.teapot, Aug 09, 2008

it would be nice to have a mean to select language of choice for syntax highlighting.. (Java,C++,HTML,PHP..)

also, text formating would be cool too.. to allow coloring text (blue text, red text ..)

tnx

Comment by autodesker, Aug 12, 2008

h3test/h3 <h3>test</h3> h3===test ===

Comment by yinwengui, Aug 12, 2008

How does the "<script>..." using? http://www.jayboy.cn

Comment by jambajambajamba, Aug 18, 2008
int main()
{
}
Comment by ozgencozben, Aug 19, 2008

//first program... #include<stdio.h> void main() { printf("goodbye world..."); return 0; }

Comment by maciej.gajewski0, Aug 20, 2008

embedding youtube videos +1

Comment by wingpengfei, Aug 21, 2008

<h3>test</h3> h3===test ===

Comment by wingpengfei, Aug 21, 2008

seems like only in comment area should use <h3> cant use in normal wikipage

Comment by xiaohu417, Aug 22, 2008

how to input a star()

Comment by omerdaf, Aug 23, 2008
Comment by edgurgel, Aug 23, 2008

How can i resize a image?

Comment by Rhijnauwen, Aug 27, 2008

Why can't I escape in headers? Adding a function with default values in my reference documentation breaks the header.

Why = That?

Why \= That?

Is there a way to do it?

Comment by Rhijnauwen, Aug 28, 2008

:) another bug.

Why are id's being set on headers? Some of the id's match the ones in google code's style sheet and destroy the wiki formatting.

Comment by brian.olson, Sep 02, 2008

how to display a star: backtick-asterisk-backtick = * hm, let's see if I can show that in a verbatim code block:

`*`
Comment by killvin.liu, Sep 10, 2008

test

Comment by iamduyu, Sep 13, 2008

Comment by xcoll...@yahoo.com.tr, Sep 14, 2008

//first program... #include<stdio.h> void main() { printf("goodbye world..."); return 0; }

Comment by cintra, Sep 16, 2008

*

Comment by areugos, Sep 17, 2008
SELECT *
FROM Google
WHERE searchDate = '20080918'
Comment by areugos, Sep 17, 2008

`SELECT FROM Google WHERE searchDate = '20080918'`

Comment by areugos, Sep 17, 2008

SELECT
FROM Google
WHERE searchDate = '20080918'

Comment by areugos, Sep 17, 2008

SELECT * FROM Google WHERE searchDate = '20080918'

Comment by areugos, Sep 17, 2008

Comment by areugos, Sep 17, 2008

Comment by lelemm, Sep 18, 2008

j*ust f*irst l*etter

Comment by lelemm, Sep 18, 2008

j_ust f_irst

Comment by joselync19, Sep 19, 2008
def fib(n):
  if n == 0 or n == 1:
    return n
  else:
    # This recursion is not good for large numbers.
    return fib(n-1) + fib(n-2)
Comment by gsky89, Sep 22, 2008
Comment by st...@mygrid.org.uk, Sep 30, 2008

How do I add (http) redirects? I want to refer to our external download page from the Download tab, but there seems to be no way to do that.

Comment by km48...@yahoo.com, Sep 30, 2008

msnliste.net

Comment by dai.odahara, Oct 03, 2008

Comment by yann.leblevec, Oct 04, 2008

embedding youtube videos ++

Comment by bernd.roessl, Oct 04, 2008

if you need to escape a wiki-word just prefix the word with an exclamation mark (!)

escaped WikiWord

Comment by lispholic, Oct 05, 2008

Google home page. link test ...

Comment by John.Boyer.PhD, Oct 07, 2008

Numbered lists are broken on IE7. You can see the numbering is failing even in this page, though I make more extensive use of it here http://code.google.com/p/ubiquity-xforms/wiki/CodingWithEclipse The numbering works fine on FF3 and Safari.

Comment by detrox, Oct 08, 2008
Comment by enjoyfan, Oct 11, 2008

test

Comment by enjoyfan, Oct 11, 2008
def fib(n):
  if n == 0 or n == 1:
    return n
  else:
    # This recursion is not good for large numbers.
    return fib(n-1) + fib(n-2)
Comment by doqkhanh, Oct 13, 2008

embedding youtube videos ++

Comment by sean.stuckless, Oct 15, 2008

Table of Contents please.... and Style support....

<style> ... </style>

then <div class="">text</div>

That would allow for more layout options....

Comment by wilsontp, Oct 17, 2008

I'd like to see signatures. EG: ~~~~ would be automatically be replaced with my username, hyperlinked to my profile page (and maybe with some formatting to set it apart from the surrounding text).

Comment by eustas.ru, Oct 23, 2008
 "*render*_!SomeThing_"

Why do i get underscore? "renderSomeThing_"

Comment by jrobbins, Oct 23, 2008

eustas.ru: That looks like a defect. I am tracking it in issue 1744. You may want to star that issue.

Comment by r...@ard.jp, Oct 29, 2008

<wiki:gadget url="http://example.com/gadget.xml" height="200" border="0" />

Comment by omar-...@msn.com, Oct 31, 2008

Comment by inspiration3, Nov 02, 2008

Coloured text and table cells that span more than one column are essential in my opinion.

Comment by zanellacolmeia, Nov 05, 2008

h3===test===

Comment by derek.lasalle, Nov 06, 2008

why aren't wiki calendars supported?

Comment by kobevaliant, Nov 17 (4 days ago)

Comment by seayarxi, Today (12 hours ago)

why i can't add new project


Sign in to add a comment