Metadata-Version: 2.1
Name: mau
Version: 2.0.0
Summary: A lightweight markup language
Home-page: https://github.com/Project-Mau/mau
Author: Leonardo Giordani
Author-email: giordani.leonardo@gmail.com
License: mit
Project-URL: Documentation, https://mau.readthedocs.io/en/latest/
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Provides-Extra: testing
Provides-Extra: development
License-File: LICENSE.txt
License-File: AUTHORS.rst

# Mau 

Mau is a lightweight markup language heavily inspired by [AsciiDoc](https://asciidoctor.org/docs/what-is-asciidoc), [Asciidoctor](https://asciidoctor.org/) and [Markdown](https://daringfireball.net/projects/markdown/).

As I wasn't satisfied by the results I got with those tools I decided to try to write my own language and the tool to render it.

I am currently using Mau to render posts on my blog [The Digital Cat](https://www.thedigitalcatonline.com) and the online version of my book ["Clean Architectures in Python"](https://www.thedigitalcatbooks.com). I also used it to transpile the code of the book to Markua, to be able to publish the book on Leanpub using their toolchain.

## Quick start

To install Mau use `pip`

``` sh
pip install mau
```

To convert Mau sources into HTML just run

``` sh
mau -i source.mau -o destination.html -f html
```

To use Mau in your tool you can run it programmatically

``` python
from mau import Mau

mau = Mau(target_format="html")

mau.process(text)
```

Check out Mau [documentation](https://mau.readthedocs.io/en/latest/) for further information.

## Pelican plugin

There is a Pelican plugin that enables you to use Mau in your blog. Check it at https://github.com/pelican-plugins/mau-reader.

You can see the plugin in action at https://www.thedigitalcatonline.com/blog/2021/02/22/mau-a-lightweight-markup-language/ and on other pages in my blog.

## Incompatibility between Mau 2.x and Mau 1.x

Changes to they Mau syntax:

* The macro `[footnote]()` requires now a strict attributes syntax, so you need to put between quotes any text that contains commas. In Mau 1.x footnotes use the text between round brackets directly, so there was no need for quotes. The old behaviour can be still turned on setting the configuration value `v1_backward_compatibility` to `True`. The old syntax is however considered deprecated, so my advice is to change the source as soon as possible. Example `[footnote](A footnote, with a comma)` should become `[footnote]("A footnote, with a comma")`.
* Raw blocks have been removed, you should use the attribute `engine=raw` instead. See the documentation for details about engines.
* Conditional blocks have been removed, you should use the attribute `condition="if:VARIABLE:VALUE"`. See the documentation for details about conditions.
* Quote blocks now accept the attribution as secondary content, which accepts Mau syntax. The attribute `attribution` is still supported but has been deprecated.

Changes to templates:

* Block template now correctly provides `blocktype` instead of `type`.
* Admonition block template name changed from `admonition` to `block-admonition`. Attributes `class`, `icon`, and `label` are now respectively `kwargs.class`, `kwargs.icon`, and `kwargs.label`.
* Source block template name changed from `source` to `block-source`. The default CSS class in HTML is `source` instead of `code`. The content is provided by the key `content` instead of `code`.
* Quote block template name changed from `quote` to `block-quote`. The attribute `attribution` has been renamed `kwargs.attribution` and is still supported but deprecated. The attribution is now provided by `secondary_content`. The Mau syntax for quote blocks also changed accordingly. You can now specify the attribution in the secondary content and use Mau syntax to format it.
* Footnote definition template now provides the content as `content` instead of `text`.
* TOC entry template receives header objects, so `anchor` becomes `header.anchor` and `text` becomes `header.value`.

## Support

You may report bugs or missing features use the [issues page](https://github.com/Project-Mau/mau/issues).
If you want to ask for help or discuss ideas use the [discussions page](https://github.com/Project-Mau/mau/discussions)

This project has been set up using PyScaffold 3.3.1. For details and usage information on PyScaffold see https://pyscaffold.org/.


