Add <target> to one more testcase (see r8206).
[docutils.git] / sandbox / rst2wiki / README.txt
blob9d1fd535942425e1f8e8682a7c85ed864ddfc6ff
1 ========
2 rst2wiki
3 ========
5 .. contents::
8 What is rst2wiki?
9 =================
11 ``rst2wiki`` is a tool that transforms reStructuredText_ into various
12 Wiki texts. To date ``rst2wiki`` supports two Wiki texts TWiki_ and 
13 Atlassian Confluence_.
16 Usage
17 =====
19 ``rst2wiki.py`` currently has one option ``--wiki`` beyond "General", 
20 "Parser", and "Standalone" options.
22 Example::
24   # TWiki text
25   $ rst2wiki.py --wiki twiki test.rst test.twiki
26   
27   # Confluence text
28   $ rst2wiki.py --wiki confluence test.rst test.confluence
30 By default ``rst2wiki.py`` will generate TWiki text.
33 Availability
34 ============
36 ``rst2wiki`` is available through the `Docutils Subversion repository`_
37 as part of the Docutils sandbox in ``sandbox/rst2wiki``.
40 Contact
41 =======
43 If you have questions, patches, etc ... feel free to contact me at: joshua.graff@ccrypt.org
46 Installation
47 ============
49 Currently, ``rst2wiki`` requires you copy the frontend tool ``rst2wiki.py``
50 and writer ``wiki.py`` into the appropriate directories under your docutils
51 install.
53 Example::
55   $ cd <rst2wiki sandbox>/tools
56   $ dirname `which rst2html.py`
57   <bin path>  
58   $ cp rst2wiki.py <bin path> 
59   $ cd <rst2wiki sandbox>/docutils/writers
60   $ cp wiki.py <path to docutils install>/writers
63 Copyright and license
64 =====================
66 Copyright (C) 2012 by Joshua Graff
68 License is BSD_ 2-Clause
71 TODO
72 ====
74 * Add some actual automated tests
76 * Expand support for a few more Wiki dialects
79 Links
80 =====
82 .. _reStructuredText: http://docutils.sourceforge.net/rst.html
84 .. _TWiki: http://twiki.org
86 .. _Confluence: http://www.atlassian.com/software/confluence/overview
88 .. _Docutils Subversion repository: http://docutils.sourceforge.net/docs/dev/repository.html
90 .. _BSD: http://www.opensource.org/licenses/BSD-2-Clause