» Project Kenai Documentation and Training » How Do I ...
If you open a project's home page and click » Wiki on the right, you see the wiki's home page and can read it.
If you have permission as a project member, you can edit pages and add new ones. To edit pages, see all the pages, upload images, or create a new page, open a wiki page and click one of the links on the left in the blue navigation area under Wiki Controls.




You can't directly rename a wiki page, but you can copy the current page's contents to a new page, and then delete the old one. Here's how you do it.



To upload an image to be used in a wiki page:




If you are a project owner or administrator, you can add or delete a project wiki, change its display name, description, and default home page, and set who has access to it for reading, editing, and creating and deleting pages. See Managing Projects: Wiki.
You can format your text using wiki markup, which uses normal characters like
asterisks, single quotes, and equals signs that have a special function in the
wiki, sometimes depending on their position. For example, to format a word in
italic, you surround it with two single quotes like
''this''.
| Note: | This site uses an implementation of MediaWiki, the wiki software used by Wikipedia. Not all features of MediaWiki are supported, which is why we supply our own help pages. There's a lot of information on how to use MediaWiki in the Wikipedia Help pages. For example, there's wiki text formatting help at http://en.wikipedia.org/wiki/Help:Wikitext. Since WikiPedia has its own implementation of MediaWiki, not everything they suggest will work here. If you see something you really like and want to see here, let us know on the Features help forum! |
In addition to using the wiki markup tags described below, you can use most HTML tags. If you do use HTML, you might want to Preview your pages to make sure the tags work. One HTML tag that does not work is the <body> tag. Anything enclosed in this tag will not display.
Note: In addition to the examples in the wiki markup table below, there are wiki markup samples at MediaWiki Sampler.
Apply Anywhere | ||||||||||
| Description | You type | You get | ||||||||
| Italic text | ''italic'' | italic | ||||||||
| Bold text | '''bold''' | bold | ||||||||
| Bold and italic | '''''bold & italic''''' | bold & italic | ||||||||
| Hyperlink to wiki page | [[Home] | Home | ||||||||
| Hyperlink to wiki page with different link text—use | to separate text | [[Home|Main doc page]] | Main doc page | ||||||||
| Hyperlink to external web page | [http://www.oracle.com] | http://www.oracle.com | ||||||||
| Hyperlink to external web page with different link text—space separates text | [http://www.oracle.com Oracle] | Oracle | ||||||||
| Parameterized link to this project's project page | <a href="{{project}}">this project's project page</a> | this project's project page | ||||||||
| Parameterized link to this project's forums | <a href="{{forums}}">this project's forums</a> | this project's forums | ||||||||
| Parameterized link to the list of all projects | <a href="{{projects}}">all projects</a> | all projects | ||||||||
| Parameterized link to project Help | <a href="{{project help}}">Help project</a> | Help project | ||||||||
| Parameterized link to project Help's wiki home page | <a href="{{project help page Home}}">Project Help's wiki home page</a> | Project Help's wiki home page | ||||||||
| Anchor definition. Use the id attribute with an HTML tag that takes this attribute, such as <span> or <div>. | <span id="anchor_to_link_to">optional text</span> | optional text | ||||||||
| Hyperlink to anchor | [[#anchor_to_link_to|go to anchor]] | go to anchor | ||||||||
Inline image. Use | to separate options, which include:
| [[image:aracari-sm.png]] | ![]() | ||||||||
| Inline image with thumb, and right parameters. | [[image:aracari.png|thumb|right]] | ![]() | ||||||||
| Escape wiki markup | <nowiki>no ''markup''</nowiki> | no ''markup'' | ||||||||
| Table of Contents: Use two underscores before TOC and two after. The table of contents is inserted at the location of this identifier and lists all headings defined with wiki heading tags (=, ==, ===, and so on). If you want to exclude a heading, such as the main heading, use HTML tags instead of wiki tags. For example, <h1>Main Heading</h1>. | __TOC__ |
Contents
| ||||||||
Apply Only at Beginning of Line | ||||||||||
| Description | You type | You get | ||||||||
| Indented text | :Indented text | Indented text | ||||||||
| Headings of various levels | =level 1= | Level 1 | ||||||||
| ==level 2== | Level 2 | |||||||||
| ===level 3=== | Level 3 | |||||||||
| ====level 4==== | Level 4 | |||||||||
| Horizontal rule | ---- | |||||||||
| Bulleted list | * first item * second item ** first sub-item ** second sub-item *** first sub-sub-item *** second sub-sub-item |
| ||||||||
| Numbered list | # Step 1 # Step 2<br />more on two<br />yet more on two # Step 3 ## Sub-step 1 ## Sub-step 2 |
| ||||||||
| Mixture of bulleted and numbered lists | # Step 1 # Step 2 #* Sub-item #* Sub-item * Bullet 1 * Bullet 2 *# Sub-step 1 *# Sub-step 2 |
| ||||||||
| Definition list | ;Term :Definition 1 :Definition 2 |
| ||||||||
| Preformatted text For information on code formattting using the <pre name="language-name"> syntax to format php, Java, CSS, and Ruby code samples, see Source Code Formatting. | preformatted text re- quires a space at the beginning of each line | preformatted text re- quires a space at the beginning of each line | ||||||||
| A table with borders, a header row, a simple row, and a row with the valign attribute defined. | {|- border="1" ! Heading 1 ! Heading 2 |- | cell 1 | cell 2 |- valign="top" | single line | two lines<br />of content |} |
|