Project

zimki

0.0
No commit activity in last 3 years
No release in over 3 years
Zimki converts file written in the zim Desktop Wiki format and converts them to textile.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.6.0
 Project Readme

Zimki is a text conversion tool which translates files written in zimki Desktop Wiki to textile.

Installation

Type in your console

gem install zimki

and you can use the gem.

Usage

Here is an example how you can use it.

require 'zimki'

zimki = Zimki.new
zimki.textile_conversion("src.txt")

A typical text file in the zimki format can be found in this repository under spec/source/src.txt. The output will be written in the console - so then copy the things you need.

Current translation status

Currently the gem can translate the following constructs. On the left you can see the zimki format and on the right of the arrow you can see the textile pendant.

General constructs

//italique// => _italique_
**bold** => *bold*
__highlight => @highlight@

Headings

==== The 10-day MBA ==== => h1. The 10-day MBA
=== The 10-day MBA === => h2. The 10-day MBA
== The 10-day MBA == => h3. The 10-day MBA

Links and Images

[[http://wikimatze.de|wikimatze]] => "wikimatze":http://wikimatze.de
{{~/Dropbox/pics/Screenshot.png}} => !http://~/Dropbox/pics/Screenshot.png!

Bullets

* first bullet
  * second bulltet
    * third bullet
      * fourth

=>

* first bullet
** second bulltet
*** third bullet
**** fourth

Contact

Feature request, bugs, questions, etc. can be send to matthias.guenther@wikimatze.de.

License

This software is licensed under the MIT license.

© 2011-2013 Matthias Guenther matthias.guenther@wikimatze.de.