-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/home/hiro/Desktop/Desktop/abuzillav0.1/env/bin/python2 | ||
""" | ||
Python Markdown, the Command Line Script | ||
======================================== | ||
This is the command line script for Python Markdown. | ||
Basic use from the command line: | ||
markdown source.txt > destination.html | ||
Run "markdown --help" to see more options. | ||
See markdown/__init__.py for information on using Python Markdown as a module. | ||
## Authors and License | ||
Started by [Manfred Stienstra](http://www.dwerg.net/). Continued and | ||
maintained by [Yuri Takhteyev](http://www.freewisdom.org), [Waylan | ||
Limberg](http://achinghead.com/) and [Artem Yunusov](http://blog.splyer.com). | ||
Contact: [email protected] | ||
Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later) | ||
Copyright 200? Django Software Foundation (OrderedDict implementation) | ||
Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b) | ||
Copyright 2004 Manfred Stienstra (the original version) | ||
License: BSD (see docs/LICENSE for details). | ||
""" | ||
|
||
if __name__ == '__main__': | ||
from markdown.__main__ import run | ||
run() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
Metadata-Version: 1.1 | ||
Name: Markdown | ||
Version: 2.6.6 | ||
Summary: Python implementation of Markdown. | ||
Home-page: https://pythonhosted.org/Markdown/ | ||
Author: Waylan Limberg | ||
Author-email: waylan.limberg [at] icloud.com | ||
License: BSD License | ||
Download-URL: http://pypi.python.org/packages/source/M/Markdown/Markdown-2.6.6.tar.gz | ||
Description: | ||
This is a Python implementation of John Gruber's Markdown_. | ||
It is almost completely compliant with the reference implementation, | ||
though there are a few known issues. See Features_ for information | ||
on what exactly is supported and what is not. Additional features are | ||
supported by the `Available Extensions`_. | ||
|
||
.. _Markdown: http://daringfireball.net/projects/markdown/ | ||
.. _Features: https://pythonhosted.org/Markdown/index.html#Features | ||
.. _`Available Extensions`: https://pythonhosted.org/Markdown/extensions/index.html | ||
|
||
Support | ||
======= | ||
|
||
You may ask for help and discuss various other issues on the | ||
`mailing list`_ and report bugs on the `bug tracker`_. | ||
|
||
.. _`mailing list`: http://lists.sourceforge.net/lists/listinfo/python-markdown-discuss | ||
.. _`bug tracker`: http://github.com/waylan/Python-Markdown/issues | ||
|
||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.2 | ||
Classifier: Programming Language :: Python :: 3.3 | ||
Classifier: Programming Language :: Python :: 3.4 | ||
Classifier: Topic :: Communications :: Email :: Filters | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management | ||
Classifier: Topic :: Software Development :: Documentation | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Filters | ||
Classifier: Topic :: Text Processing :: Markup :: HTML |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
setup.cfg | ||
Markdown.egg-info/PKG-INFO | ||
Markdown.egg-info/SOURCES.txt | ||
Markdown.egg-info/dependency_links.txt | ||
Markdown.egg-info/top_level.txt | ||
bin/markdown_py | ||
markdown/__init__.py | ||
markdown/__main__.py | ||
markdown/__version__.py | ||
markdown/blockparser.py | ||
markdown/blockprocessors.py | ||
markdown/inlinepatterns.py | ||
markdown/odict.py | ||
markdown/postprocessors.py | ||
markdown/preprocessors.py | ||
markdown/serializers.py | ||
markdown/treeprocessors.py | ||
markdown/util.py | ||
markdown/extensions/__init__.py | ||
markdown/extensions/abbr.py | ||
markdown/extensions/admonition.py | ||
markdown/extensions/attr_list.py | ||
markdown/extensions/codehilite.py | ||
markdown/extensions/def_list.py | ||
markdown/extensions/extra.py | ||
markdown/extensions/fenced_code.py | ||
markdown/extensions/footnotes.py | ||
markdown/extensions/headerid.py | ||
markdown/extensions/meta.py | ||
markdown/extensions/nl2br.py | ||
markdown/extensions/sane_lists.py | ||
markdown/extensions/smart_strong.py | ||
markdown/extensions/smarty.py | ||
markdown/extensions/tables.py | ||
markdown/extensions/toc.py | ||
markdown/extensions/wikilinks.py |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
../markdown/serializers.py | ||
../markdown/util.py | ||
../markdown/preprocessors.py | ||
../markdown/inlinepatterns.py | ||
../markdown/blockparser.py | ||
../markdown/blockprocessors.py | ||
../markdown/postprocessors.py | ||
../markdown/__version__.py | ||
../markdown/odict.py | ||
../markdown/__init__.py | ||
../markdown/treeprocessors.py | ||
../markdown/__main__.py | ||
../markdown/extensions/nl2br.py | ||
../markdown/extensions/abbr.py | ||
../markdown/extensions/footnotes.py | ||
../markdown/extensions/admonition.py | ||
../markdown/extensions/codehilite.py | ||
../markdown/extensions/headerid.py | ||
../markdown/extensions/fenced_code.py | ||
../markdown/extensions/sane_lists.py | ||
../markdown/extensions/extra.py | ||
../markdown/extensions/tables.py | ||
../markdown/extensions/smart_strong.py | ||
../markdown/extensions/meta.py | ||
../markdown/extensions/smarty.py | ||
../markdown/extensions/attr_list.py | ||
../markdown/extensions/wikilinks.py | ||
../markdown/extensions/def_list.py | ||
../markdown/extensions/__init__.py | ||
../markdown/extensions/toc.py | ||
../markdown/serializers.pyc | ||
../markdown/util.pyc | ||
../markdown/preprocessors.pyc | ||
../markdown/inlinepatterns.pyc | ||
../markdown/blockparser.pyc | ||
../markdown/blockprocessors.pyc | ||
../markdown/postprocessors.pyc | ||
../markdown/__version__.pyc | ||
../markdown/odict.pyc | ||
../markdown/__init__.pyc | ||
../markdown/treeprocessors.pyc | ||
../markdown/__main__.pyc | ||
../markdown/extensions/nl2br.pyc | ||
../markdown/extensions/abbr.pyc | ||
../markdown/extensions/footnotes.pyc | ||
../markdown/extensions/admonition.pyc | ||
../markdown/extensions/codehilite.pyc | ||
../markdown/extensions/headerid.pyc | ||
../markdown/extensions/fenced_code.pyc | ||
../markdown/extensions/sane_lists.pyc | ||
../markdown/extensions/extra.pyc | ||
../markdown/extensions/tables.pyc | ||
../markdown/extensions/smart_strong.pyc | ||
../markdown/extensions/meta.pyc | ||
../markdown/extensions/smarty.pyc | ||
../markdown/extensions/attr_list.pyc | ||
../markdown/extensions/wikilinks.pyc | ||
../markdown/extensions/def_list.pyc | ||
../markdown/extensions/__init__.pyc | ||
../markdown/extensions/toc.pyc | ||
./ | ||
dependency_links.txt | ||
top_level.txt | ||
PKG-INFO | ||
SOURCES.txt | ||
../../../../bin/markdown_py |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
markdown |