Metadata-Version: 2.1
Name: mdformat-wikilink
Version: 0.1.0
Summary: 
License: MIT
Author: Tamir Bahar
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: markdown-it-py (>=2.2.0,<3.0.0)
Requires-Dist: mdformat (>=0.7.16,<0.8.0)
Description-Content-Type: text/markdown

# mdformat-wikilink

An [mdformat] plugin for ensuring that wiki-style links (`[[Target|Alias]]`)
are preserved during formatting.

Source:

```markdown
This is a [[link]].
```

With the plugin:

```markdown
This is a [[link]].
```

Without the plugin:

```markdown
This is a \[\[link\]\].
```

[mdformat]: https://github.com/executablebooks/mdformat

