Metadata-Version: 2.1
Name: lektor-markdown-admonition
Version: 0.3.1
Summary: Adds basic admonition tag support to Markdown.
Home-page: http://github.com/lektor/lektor-markdown-admonition
Author: Armin Ronacher
Author-email: armin.ronacher@active-4.com
License: BSD
Keywords: Lektor plugin markdown admonition static-site blog
Platform: UNKNOWN
Classifier: Environment :: Plugins
Classifier: Environment :: Web Environment
Classifier: Framework :: Lektor
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Description-Content-Type: text/markdown

# lektor-markdown-admonition

This plugin adds admonition tags to Markdown for Lektor.  This feature is
inspired by the extension in Python Markdown but simplified.

## Enabling the Plugin

To enable the plugin run this command:

```
$ lektor plugins add markdown-admonition
```

## Syntax

A paragraph prefixed with exclamation marks is handled as admonition:

```
! a note

!! an informational message

!!! a tip to users

!!!! a warning
```

They are rendered as follows:

| Markdown Prefix | Rendered div                                  |
|:--              |:--                                            |
|!                | `<div class="admonition admonition-note">`    |
|!!               | `<div class="admonition admonition-info">`    |
|!!!              | `<div class="admonition admonition-tip">`     |
|!!!!             | `<div class="admonition admonition-warning">` |


