Metadata-Version: 2.1
Name: Mark2PY
Version: 0.5.5.5
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
Description: # 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__
            
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
