Removed references to examplep package in documentation, and

removed suggest of latex-texlive-extras in debian/control,
since we're not using examplep.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@830 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2007-07-28 19:16:58 +00:00
parent db05c0ba52
commit 1e4f05d2bd
3 changed files with 33 additions and 37 deletions

60
README
View file

@ -58,12 +58,11 @@ The wrapper script `markdown2pdf` requires
- `pdflatex`, which should be part of any [LaTeX] distribution - `pdflatex`, which should be part of any [LaTeX] distribution
- the following LaTeX packages (available from [CTAN], if they - the following LaTeX packages (available from [CTAN], if they
are not already included in your LaTeX distribution): are not already included in your LaTeX distribution):
+ `unicode` (for UTF8 characters) + `unicode`
+ `examplep` (for verbatim text in definition lists, etc.) + `fancyhdr` (if you have verbatim text in footnotes)
+ `fancyhdr` (for verbatim text in footnotes) + `graphicx` (if you use images)
+ `graphicx` (for images) + `array` (if you use tables)
+ `array` (for tables) + `ulem` (if you use strikeout text)
+ `ulem` (for strikeout text)
The wrapper script `hsmarkdown` requires only a POSIX-compliant shell. The wrapper script `hsmarkdown` requires only a POSIX-compliant shell.
@ -310,7 +309,7 @@ For further documentation, see the `pandoc(1)` man page.
It is selected automatically when the output format is `latex` or It is selected automatically when the output format is `latex` or
`context`.) `context`.)
`-m`*[url]* or `--asciimathml=`*[url]* `-m`*[url]* or `--asciimathml`*[=url]*
: will cause LaTeX formulas (between $ signs) in HTML or S5 to display : will cause LaTeX formulas (between $ signs) in HTML or S5 to display
as formulas rather than as code. The trick will not work in all as formulas rather than as code. The trick will not work in all
browsers, but it works in Firefox. Peter Jipsen's [ASCIIMathML] browsers, but it works in Firefox. Peter Jipsen's [ASCIIMathML]
@ -342,7 +341,7 @@ For further documentation, see the `pandoc(1)` man page.
after ` -- ` on the command line. So, for example, after ` -- ` on the command line. So, for example,
: pandoc --dump-args -o foo.html -s foo.txt \ : pandoc --dump-args -o foo.html -s foo.txt \
appendix.txt -- -e latin1 appendix.txt -- -e latin1
: will cause the following to be printed to STDOUT: : will cause the following to be printed to STDOUT:
@ -500,14 +499,12 @@ after the term. The definition consists of one or more block elements
(aside from the colon) indented one tab stop. (aside from the colon) indented one tab stop.
Term *with inline markup* Term *with inline markup*
: Here is the definition. It may : Here is the definition. It may contain multiple blocks.
contain multiple blocks. Here is Here is some code:
some code:
: {* my code *} : {* my code *}
: Here is the third paragraph of this : Here is the third paragraph of this definition.
definition.
If you leave space after the definition (as in the first example above), If you leave space after the definition (as in the first example above),
the definitions will be considered paragraphs. In some output formats, the definitions will be considered paragraphs. In some output formats,
@ -545,14 +542,13 @@ Pandoc's markdown allows footnotes, using the following syntax:
[^longnote]: Here's one with multiple blocks. [^longnote]: Here's one with multiple blocks.
Subsequent paragraphs are indented to show Subsequent paragraphs are indented to show that they
that they belong to the previous footnote. belong to the previous footnote.
{ some.code } { some.code }
The whole paragraph can be indented, or The whole paragraph can be indented, or just the first
just the first line. In this way, line. In this way, multi-paragraph footnotes work like
multi-paragraph footnotes work like
multi-paragraph list items. multi-paragraph list items.
This paragraph won't be part of the note, because it isn't indented. This paragraph won't be part of the note, because it isn't indented.
@ -619,20 +615,20 @@ try widening it in the markdown source.
Multiline tables allow headers and table rows to span multiple lines Multiline tables allow headers and table rows to span multiple lines
of text. Here is an example: of text. Here is an example:
---------------------------------------- -------------------------------------------------------------
Centered Left-aligned Right-aligned Centered Default Right Left
Header Header Header Header Aligned Aligned Aligned
---------- ------------- -------------- ----------- ------- --------------- -------------------------
First This is a 12.0 First row 12.0 Example of a row that
two-line row. spans multiple lines.
Second This row is 5.0 Second row 5.0 Here's another one. Note
three lines the blank line between
long. rows.
---------------------------------------- -------------------------------------------------------------
Table: Optional caption. This, too, Table: Here's the caption. It, too, may span
may span multiple lines. multiple lines.
These work like simple tables, but with the following differences: These work like simple tables, but with the following differences:

2
debian/control vendored
View file

@ -10,7 +10,7 @@ Package: pandoc
Section: text Section: text
Architecture: any Architecture: any
Depends: ${shlibs:Depends} Depends: ${shlibs:Depends}
Suggests: texlive-latex-recommended | tetex-extra, texlive-latex-extra, tidy, wget | w3m Suggests: texlive-latex-recommended | tetex-extra, tidy, wget | w3m
Description: general markup converter Description: general markup converter
Pandoc is a Haskell library for converting from one markup format to Pandoc is a Haskell library for converting from one markup format to
another, and a command-line tool that uses this library. It can read another, and a command-line tool that uses this library. It can read

View file

@ -28,10 +28,10 @@ output through `iconv`:
iconv -t utf-8 input.txt | pandoc | iconv -f utf-8 iconv -t utf-8 input.txt | pandoc | iconv -f utf-8
`markdown2pdf` assumes that the `unicode`, `examplep`, `array`, `markdown2pdf` assumes that the `unicode`, `array`, `fancyvrb`,
`fancyvrb`, `graphicx`, and `ulem` packages are in latex's search path. `graphicx`, and `ulem` packages are in latex's search path. If these
If these packages are not included in your latex setup, they can be packages are not included in your latex setup, they can be obtained from
obtained from <http://ctan.org>. <http://ctan.org>.
# OPTIONS # OPTIONS