Boringmd 1.1.1 | Coderz Repository

boringmd 1.1.1

Last updated:

0 purchases

boringmd 1.1.1 Image
boringmd 1.1.1 Images

Free

Languages

Categories

Add to Cart

Description:

boringmd 1.1.1

boringmd
boringmd is a Python package and command line tool for extracting plain text and front matter from Markdown.
Installation
boringmd requires Python 3.8 or later.
pip install boringmd

Command line
Pass the filename of a Markdown document to extract its plain text content:
boringmd input.md

To extract the front matter only, include the --front-matter flag:
boringmd input.md --front-matter

boringmd prints to stdout. To write the extraction to a file, redirect it:
boringmd input.md > output.txt

Package
from boringmd import front_matter_from_string, text_from_string
markdown = "---\nfoo: bar\n---\n**foo** and _bar_"
print(text_from_string(markdown))
# foo and bar
print(front_matter_from_string(markdown))
# foo: bar

from pathlib import Path
from boringmd import front_matter_from_file, text_from_file
print(text_from_file(Path("input.md")))
print(front_matter_from_file(Path("input.md")))

Related packages
boringmd uses cariad/lstr to manipulate strings.
Thank you! 🎉
My name is Cariad, and I'm an independent freelance DevOps engineer.
I'd love to spend more time working on projects like this, but--as a freelancer--my income is sporadic and I need to chase gigs that pay the rent.
If this project has value to you, please consider ☕️ sponsoring me. Sponsorships grant me time to work on your wants rather than someone else's.
Thank you! ❤️

License:

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

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.