From 997ea5ea1d02e31bb8a9b03e3db26684cc81ac59 Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Sat, 6 Feb 2010 18:55:28 +0000 Subject: Removed html2markdown and hsmarkdown. html2markdown is no longer needed, since you can pass URI arguments to pandoc and directly convert web pages. (Note, however, that pandoc assumes the pages are UTF8. html2markdown made an attempt to guess the encoding and convert them.) hsmarkdown is pointless -- a large executable that could be replaced by 'pandoc --strict'. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1834 788f1e2b-df1e-0410-8736-df70ead52e1b --- man/man1/hsmarkdown.1.md | 42 -------------------- man/man1/html2markdown.1.md | 95 --------------------------------------------- 2 files changed, 137 deletions(-) delete mode 100644 man/man1/hsmarkdown.1.md delete mode 100644 man/man1/html2markdown.1.md (limited to 'man') diff --git a/man/man1/hsmarkdown.1.md b/man/man1/hsmarkdown.1.md deleted file mode 100644 index a197ef2ca..000000000 --- a/man/man1/hsmarkdown.1.md +++ /dev/null @@ -1,42 +0,0 @@ -% HSMARKDOWN(1) Pandoc User Manuals -% John MacFarlane -% January 8, 2008 - -# NAME - -hsmarkdown - convert markdown-formatted text to HTML - -# SYNOPSIS - -hsmarkdown [*input-file*]... - -# DESCRIPTION - -`hsmarkdown` converts markdown-formatted text to HTML. It is designed -to be usable as a drop-in replacement for John Gruber's `Markdown.pl`. - -If no *input-file* is specified, input is read from *stdin*. -Otherwise, the *input-files* are concatenated (with a blank -line between each) and used as input. Output goes to *stdout* by -default. For output to a file, use shell redirection: - - hsmarkdown input.txt > output.html - -`hsmarkdown` uses the UTF-8 character encoding for both input and output. -If your local character encoding is not UTF-8, you should pipe input -and output through `iconv`: - - iconv -t utf-8 input.txt | hsmarkdown | iconv -f utf-8 - -`hsmarkdown` is implemented as a wrapper around `pandoc`(1). It -calls `pandoc` with the options `--from markdown --to html ---strict` and disables all other options. (Command-line options -will be interpreted as filenames, as they are by `Markdown.pl`.) - -# SEE ALSO - -`pandoc`(1). The *README* -file distributed with Pandoc contains full documentation. - -The Pandoc source code and all documentation may be downloaded from -. diff --git a/man/man1/html2markdown.1.md b/man/man1/html2markdown.1.md deleted file mode 100644 index 73e3420dd..000000000 --- a/man/man1/html2markdown.1.md +++ /dev/null @@ -1,95 +0,0 @@ -% HTML2MARKDOWN(1) Pandoc User Manuals -% John MacFarlane and Recai Oktas -% January 8, 2008 - -# NAME - -html2markdown - converts HTML to markdown-formatted text - -# SYNOPSIS - -html2markdown [*pandoc-options*] [\-- *special-options*] [*input-file* or -*URL*] - -# DESCRIPTION - -`html2markdown` converts *input-file* or *URL* (or text -from *stdin*) from HTML to markdown-formatted plain text. -If a URL is specified, `html2markdown` uses an available program -(e.g. wget, w3m, lynx or curl) to fetch its contents. Output is sent -to *stdout* unless an output file is specified using the `-o` -option. - -`html2markdown` uses the character encoding specified in the -"Content-type" meta tag. If this is not present, or if input comes -from *stdin*, UTF-8 is assumed. A character encoding may be specified -explicitly using the `-e` special option. - -# OPTIONS - -`html2markdown` is a wrapper for `pandoc`, so all of -`pandoc`'s options may be used. See `pandoc`(1) for -a complete list. The following options are most relevant: - --s, \--standalone -: Include title, author, and date information (if present) at the - top of markdown output. - --o *FILE*, \--output=*FILE* -: Write output to *FILE* instead of *stdout*. - -\--strict -: Use strict markdown syntax, with no extensions or variants. - -\--reference-links -: Use reference-style links, rather than inline links, in writing markdown - or reStructuredText. - --R, \--parse-raw -: Parse untranslatable HTML codes as raw HTML. - -\--no-wrap -: Disable text wrapping in output. (Default is to wrap text.) - --H *FILE*, \--include-in-header=*FILE* -: Include contents of *FILE* at the end of the header. Implies - `-s`. - --B *FILE*, \--include-before-body=*FILE* -: Include contents of *FILE* at the beginning of the document body. - --A *FILE*, \--include-after-body=*FILE* -: Include contents of *FILE* at the end of the document body. - --C *FILE*, \--custom-header=*FILE* -: Use contents of *FILE* - as the document header (overriding the default header, which can be - printed using `pandoc -D markdown`). Implies `-s`. - -# SPECIAL OPTIONS - -In addition, the following special options may be used. The special -options must be separated from the `html2markdown` command and any -regular `pandoc` options by the delimiter \``--`', as in - - html2markdown -o foo.txt -- -g 'curl -u bar:baz' -e latin1 \ - www.foo.com - --e *encoding*, \--encoding=*encoding* -: Assume the character encoding *encoding* in reading HTML. - (Note: *encoding* will be passed to `iconv`; a list of - available encodings may be obtained using `iconv -l`.) - If this option is not specified and input is not from - *stdin*, `html2markdown` will try to extract the character encoding - from the "Content-type" meta tag. If no character encoding is - specified in this way, or if input is from *stdin*, UTF-8 will be - assumed. - --g *command*, \--grabber=*command* -: Use *command* to fetch the contents of a URL. (By default, - `html2markdown` searches for an available program or text-based - browser to fetch the contents of a URL.) - -# SEE ALSO - -`pandoc`(1), `iconv`(1) -- cgit v1.2.3