Metadata-Version: 2.1
Name: rimu
Version: 0.0.1
Summary: Rimu is a readable-text to HTML markup language inspired by AsciiDoc and Markdown.
Home-page: https://github.com/srackham/rimu-py
Author: Stuart Rackham
Author-email: srackham@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://srackham.github.io/rimu/
Project-URL: Source, https://github.com/srackham/rimu-py
Keywords: rimu markdown asciidoc
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# **PRE-RELEASE SCAFFOLDING**
## **THIS PACKAGE IS NOT YET IMPLEMENTED**
## **Tentative release date: March 2020**

A port of the [Rimu Markup language](https://srackham.github.io/rimu/) written in the Python
language.


## Features
Functionally identical to the [JavaScript
implementation](https://github.com/srackham/rimu) version 11.1 with the
following exceptions:

- Does not support deprecated _Expression macro values_.
- Does not support deprecated _Imported Layouts_.


## Usage
Example usage:

``` python
import rimu;

def main():
  print(rimu.render('Hello *Rimu*!'))
```

See also Rimu
[API documentation](https://srackham.github.io/rimu/reference.html#api).


## CLI command
The [Rimu CLI command](https://srackham.github.io/rimu/reference.html#rimuc-command) is `rimupy`.

TODO: Run it using ...


## Building
1. Clone source repo from Github:

        git clone git@github.com:srackham/rimu-py.git

2. Build and test:

        cd rimu-py/
        TODO


## Learn more
Read the [documentation](https://srackham.github.io/rimu/reference.html) and experiment
with Rimu in the [Rimu
Playground](http://srackham.github.io/rimu/rimuplayground.html).


## Implementation
- The largely one-to-one correspondence between the canonical
  [TypeScript code](https://github.com/srackham/rimu) and the Python code
  eased porting and debugging.  This will also make it easier to
  cross-port new features and bug-fixes.

- All Rimu implementations share the same JSON driven test suites
  comprising over 300 compatibility checks.

