METADATA 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. Metadata-Version: 2.1
  2. Name: Markdown
  3. Version: 3.4.3
  4. Summary: Python implementation of John Gruber's Markdown.
  5. Author: Manfred Stienstra, Yuri Takhteyev
  6. Author-email: Waylan limberg <python.markdown@gmail.com>
  7. Maintainer: Isaac Muse
  8. Maintainer-email: Waylan Limberg <python.markdown@gmail.com>
  9. License: Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later)
  10. Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b)
  11. Copyright 2004 Manfred Stienstra (the original version)
  12. All rights reserved.
  13. Redistribution and use in source and binary forms, with or without
  14. modification, are permitted provided that the following conditions are met:
  15. * Redistributions of source code must retain the above copyright
  16. notice, this list of conditions and the following disclaimer.
  17. * Redistributions in binary form must reproduce the above copyright
  18. notice, this list of conditions and the following disclaimer in the
  19. documentation and/or other materials provided with the distribution.
  20. * Neither the name of the Python Markdown Project nor the
  21. names of its contributors may be used to endorse or promote products
  22. derived from this software without specific prior written permission.
  23. THIS SOFTWARE IS PROVIDED BY THE PYTHON MARKDOWN PROJECT ''AS IS'' AND ANY
  24. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  25. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  26. DISCLAIMED. IN NO EVENT SHALL ANY CONTRIBUTORS TO THE PYTHON MARKDOWN PROJECT
  27. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  33. POSSIBILITY OF SUCH DAMAGE.
  34. Project-URL: Homepage, https://Python-Markdown.github.io/
  35. Project-URL: Documentation, https://Python-Markdown.github.io/
  36. Project-URL: Repository, https://github.com/Python-Markdown/markdown
  37. Project-URL: Issue Tracker, https://github.com/Python-Markdown/markdown/issues
  38. Project-URL: Changelog, https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md
  39. Keywords: markdown,markdown-parser,python-markdown,markdown-to-html
  40. Classifier: Development Status :: 5 - Production/Stable
  41. Classifier: License :: OSI Approved :: BSD License
  42. Classifier: Operating System :: OS Independent
  43. Classifier: Programming Language :: Python
  44. Classifier: Programming Language :: Python :: 3
  45. Classifier: Programming Language :: Python :: 3.7
  46. Classifier: Programming Language :: Python :: 3.8
  47. Classifier: Programming Language :: Python :: 3.9
  48. Classifier: Programming Language :: Python :: 3.10
  49. Classifier: Programming Language :: Python :: 3.11
  50. Classifier: Programming Language :: Python :: 3 :: Only
  51. Classifier: Programming Language :: Python :: Implementation :: CPython
  52. Classifier: Programming Language :: Python :: Implementation :: PyPy
  53. Classifier: Topic :: Communications :: Email :: Filters
  54. Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
  55. Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
  56. Classifier: Topic :: Software Development :: Documentation
  57. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  58. Classifier: Topic :: Text Processing :: Filters
  59. Classifier: Topic :: Text Processing :: Markup :: HTML
  60. Classifier: Topic :: Text Processing :: Markup :: Markdown
  61. Requires-Python: >=3.7
  62. Description-Content-Type: text/markdown
  63. License-File: LICENSE.md
  64. Requires-Dist: importlib-metadata (>=4.4) ; python_version < "3.10"
  65. Provides-Extra: testing
  66. Requires-Dist: coverage ; extra == 'testing'
  67. Requires-Dist: pyyaml ; extra == 'testing'
  68. [Python-Markdown][]
  69. ===================
  70. [![Build Status][build-button]][build]
  71. [![Coverage Status][codecov-button]][codecov]
  72. [![Latest Version][mdversion-button]][md-pypi]
  73. [![Python Versions][pyversion-button]][md-pypi]
  74. [![BSD License][bsdlicense-button]][bsdlicense]
  75. [![Code of Conduct][codeofconduct-button]][Code of Conduct]
  76. [build-button]: https://github.com/Python-Markdown/markdown/workflows/CI/badge.svg?event=push
  77. [build]: https://github.com/Python-Markdown/markdown/actions?query=workflow%3ACI+event%3Apush
  78. [codecov-button]: https://codecov.io/gh/Python-Markdown/markdown/branch/master/graph/badge.svg
  79. [codecov]: https://codecov.io/gh/Python-Markdown/markdown
  80. [mdversion-button]: https://img.shields.io/pypi/v/Markdown.svg
  81. [md-pypi]: https://pypi.org/project/Markdown/
  82. [pyversion-button]: https://img.shields.io/pypi/pyversions/Markdown.svg
  83. [bsdlicense-button]: https://img.shields.io/badge/license-BSD-yellow.svg
  84. [bsdlicense]: https://opensource.org/licenses/BSD-3-Clause
  85. [codeofconduct-button]: https://img.shields.io/badge/code%20of%20conduct-contributor%20covenant-green.svg?style=flat-square
  86. [Code of Conduct]: https://github.com/Python-Markdown/markdown/blob/master/CODE_OF_CONDUCT.md
  87. This is a Python implementation of John Gruber's [Markdown][].
  88. It is almost completely compliant with the reference implementation,
  89. though there are a few known issues. See [Features][] for information
  90. on what exactly is supported and what is not. Additional features are
  91. supported by the [Available Extensions][].
  92. [Python-Markdown]: https://Python-Markdown.github.io/
  93. [Markdown]: https://daringfireball.net/projects/markdown/
  94. [Features]: https://Python-Markdown.github.io#Features
  95. [Available Extensions]: https://Python-Markdown.github.io/extensions
  96. Documentation
  97. -------------
  98. ```bash
  99. pip install markdown
  100. ```
  101. ```python
  102. import markdown
  103. html = markdown.markdown(your_text_string)
  104. ```
  105. For more advanced [installation] and [usage] documentation, see the `docs/` directory
  106. of the distribution or the project website at <https://Python-Markdown.github.io/>.
  107. [installation]: https://python-markdown.github.io/install/
  108. [usage]: https://python-markdown.github.io/reference/
  109. See the change log at <https://Python-Markdown.github.io/change_log>.
  110. Support
  111. -------
  112. You may report bugs, ask for help, and discuss various other issues on the [bug tracker][].
  113. [bug tracker]: https://github.com/Python-Markdown/markdown/issues
  114. Code of Conduct
  115. ---------------
  116. Everyone interacting in the Python-Markdown project's code bases, issue trackers,
  117. and mailing lists is expected to follow the [Code of Conduct].