yacy_search_server/htroot/WikiHelp.html
mikeworks eac3b696ab Fixed typos in WikiHelp.html
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6599 6c8d7289-2bf4-0310-a012-ef5d649a1542
2010-01-20 07:34:43 +00:00

159 lines
4.0 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>YaCy '#[clientname]#': Wiki Help</title>
#%env/templates/metas.template%#
</head>
<body>
<div align="center">
<h2>Wiki-Code</h2>
<table width="95%" border="1" cellspacing="0" cellpadding="4">
<caption>
This table contains a short description of the tags that can be used in the Wiki and several other servlets
of YaCy. For a more detailed description visit the
<a href="http://www.yacy-websuche.de/wiki/index.php/Hauptseite">YaCy Wiki</a>.
</caption>
<tr valign="top">
<th>
Code
</th>
<th>
Description
</th>
</tr>
<tr valign="top">
<td class="tt">
==headline1==<br />===headline2===<br />====headline3====
</td>
<td>
These tags create headlines. If a page has three or more headlines, a directory will be created automatically.
</td>
</tr>
<tr valign="top">
<td class="tt">
''text''<br />'''text'''<br />'''''text'''''
</td>
<td>
These tags create stressed texts. The first pair emphasizes the text (most browsers will display it in italics),
the second one emphazises it more strongly (i.e. bold) and the last tags create a combination of both.
</td>
</tr>
<tr valign="top">
<td class="tt">
:text<br>::text
</td>
<td>
Lines will be indented. This tag is supposed to mark citations, but may as well be used for styling purposes.
</td>
</tr>
<tr valign="top">
<td class="tt">
#point1<br />##point1.1<br />##point1.2<br />#point2
</td>
<td>
These tags create a numbered list.
</td>
</tr>
<tr valign="top">
<td class="tt">
*something<br />**another thing<br />***and yet another<br />*something else
</td>
<td>
These tags create an unnumbered list.
</td>
</tr>
<tr valign="top">
<td class="tt">
<nobr class="tt">;word 1:definition 1</nobr><br />
<nobr class="tt">;word 2:definition 2</nobr><br />
<nobr class="tt">;;word 3:definition 3</nobr><br />
<nobr class="tt">;word 4:definition 4</nobr>
</td>
<td>
These tags create a definition list.
</td>
</tr>
<tr valign="top">
<td class="tt">
----
</td>
<td>
This tag creates a horizontal line.
</td>
</tr>
<tr valign="top">
<td class="tt">
<nobr class="tt">[[pagename]]</nobr><br />
<nobr class="tt">[[pagename|description]]</nobr>
</td>
<td>
This tag creates links to other pages of the wiki.
</td>
</tr>
<tr valign="top">
<td class="tt">
[url]<br />[url description]
</td>
<td>
This tag creates links to external websites.
</td>
</tr>
<tr valign="top">
<td class="tt">
<nobr class="tt">[[Image:url]]</nobr><br />
<nobr class="tt">[[Image:url|alt text]]</nobr><br />
<nobr class="tt">[[Image:url|align|alt text]]</nobr>
</td>
<td>
This tag displays an image, it can be aligned left, right or center.
</td>
</tr>
<tr valign="top">
<td class="tt">
{|<br />
|-<br />
<nobr class="tt">||row 1, col 1||row 1, col 2</nobr><br />
|-<br />
<nobr class="tt">||row 2, col 1||row 2, col 2</nobr><br />
|}
</td>
<td>
These tags create a table, whereas the first marks the beginning of the table, the second starts
a new line, the third and fourth each create a new cell in the line. The last displayed tag
closes the table.
</td>
</tr>
<tr valign="top">
<td class="tt">
&lt;pre&gt; text &lt;/pre&gt;
</td>
<td>
A text between these tags will keep all the spaces and linebreaks in it. Great for ASCII-art and program code.
</td>
</tr>
<tr valign="top">
<td class="tt">
text<br />&nbsp;text<br />text
</td>
<td>
If a line starts with a space, it will be displayed in a non-proportional font.
</td>
</tr>
</table>
</div>
<br>
</body>
</html>