• Home
Name Date Size #Lines LOC

..--

.github/workflows/03-May-2024-210182

docs/03-May-2024-6,5884,811

markdown/03-May-2024-7,2785,238

tests/03-May-2024-41,09731,379

.codecov.ymlD03-May-202413 21

.coveragercD03-May-202471 65

.gitattributesD03-May-2024236 87

.gitignoreD03-May-2024859 7561

.spell-dictD03-May-20241.4 KiB164163

Android.mkD03-May-202437 20

CODE_OF_CONDUCT.mdD03-May-20242.4 KiB5039

CleanSpec.mkD03-May-202437 20

INSTALL.mdD03-May-2024269 106

LICENSE.mdD03-May-20241.6 KiB3025

MANIFEST.inD03-May-2024270 1312

METADATAD03-May-2024735 2422

MODULE_LICENSE_BSDD03-May-20240

NOTICED03-May-20241.6 KiB3125

OWNERSD03-May-202446 21

README.mdD03-May-20242.5 KiB6550

checklinks.shD03-May-2024679 3221

checkspelling.shD03-May-2024954 3933

doc-requirements.txtD03-May-202426 32

makefileD03-May-20241.3 KiB6453

mkdocs.ymlD03-May-20242.3 KiB6560

pyproject.tomlD03-May-2024152 54

setup.cfgD03-May-202437 32

setup.pyD03-May-20245.2 KiB133111

tox.iniD03-May-2024964 4436

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