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

<h1>Mark2PY</h1>
<p>THIS MODULE HELP YOU FOR WRITING MARKUP (HTM) &amp; MARKDOWN (MD) IN YOUR PYTHON SCRIPT.</p>
<hr>
<h2>start with Mark2PY</h2>
<p>For using Mark2PY, just you must PIP it.</p>
<p><code>&gt; pip install Mark2PY</code></p>
<h2>MarkDown</h2>
<p>this module, inclue <strong>mistune</strong> for showing markdown.</p>
<ul>
<li>H1 <code>Mark2PY.MD.H1(text)</code></li>
</ul>
<h1>This is H1</h1>
<ul>
<li>H2 <code>Mark2PY.MD.H2(text)</code></li>
</ul>
<h2>This is H2</h2>
<ul>
<li>H3 <code>Mark2PY.MD.H3(text)</code></li>
</ul>
<h3>This is H3</h3>
<ul>
<li>bold <code>Mark2PY.MD.bold(text)</code></li>
</ul>
<p><strong>This is bold</strong></p>
<ul>
<li><p>italic <code>Mark2PY.MD.italic(text)</code></p>
<p><em>This is italic</em></p>
</li>
<li><p>strikethrough <code>Mark2PY.MD.strikethrough(text)</code></p>
</li>
</ul>
<p><del>This is strikethrough</del></p>
<ul>
<li>block quote <code>Mark2PY.MD.block_quote(text)</code></li>
</ul>
<blockquote><p>This is block quote</p>
</blockquote>
<ul>
<li><p>unordered list <code>Mark2PY.MD.unordred_list(*args)</code></p>
<ol>
<li>This</li>
<li>is </li>
<li>unordred </li>
<li>List</li>
</ol>
</li>
<li>ordered list <code>Mark2PY.MD.ordered_list(*args)</code><blockquote><ul>
<li>This</li>
<li>is</li>
<li>ordered</li>
<li>list</li>
</ul>
</blockquote>
</li>
<li>horizontal rule <code>Mark2PY.MD.horizontal_rule()</code> :</li>
</ul>
<hr>
<ul>
<li>Link <code>M2P.MD.link(title, href)</code> 
<a href="https://example.com">This is link</a></li>
</ul>
<h2>MarkUp</h2>
<p><strong>Will be enable</strong></p>
<h2>Example</h2>
<pre><code class="lang-python">import Mark2PY
Mark2PY.MD.bold(&quot;Hello&quot;)
Mark2PY.run(&quot;MD&quot;)
&gt;&gt;&gt; &lt;html&gt;&lt;em&gt;Hello&lt;/em&gt;&lt;/html&gt;
</code></pre>
<h2>Author</h2>
<p><img src="https://avatars1.githubusercontent.com/u/46087303?s=460&amp;v=4" alt="AMJ"></p>
<p>this module is created by AMJoshaghani An iranian people; for all of python coders :)
<a href="https://amjoshaghani.ir">AMJoshaghani's site</a></p>
<p>please follow me on <a href="https://GitHub.com/AMJoshaghani">GitHub</a></p>
<blockquote><p>god is so merciful! <strong>AMJoshaghani</strong></p>
</blockquote>


