Docutils Writer producing Tiny HTML
Project description
Docutils Tiny HTML Writer
This is a fork of https://github.com/ondratu/docutils-tinyhtmlwriter which adresses a few HTML 5 validation errors and warnings.
Docutils Tiny HTML Writer is another docutils html writer, with very light html output. It will create mainly for use in other project’s like doc generators or web publishers, which want to use their own html headers and footers.
One of possible use:
from docutils.core import publish_string, publish_parts
from docutils_tinyhtml import Writer
from sys import version_info
if version_info[0] < 3:
from io import open
writer = Writer()
with open("README.rst", encoding="utf-8") as f:
rst = f.read()
# store full html output to html variable
html = publish_string(source=rst,
writer=writer,
writer_name='html',
settings_overrides={'link': 'link', 'top': 'top'})
# disable system message in html, no in stderr
parts = publish_parts(source=rst,
writer=writer,
writer_name='html',
settings_overrides={'no_system_messages': True})
# store only html body
body = parts['html_title'] + parts['body'] + parts['html_line'] + \
parts['html_footnotes'] + parts['html_citations'] + \
parts['html_hyperlinks']
Or you can use rst2html-tiny command tool like standard rst2html:
~$ rst2html-tiny README.rst > README.html # generate html from reStructured text
~$ rst2html-tiny -h # help output
If you have installed recommonmark from https://github.com/rtfd/recommonmark you can use md2html-tiny tool for MarkDown source codes.
Installation
~$ pip install docutils-tinyhtmlwriter
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file docutils-tinyhtmlwriter-fork-1.2.2.tar.gz
.
File metadata
- Download URL: docutils-tinyhtmlwriter-fork-1.2.2.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4faafef4dd94341bd179189cff87149f394035be02b6f7c8a7588e7990ccf5c2 |
|
MD5 | 4650ed53aad2f653deecaa00cfb2a73c |
|
BLAKE2b-256 | fb5e013c6857c216225e450371d63841cd4b460d3767c51394a112746ffbb841 |