readme.txt for the convertor

This converter generates a set of HTML <table> tag from
the header_operations.py file. Please use at your own risk.

The conversion work is usually not necessary. The 3200+
lines of HTML generated by the convertor have already been
embedded (by hand) in the sample HTML file. It is necessary
when the header_operations.py (or its expanded version) is
revised or when you want to embed its translated version.

(Example from bash shell of Cygwin)
LANG=C cat header_operations.py | python hdrope2tbl_1a.py - > out1.txt

(Example from Command prompt)
type header_operations.py | python hdrope2tbl_1a.py - > out1.txt

Note 1: The output file (out1.txt in the example) will
 be overwritten. Don't specify your whole web page.
Note 2: "- >" is not "->". The "-" means the converter
 reads from standard-in.
Note 3: The convertor supports either Pyrhon 2 or 3.
Note 4: Specify appropriate path for each file and Python.
Note 5: The "LANG=C" is necessary (only) for if comments
 in header_operations.py has been translated with Unicode
 for localization. Don't place delimiter ";" just after C.

----
hdrope2tbl_1a.py
  The converter. Supports Python 2 and 3.
  It reads header_operations.py from standard-in and
  outputs to standard-out.

----
1a.sh
  Sample shell script file to call the converter.

----

