KOLANICH-libs / LMRender.py

A library to render lightweight markup languages into each other. The main purpose is rendering ReadMe files, mainly - into terminal.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LMRender.py Unlicensed work

wheel (GitLab) wheel (GHA via nightly.link) GitLab Build Status GitLab Coverage GitHub Actions Libraries.io Status Code style: antiflash

A library to render lightweight markup languages into each other. The main purpose is rendering ReadMe files, mainly - into a terminal using ANSI escape sequencies.

Goals

  1. It is designed to be smol.

  2. It is designed to allow a user to specify what he wants to get, not how exactly to do it.

  3. It is designed to be moderately tweakable. An integrator can avoid using the unneeded backends, rebalance the priorities of the existing ones, and add own backends by just constructing an own instance of Renderer. A more careful tweaking of backend priorities can be done by subclassing the Renderer and redefining the method building the adjacency matrix.

  4. Since is designed to require no mandatory dependencies, it is also designed to help projects integrating that lib to provide useful hints to end users about what packages they should install to get the needed functionality. (Currently this feature was broken when I was refactoring my lib).

  5. It provides a function (SupportedFormat.fromFileName) to guess which source format is stored within a file by its extension.

How to use

Basically the pipeline for working with my lib is the following:

from LMRender import SupportedFormat as SF, DEFAULT_RENDERER

srcFileName: PurePath = getTheSourceFileName()  # integrator's
src: str = getTheSource(srcFileName)  # integrator's
targetFormat: SF = getTargetFormat()  # integrator's
fmt: SF = SF.fromFileName(srcFileName)
depsToInstall: typing.Iterable[str] = DEFAULT_RENDERER.isSourceUnavailable(fmt)
printMessageToAUserIfNeeded(depsToInstall)  # integrator's
rendered: str = DEFAULT_RENDERER.render(src, fmt, targetFormat)
displayRenderedToUser(rendered)  # integrator's

About

A library to render lightweight markup languages into each other. The main purpose is rendering ReadMe files, mainly - into terminal.

License:The Unlicense


Languages

Language:Python 100.0%