aboutsummaryrefslogtreecommitdiffstats
path: root/Bonus/README.eng
diff options
context:
space:
mode:
authorAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
committerAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-08 05:14:08 +0000
commit68a07bf03b7624c9924065cce9ffa45497225834 (patch)
treec2adb06a909a8594445e4a3f8587c4bad46e3ecd /Bonus/README.eng
downloadw3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz
w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip
Initial revision
Diffstat (limited to '')
-rw-r--r--Bonus/README.eng49
1 files changed, 49 insertions, 0 deletions
diff --git a/Bonus/README.eng b/Bonus/README.eng
new file mode 100644
index 0000000..06613ee
--- /dev/null
+++ b/Bonus/README.eng
@@ -0,0 +1,49 @@
+html2latex
+
+ Convert HTML document into LaTeX. Ruby script. incomplete.
+
+ Usage:
+
+ html2latex file.html > file.tex
+
+ Why this script is here?
+
+ To exploit code for makeref. :-)
+
+makeref
+
+ Read HTML document and number the anchors. Print numbered document
+ into standard output and append reference index. Ruby script.
+
+ Usage:
+
+ makeref [-u] [-url base_url] [file]
+
+ -url: Specify URL of the document. It is used to complete link
+ in the document.
+
+ -u: Append URL after each anchor, instead of reference number.
+
+ Bugs
+
+ If there are any error in HTML (unbalanced < , character entity
+ without ; , etc.), output will be miserable.
+
+htmldump
+
+ Read HTML document from URL, number the anchors and format it,
+ and output it on standard output.
+
+ Usage
+
+ htmldump [-u] [URL]
+
+ -u: Append URL after each anchor, instead of reference number.
+
+ If URL is omitted, $WWW_HOME is used instead.
+
+ Bugs
+
+ It assumes that the document on URL is HTML.
+ As it uses makeref to number the anchor, it can't handle any document
+ makeref can't handle.