Metadata-Version: 2.1
Name: Mark2PY
Version: 0.5.3
Summary: this package help developers to write Markdown & Markup in python
Home-page: https://github.com/amjoshaghani/Mark2PY
Author: AMJoshaghani
Author-email: amjoshaghani@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Mark2PY
![M2P](https://chor.ir/api/file/image/BQADBAADrwUAAmTP-FImdnvsw2lqvAI.png)
<br />
THIS MODULE HELP YOU FOR WRITING MARKUP (HTM) & MARKDOWN (MD) IN YOUR PYTHON SCRIPT.
- - -
## start with Mark2PY

For using Mark2PY, just you must PIP it.

`> pip install Mark2PY`
## MarkDown

this module, inclue **mistune** for showing markdown.

- H1 `Mark2PY.MD.H1(text)`

# This is H1

- H2 `Mark2PY.MD.H2(text)`

## This is H2

- H3 `Mark2PY.MD.H3(text)`

### This is H3

- bold `Mark2PY.MD.bold(text)`

**This is bold**

- italic `Mark2PY.MD.italic(text)`

 _This is italic_

- strikethrough `Mark2PY.MD.strikethrough(text)`

~~This is strikethrough~~

- block quote `Mark2PY.MD.block_quote(text)`

> This is block quote

- unordered list `Mark2PY.MD.unordred_list(*args)`

 1. This
 2.  is 
 3.  unordred 
 4.  List
- ordered list `Mark2PY.MD.ordered_list(*args)`
> - This
> - is
> - ordered
> - list
- horizontal rule `Mark2PY.MD.horizontal_rule()` :
------------
- Link `M2P.MD.link(title, href)` 
[This is link](https://example.com)


## MarkUp
**Will be enable**


## Example

```python
import Mark2PY
Mark2PY.MD.bold("Hello")
Mark2PY.run("MD")
>>> <html><em>Hello</em></html>
```

## Author

![AMJ](https://avatars1.githubusercontent.com/u/46087303?s=460&v=4)

this module is created by AMJoshaghani An iranian people; for all of python coders :)
[AMJoshaghani's site](https://amjoshaghani.ir)

please follow me on [GitHub](https://GitHub.com/AMJoshaghani)
> god is so merciful! __AMJoshaghani__




