mkmd 0.0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

mkmd 0.0.1

mkmd
Make Markdown Documents in Python.
Features

Heading
Paragraph
Code Block
Horizontal Rule
Reference
Image
Unordered List
Ordered List

Installation
pip install mkmd

Basic Usage
import mkmd
from mkmd.utils import *

md = mkmd.Markdown()

(md
.add_heading(f"Hello {bold_and_italic('MKMD')}",)

.add_paragraph(f"""
This markdown document was generated by using
{refer('mkmd', '1')}. This is a quick example showing how to
use it:
""", wrapped = True)

.add_codeblock("""
import mkmd

md = mkmd.Markdown()
md.add_heading("Hello World")
md.add_paragraph("Lorem ipsum dolor sit amet.")
""", language = "python")

.add_ordered_list(
*"So many things are possible!".split()
)

.add_reference("1", "http://example.org", "Look at this")

.add_image("Linux Mascot",
"https://mdg.imgix.net/assets/images/tux.png?auto=format&fit=clip&q=40&w=100"
)
)

if __name__ == "__main__":
md.save("example_result.md")

Links

Documentation
PyPI
Repository

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.