web commit from 66.118.98.137:
[ikiwiki.git] / doc / features.mdwn
1 Currently implemented:
2
3 * [[Subversion]]
4
5   Rather than implement its own system for storing page histories etc, ikiwiki      simply uses subversion. (Supporting other revision control systems is also possible, ikiwiki only needs $FOO add, $FOO commit, and $FOO log).
6
7   Instead of editing pages in a stupid web form, you can use vim and commit changes via svn. Or work disconnected using svk and push your changes out when you come online. Deal with edit conflicts with others in a sane environment. Take advantage of subversion's smart merges.
8
9  ikiwiki can be run from a [[post-commit]] hook to update your wiki immediatly whenever you commit.
10
11 * [[MarkDown]]
12
13   ikiwiki supports pages using [[MarkDown]] as their markup language. Any
14   page with a filename ending in ".mdwn" is converted from markdown to html
15   by ikiwiki. Markdown understands text formatted as it would be in an email,
16   and is quite smart about converting it to html. The only additional markup
17   provided by ikiwiki aside from regular markdown is the [[WikiLink]].
18
19 * support for other file types
20
21   ikiwiki also supports files of any other type, including raw html, text,
22   images, etc. These are not converted to wiki pages, they are just copied
23   unchanged by ikiwiki as it builds your wiki. So you can check in an image,
24   program, or other special file and link to it from your wiki pages.
25
26 * [[SubPage]]s
27
28   Arbitrarily deep hierarchies of pages with fairly simple and useful [[SubPage/LinkingRUles]]
29
30 * Fast compiler
31
32   ikiwiki is fast and smart about updating a wiki, it only builds pages that have changed (and tracks things like creation of new pages and links that can indirectly cause a page to need a rebuild)
33
34 * [[BackLinks]]
35
36   Automatically included on pages. Rather faster than eg [[MoinMoin]] and always there to help with navigation.
37
38 * [[RecentChanges]], editng pages in a web browser
39
40   Nearly the definition of a wiki, although perhaps ikiwiki challenges how much of that web gunk a wiki really needs. These features are optional and can be enabled by enabling [[CGI]].
41
42 ----
43
44 It also has lots of [[TODO]] items and [[Bugs]]. This wiki is not ready for production!