Metadata-Version: 2.1
Name: marquedown
Version: 0.3.1
Summary: Extending Markdown further by adding a few more useful notations.
Home-page: https://gitlab.com/deepadmax/marquedown
License: GPL-3.0-or-later
Author: Maximillian Strand
Author-email: maximillian.strand@protonmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: Markdown (>=3.3.6,<4.0.0)
Project-URL: Repository, https://gitlab.com/deepadmax/marquedown
Description-Content-Type: text/markdown

# Marquedown

Extending Markdown further by adding a few more useful notations.
It can be used in place of `markdown` as it also uses and applies it.

## Examples

### Blockquote with citation

This is currently limited to the top scope with no indentation.
Surrounding dotted lines are optional.

```md
......................................................
> You have enemies? Good. That means you've stood up
> for something, sometime in your life.
-- Winston Churchill
''''''''''''''''''''''''''''''''''''''''''''''''''''''
```

```html
<blockquote>
    <p>
        You have enemies? Good. That means you've stood up
        for something, sometime in your life.
    </p>
    <cite>Winston Churchill</cite>
</blockquote>
```

### Embed video

#### YouTube

```md
![dimweb](https://youtu.be/VmAEkV5AYSQ "An embedded YouTube video")
```

```html
<iframe
    src="https://www.youtube.com/embed/VmAEkV5AYSQ"
    title="An embedded YouTube video" frameborder="0"
    allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
    allowfullscreen>
</iframe>
```
