|
| 1 | +# HikiDoc |
| 2 | + |
| 3 | +## Introduction |
| 4 | + |
| 5 | +'HikiDoc' is a text-to-HTML conversion tool for web writers. HikiDoc |
| 6 | +allows you to write using an easy-to-read, easy-to-write plain text |
| 7 | +format, then convert it to structurally valid HTML (or XHTML). |
| 8 | + |
| 9 | +## Requirements |
| 10 | + |
| 11 | +HikiDoc requires Ruby 1.8.2 or later. |
| 12 | + |
| 13 | +## Download |
| 14 | + |
| 15 | +Get from the GitHub repository [https://github.com/hiki/hikidoc](https://github.com/hiki/hikidoc) |
| 16 | + |
| 17 | +``` |
| 18 | +(eg.) |
| 19 | +git clone https://github.com/hiki/hikidoc.git |
| 20 | +``` |
| 21 | + |
| 22 | +## Installation |
| 23 | + |
| 24 | +### Semi-manual installation |
| 25 | + |
| 26 | +Run the 'setup.rb' script like so: |
| 27 | + |
| 28 | +``` |
| 29 | +$ ruby setup.rb config |
| 30 | +$ ruby setup.rb setup |
| 31 | +# ruby setup.rb install |
| 32 | +``` |
| 33 | + |
| 34 | +### Installation via RubyGems |
| 35 | + |
| 36 | +Run the following command: |
| 37 | + |
| 38 | +``` |
| 39 | +$ gem install hikidoc |
| 40 | +``` |
| 41 | + |
| 42 | +## Syntax |
| 43 | + |
| 44 | +See [TextFormattingRules](TextFormattingRules). |
| 45 | + |
| 46 | +## Mailing list |
| 47 | + |
| 48 | +To subscribe the HikiDoc ML, please send the following mail. English |
| 49 | +posts are also welcome. |
| 50 | + |
| 51 | +``` |
| 52 | + |
| 53 | + |
| 54 | +Subject: subscribe <- any subject |
| 55 | +
|
| 56 | +Hello. <- any body |
| 57 | +``` |
| 58 | + |
| 59 | +HikiDoc ML's archive is available at [http://www.fdiary.net/ml/hikidoc/](http://www.fdiary.net/ml/hikidoc/) . |
| 60 | + |
| 61 | +## Related softwares |
| 62 | + |
| 63 | +The following softwares use the HikiDoc library or the HikiDoc format. |
| 64 | + |
| 65 | +<dl> |
| 66 | +<dt><a href="http://www.tdiary.org/">tDiary</a></dt> |
| 67 | +<dd>a Weblog/Web-diary software</dd> |
| 68 | +<dt><a href="http://hikiwiki.org/">Hiki</a></dt> |
| 69 | +<dd>a powerful and fast wiki clone</dd> |
| 70 | +<dt><a href="http://lily.sourceforge.jp/">lily</a></dt> |
| 71 | +<dd>a simple CMS</dd> |
| 72 | +<dt><a href="http://search.cpan.org/perldoc?Text::HikiDoc">Text::HikiDoc</a></dt> |
| 73 | +<dd>HikiDoc by Perl</dd> |
| 74 | +<dt><a href="http://github.com/moro/piki_doc/">PikiDoc</a></dt> |
| 75 | +<dd>a library that you can add plugin functions on HikiDoc</dd> |
| 76 | +<dt><a href="http://sourceforge.jp/projects/mail2weblog/wiki/FrontPage">mail2weblog</a></dt> |
| 77 | +<dd>a blog system via mobile phone email</dd> |
| 78 | +</dl> |
| 79 | + |
| 80 | +## License |
| 81 | + |
| 82 | +HikiDoc's license is the 'Modified BSD License'. |
| 83 | + |
| 84 | +``` |
| 85 | +Copyright (c) 2005, Kazuhiko <[email protected]> |
| 86 | +All rights reserved. |
| 87 | +
|
| 88 | +Redistribution and use in source and binary forms, with or without |
| 89 | +modification, are permitted provided that the following conditions are |
| 90 | +met: |
| 91 | +
|
| 92 | + * Redistributions of source code must retain the above copyright |
| 93 | + notice, this list of conditions and the following disclaimer. |
| 94 | + * Redistributions in binary form must reproduce the above |
| 95 | + copyright notice, this list of conditions and the following |
| 96 | + disclaimer in the documentation and/or other materials provided |
| 97 | + with the distribution. |
| 98 | + * Neither the name of the HikiDoc nor the names of its |
| 99 | + contributors may be used to endorse or promote products derived |
| 100 | + from this software without specific prior written permission. |
| 101 | +
|
| 102 | +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 103 | +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 104 | +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 105 | +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 106 | +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 107 | +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 108 | +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 109 | +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 110 | +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 111 | +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 112 | +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 113 | +``` |
| 114 | + |
0 commit comments