Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 03-May-2024 | - | 210 | 182 | ||
docs/ | 03-May-2024 | - | 6,588 | 4,811 | ||
markdown/ | 03-May-2024 | - | 7,278 | 5,238 | ||
tests/ | 03-May-2024 | - | 41,097 | 31,379 | ||
.codecov.yml | D | 03-May-2024 | 13 | 2 | 1 | |
.coveragerc | D | 03-May-2024 | 71 | 6 | 5 | |
.gitattributes | D | 03-May-2024 | 236 | 8 | 7 | |
.gitignore | D | 03-May-2024 | 859 | 75 | 61 | |
.spell-dict | D | 03-May-2024 | 1.4 KiB | 164 | 163 | |
Android.mk | D | 03-May-2024 | 37 | 2 | 0 | |
CODE_OF_CONDUCT.md | D | 03-May-2024 | 2.4 KiB | 50 | 39 | |
CleanSpec.mk | D | 03-May-2024 | 37 | 2 | 0 | |
INSTALL.md | D | 03-May-2024 | 269 | 10 | 6 | |
LICENSE.md | D | 03-May-2024 | 1.6 KiB | 30 | 25 | |
MANIFEST.in | D | 03-May-2024 | 270 | 13 | 12 | |
METADATA | D | 03-May-2024 | 735 | 24 | 22 | |
MODULE_LICENSE_BSD | D | 03-May-2024 | 0 | |||
NOTICE | D | 03-May-2024 | 1.6 KiB | 31 | 25 | |
OWNERS | D | 03-May-2024 | 46 | 2 | 1 | |
README.md | D | 03-May-2024 | 2.5 KiB | 65 | 50 | |
checklinks.sh | D | 03-May-2024 | 679 | 32 | 21 | |
checkspelling.sh | D | 03-May-2024 | 954 | 39 | 33 | |
doc-requirements.txt | D | 03-May-2024 | 26 | 3 | 2 | |
makefile | D | 03-May-2024 | 1.3 KiB | 64 | 53 | |
mkdocs.yml | D | 03-May-2024 | 2.3 KiB | 65 | 60 | |
pyproject.toml | D | 03-May-2024 | 152 | 5 | 4 | |
setup.cfg | D | 03-May-2024 | 37 | 3 | 2 | |
setup.py | D | 03-May-2024 | 5.2 KiB | 133 | 111 | |
tox.ini | D | 03-May-2024 | 964 | 44 | 36 |
README.md
1[Python-Markdown][] 2=================== 3 4[![Build Status][build-button]][build] 5[![Coverage Status][codecov-button]][codecov] 6[![Latest Version][mdversion-button]][md-pypi] 7[![Python Versions][pyversion-button]][md-pypi] 8[![BSD License][bsdlicense-button]][bsdlicense] 9[![Code of Conduct][codeofconduct-button]][Code of Conduct] 10 11[build-button]: https://github.com/Python-Markdown/markdown/workflows/CI/badge.svg?event=push 12[build]: https://github.com/Python-Markdown/markdown/actions?query=workflow%3ACI+event%3Apush 13[codecov-button]: https://codecov.io/gh/Python-Markdown/markdown/branch/master/graph/badge.svg 14[codecov]: https://codecov.io/gh/Python-Markdown/markdown 15[mdversion-button]: https://img.shields.io/pypi/v/Markdown.svg 16[md-pypi]: https://pypi.org/project/Markdown/ 17[pyversion-button]: https://img.shields.io/pypi/pyversions/Markdown.svg 18[bsdlicense-button]: https://img.shields.io/badge/license-BSD-yellow.svg 19[bsdlicense]: https://opensource.org/licenses/BSD-3-Clause 20[codeofconduct-button]: https://img.shields.io/badge/code%20of%20conduct-contributor%20covenant-green.svg?style=flat-square 21[Code of Conduct]: https://github.com/Python-Markdown/markdown/blob/master/CODE_OF_CONDUCT.md 22 23This is a Python implementation of John Gruber's [Markdown][]. 24It is almost completely compliant with the reference implementation, 25though there are a few known issues. See [Features][] for information 26on what exactly is supported and what is not. Additional features are 27supported by the [Available Extensions][]. 28 29[Python-Markdown]: https://Python-Markdown.github.io/ 30[Markdown]: https://daringfireball.net/projects/markdown/ 31[Features]: https://Python-Markdown.github.io#Features 32[Available Extensions]: https://Python-Markdown.github.io/extensions 33 34Documentation 35------------- 36 37```bash 38pip install markdown 39``` 40```python 41import markdown 42html = markdown.markdown(your_text_string) 43``` 44 45For more advanced [installation] and [usage] documentation, see the `docs/` directory 46of the distribution or the project website at <https://Python-Markdown.github.io/>. 47 48[installation]: https://python-markdown.github.io/install/ 49[usage]: https://python-markdown.github.io/reference/ 50 51See the change log at <https://Python-Markdown.github.io/change_log>. 52 53Support 54------- 55 56You may report bugs, ask for help, and discuss various other issues on the [bug tracker][]. 57 58[bug tracker]: https://github.com/Python-Markdown/markdown/issues 59 60Code of Conduct 61--------------- 62 63Everyone interacting in the Python-Markdown project's code bases, issue trackers, 64and mailing lists is expected to follow the [Code of Conduct]. 65