mdorrst

Tell appart Markdown and reStructuredText.


Keywords
mdorrst
License
MIT
Install
pip install mdorrst==0.4.0

Documentation

mdorrst

Tell appart Markdown and reStructuredText.

  • Free software: MIT license

Usage

The package exposes a single function, sniff(content), trying to deduce the format used, returning it as a string: md, rst or txt:

>>> import mdorrst
>>> mdorrst.sniff("[hey](http://example.com)")
'md'
>>> mdorrst.sniff("`hey <http://example.com>`__")
'rst'

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.