Clarified need for -s to get character encoding info.

Closes #1724, #1725.
This commit is contained in:
John MacFarlane 2014-10-28 10:21:09 -07:00
parent 60846471a3
commit 93b82e8ea6

14
README
View file

@ -50,6 +50,15 @@ default (though output to *stdout* is disabled for the `odt`, `docx`,
pandoc -o output.html input.txt
By default, pandoc produces a document fragment, not a standalone
document with a proper header and footer. To produce a standalone
document, use the `-s` or `--standalone` flag:
pandoc -s -o output.html input.txt
For more information on how standalone documents are produced, see
[Templates](#templates), below.
Instead of a file, an absolute URI may be given. In this case
pandoc will fetch the content using HTTP:
@ -95,6 +104,11 @@ should pipe input and output through `iconv`:
iconv -t utf-8 input.txt | pandoc | iconv -f utf-8
Note that in some output formats (such as HTML, LaTeX, ConTeXt,
RTF, OPML, DocBook, and Texinfo), information about
the character encoding is included in the document header, which
will only be included if you use the `-s/--standalone` option.
Creating a PDF
--------------