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

Fix plugins listing in dashbord
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 28 05:08:44 2017 +0100 (2017-02-28)
parents fd29a41905a3
children
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 [TinyCM!http://tinycm.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>
54 <h3>User link</h3>
55 <p>
56 You can refer to a user in any wiki document and some plugins such as wall:
57 </p>
58 <pre>
59 @username@
60 </pre>
62 <h3>No wiki formating</h3>
63 <p>
64 You may want to use HTML code in your pages and avoid any wiki parsing
65 function such as this help page. Just add the tag NOWIKI into [ ] at
66 any place in the page.
67 </p>