Sha256: 9a8ebba52b05ee0f1df4bdc2f7b9a220164b8e28e5815d18bdcffdf2f6c9259e

Contents?: true

Size: 319 Bytes

Versions: 2

Compression:

Stored size: 319 Bytes

Contents

#!/usr/bin/env python

try:
    import locale
    locale.setlocale(locale.LC_ALL, '')
except:
    pass

import sys
from transform import transform
from docutils.writers.html4css1 import Writer

def main():
    return transform(writer=Writer(), part='html_body')

if __name__ == '__main__':
    sys.stdout.write(main())

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
RbST-0.4.0 lib/rst2parts/rst2html.py
RbST-0.3.0 lib/rst2parts/rst2html.py