METADATA 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Metadata-Version: 2.4
  2. Name: mistune
  3. Version: 3.2.0
  4. Summary: A sane and fast Markdown parser with useful plugins and renderers
  5. Author-email: Hsiaoming Yang <me@lepture.com>
  6. License: BSD-3-Clause
  7. Project-URL: Documentation, https://mistune.lepture.com/
  8. Project-URL: Source, https://github.com/lepture/mistune
  9. Project-URL: Donate, https://github.com/sponsors/lepture
  10. Classifier: Development Status :: 4 - Beta
  11. Classifier: Environment :: Console
  12. Classifier: Environment :: Web Environment
  13. Classifier: Intended Audience :: Developers
  14. Classifier: License :: OSI Approved :: BSD License
  15. Classifier: Operating System :: OS Independent
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 3
  18. Classifier: Programming Language :: Python :: 3.8
  19. Classifier: Programming Language :: Python :: 3.9
  20. Classifier: Programming Language :: Python :: 3.10
  21. Classifier: Programming Language :: Python :: 3.11
  22. Classifier: Programming Language :: Python :: 3.12
  23. Classifier: Programming Language :: Python :: 3.13
  24. Classifier: Programming Language :: Python :: 3.14
  25. Classifier: Programming Language :: Python :: Implementation :: CPython
  26. Classifier: Programming Language :: Python :: Implementation :: PyPy
  27. Classifier: Topic :: Text Processing :: Markup
  28. Requires-Python: >=3.8
  29. Description-Content-Type: text/x-rst
  30. License-File: LICENSE
  31. Requires-Dist: typing-extensions; python_version < "3.11"
  32. Dynamic: license-file
  33. Mistune v3
  34. ==========
  35. A fast yet powerful Python Markdown parser with renderers and plugins.
  36. Overview
  37. --------
  38. Convert Markdown to HTML with ease:
  39. .. code-block:: python
  40. import mistune
  41. mistune.html(your_markdown_text)
  42. Useful Links
  43. ------------
  44. 1. GitHub: https://github.com/lepture/mistune
  45. 2. Docs: https://mistune.lepture.com/
  46. License
  47. -------
  48. Mistune is licensed under BSD. Please see LICENSE for licensing details.