| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- Metadata-Version: 2.1
- Name: Markdown
- Version: 3.4.3
- Summary: Python implementation of John Gruber's Markdown.
- Author: Manfred Stienstra, Yuri Takhteyev
- Author-email: Waylan limberg <python.markdown@gmail.com>
- Maintainer: Isaac Muse
- Maintainer-email: Waylan Limberg <python.markdown@gmail.com>
- License: Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
- Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b)
- Copyright 2004 Manfred Stienstra (the original version)
-
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- * Neither the name of the Python Markdown Project nor the
- names of its contributors may be used to endorse or promote products
- derived from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE PYTHON MARKDOWN PROJECT ''AS IS'' AND ANY
- EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL ANY CONTRIBUTORS TO THE PYTHON MARKDOWN PROJECT
- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
- Project-URL: Homepage, https://Python-Markdown.github.io/
- Project-URL: Documentation, https://Python-Markdown.github.io/
- Project-URL: Repository, https://github.com/Python-Markdown/markdown
- Project-URL: Issue Tracker, https://github.com/Python-Markdown/markdown/issues
- Project-URL: Changelog, https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md
- Keywords: markdown,markdown-parser,python-markdown,markdown-to-html
- 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 :: 3
- Classifier: Programming Language :: Python :: 3.7
- Classifier: Programming Language :: Python :: 3.8
- Classifier: Programming Language :: Python :: 3.9
- Classifier: Programming Language :: Python :: 3.10
- Classifier: Programming Language :: Python :: 3.11
- Classifier: Programming Language :: Python :: 3 :: Only
- Classifier: Programming Language :: Python :: Implementation :: CPython
- Classifier: Programming Language :: Python :: Implementation :: PyPy
- 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
- Classifier: Topic :: Text Processing :: Markup :: Markdown
- Requires-Python: >=3.7
- Description-Content-Type: text/markdown
- License-File: LICENSE.md
- Requires-Dist: importlib-metadata (>=4.4) ; python_version < "3.10"
- Provides-Extra: testing
- Requires-Dist: coverage ; extra == 'testing'
- Requires-Dist: pyyaml ; extra == 'testing'
- [Python-Markdown][]
- ===================
- [![Build Status][build-button]][build]
- [![Coverage Status][codecov-button]][codecov]
- [![Latest Version][mdversion-button]][md-pypi]
- [![Python Versions][pyversion-button]][md-pypi]
- [![BSD License][bsdlicense-button]][bsdlicense]
- [![Code of Conduct][codeofconduct-button]][Code of Conduct]
- [build-button]: https://github.com/Python-Markdown/markdown/workflows/CI/badge.svg?event=push
- [build]: https://github.com/Python-Markdown/markdown/actions?query=workflow%3ACI+event%3Apush
- [codecov-button]: https://codecov.io/gh/Python-Markdown/markdown/branch/master/graph/badge.svg
- [codecov]: https://codecov.io/gh/Python-Markdown/markdown
- [mdversion-button]: https://img.shields.io/pypi/v/Markdown.svg
- [md-pypi]: https://pypi.org/project/Markdown/
- [pyversion-button]: https://img.shields.io/pypi/pyversions/Markdown.svg
- [bsdlicense-button]: https://img.shields.io/badge/license-BSD-yellow.svg
- [bsdlicense]: https://opensource.org/licenses/BSD-3-Clause
- [codeofconduct-button]: https://img.shields.io/badge/code%20of%20conduct-contributor%20covenant-green.svg?style=flat-square
- [Code of Conduct]: https://github.com/Python-Markdown/markdown/blob/master/CODE_OF_CONDUCT.md
- 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][].
- [Python-Markdown]: https://Python-Markdown.github.io/
- [Markdown]: https://daringfireball.net/projects/markdown/
- [Features]: https://Python-Markdown.github.io#Features
- [Available Extensions]: https://Python-Markdown.github.io/extensions
- Documentation
- -------------
- ```bash
- pip install markdown
- ```
- ```python
- import markdown
- html = markdown.markdown(your_text_string)
- ```
- For more advanced [installation] and [usage] documentation, see the `docs/` directory
- of the distribution or the project website at <https://Python-Markdown.github.io/>.
- [installation]: https://python-markdown.github.io/install/
- [usage]: https://python-markdown.github.io/reference/
- See the change log at <https://Python-Markdown.github.io/change_log>.
- Support
- -------
- You may report bugs, ask for help, and discuss various other issues on the [bug tracker][].
- [bug tracker]: https://github.com/Python-Markdown/markdown/issues
- Code of Conduct
- ---------------
- Everyone interacting in the Python-Markdown project's code bases, issue trackers,
- and mailing lists is expected to follow the [Code of Conduct].
|