tinycm view content/wiki/en/help.txt @ rev 86

Update French translation
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:13:50 2017 +0100 (2017-02-12)
parents 75c2b9d58c4e
children 6a565d525bda
line source
1 [NOWIKI]
3 <h2>Help</h2>
5 <p>
6 TinyCM lets you easily create nice web content. Clean, fast and CGI SHell
7 powered! TinyCM provides a simple Wiki syntax, a JavaScript code helper,
8 diff interface, dashboard, Hg integration and a plugin system. It can also
9 be multi-user and a great collaboration tool.
10 </p>
12 <h3>Titles</h3>
13 <pre>
14 ==== Title 1 ====
15 === Title 2 ===
16 == title 3 ==
17 </pre>
19 <h3>Text formating</h3>
20 <p>
21 This is how to make <strong>bold</strong>, <em>emphasis</em> and <u>underline</u> text:
22 </p>
23 <pre>
24 **bold** ''emphasis'' __underline__
25 </pre>
27 <h3>Page link and URL</h3>
28 <p>
29 To create a new page you have to create a new link to it. Then you can edit
30 and add content to your new page. First the link title then the path to a
31 new or existing page:
32 </p>
33 <pre>
34 [Help|en/help]
35 </pre>
36 <p>
37 You can also use a full URL. This time we separate the link name of the URL
38 with an exclamation !
39 </p>
40 <pre>
41 [SliTaz!http://www.slitaz.org/]
42 </pre>
44 <h3>Images</h3>
45 <p>
46 You can have some images in your content folder or use one from the web.
47 Just paste the URL to the PNG image or use the image name:
48 </p>
49 <pre>
50 [http://site.com/path/image.png]
51 [image.png]
52 </pre>