pandoc-1.16.0.2~dfsg/0000755000000000000000000000000012645626061012753 5ustar rootrootpandoc-1.16.0.2~dfsg/man/0000755000000000000000000000000012645626061013526 5ustar rootrootpandoc-1.16.0.2~dfsg/man/removeLinks.hs0000644000000000000000000000023412645626061016357 0ustar rootrootimport Text.Pandoc.JSON main :: IO () main = toJSONFilter removeLinks removeLinks :: Inline -> [Inline] removeLinks (Link _ l _) = l removeLinks x = [x] pandoc-1.16.0.2~dfsg/man/capitalizeHeaders.hs0000644000000000000000000000077212645626061017511 0ustar rootrootimport Text.Pandoc.JSON import Text.Pandoc.Walk import Data.Char (toUpper) main :: IO () main = toJSONFilter capitalizeHeaders capitalizeHeaders :: Block -> Block capitalizeHeaders (Header 1 attr xs) = Header 1 attr $ walk capitalize xs capitalizeHeaders x = x capitalize :: Inline -> Inline capitalize (Str xs) = Str $ map toUpper xs capitalize x = x {- capitalizeHeaderLinks :: Inline -> Inline capitalizeHeaderLinks (Link xs t@('#':_,_)) = Link (walk capitalize xs) t capitalizeHeaderLinks x = x -} pandoc-1.16.0.2~dfsg/man/pandoc.1.template0000644000000000000000000000031712645626061016667 0ustar rootroot$if(has-tables)$ .\"t $endif$ .TH PANDOC 1 "$date$" "$version$" .SH NAME pandoc - general markup converter $body$ .PP The Pandoc source code and all documentation may be downloaded from . pandoc-1.16.0.2~dfsg/man/pandoc.10000644000000000000000000043050712645626061015065 0ustar rootroot.\"t .TH PANDOC 1 "January 12, 2016" "pandoc 1.16.0.2" .SH NAME pandoc - general markup converter .SH SYNOPSIS .PP \f[C]pandoc\f[] [\f[I]options\f[]] [\f[I]input\-file\f[]]... .SH DESCRIPTION .PP 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 Markdown, CommonMark, PHP Markdown Extra, GitHub\-Flavored Markdown, and (subsets of) Textile, reStructuredText, HTML, LaTeX, MediaWiki markup, TWiki markup, Haddock markup, OPML, Emacs Org mode, DocBook, txt2tags, EPUB, ODT and Word docx; and it can write plain text, Markdown, CommonMark, PHP Markdown Extra, GitHub\-Flavored Markdown, reStructuredText, XHTML, HTML5, LaTeX (including \f[C]beamer\f[] slide shows), ConTeXt, RTF, OPML, DocBook, OpenDocument, ODT, Word docx, GNU Texinfo, MediaWiki markup, DokuWiki markup, Haddock markup, EPUB (v2 or v3), FictionBook2, Textile, groff man pages, Emacs Org mode, AsciiDoc, InDesign ICML, and Slidy, Slideous, DZSlides, reveal.js or S5 HTML slide shows. It can also produce PDF output on systems where LaTeX, ConTeXt, or \f[C]wkhtmltopdf\f[] is installed. .PP Pandoc\[aq]s enhanced version of Markdown includes syntax for footnotes, tables, flexible ordered lists, definition lists, fenced code blocks, superscripts and subscripts, strikeout, metadata blocks, automatic tables of contents, embedded LaTeX math, citations, and Markdown inside HTML block elements. (These enhancements, described below under Pandoc\[aq]s Markdown, can be disabled using the \f[C]markdown_strict\f[] input or output format.) .PP In contrast to most existing tools for converting Markdown to HTML, which use regex substitutions, pandoc has a modular design: it consists of a set of readers, which parse text in a given format and produce a native representation of the document, and a set of writers, which convert this native representation into a target format. Thus, adding an input or output format requires only adding a reader or writer. .PP Because pandoc\[aq]s intermediate representation of a document is less expressive than many of the formats it converts between, one should not expect perfect conversions between every format and every other. Pandoc attempts to preserve the structural elements of a document, but not formatting details such as margin size. And some document elements, such as complex tables, may not fit into pandoc\[aq]s simple document model. While conversions from pandoc\[aq]s Markdown to all formats aspire to be perfect, conversions from formats more expressive than pandoc\[aq]s Markdown can be expected to be lossy. .SS Using \f[C]pandoc\f[] .PP If no \f[I]input\-file\f[] is specified, input is read from \f[I]stdin\f[]. Otherwise, the \f[I]input\-files\f[] are concatenated (with a blank line between each) and used as input. Output goes to \f[I]stdout\f[] by default (though output to \f[I]stdout\f[] is disabled for the \f[C]odt\f[], \f[C]docx\f[], \f[C]epub\f[], and \f[C]epub3\f[] output formats). For output to a file, use the \f[C]\-o\f[] option: .IP .nf \f[C] pandoc\ \-o\ output.html\ input.txt \f[] .fi .PP By default, pandoc produces a document fragment, not a standalone document with a proper header and footer. To produce a standalone document, use the \f[C]\-s\f[] or \f[C]\-\-standalone\f[] flag: .IP .nf \f[C] pandoc\ \-s\ \-o\ output.html\ input.txt \f[] .fi .PP For more information on how standalone documents are produced, see Templates, below. .PP Instead of a file, an absolute URI may be given. In this case pandoc will fetch the content using HTTP: .IP .nf \f[C] pandoc\ \-f\ html\ \-t\ markdown\ http://www.fsf.org \f[] .fi .PP If multiple input files are given, \f[C]pandoc\f[] will concatenate them all (with blank lines between them) before parsing. This feature is disabled for binary input formats such as \f[C]EPUB\f[], \f[C]odt\f[], and \f[C]docx\f[]. .PP The format of the input and output can be specified explicitly using command\-line options. The input format can be specified using the \f[C]\-r/\-\-read\f[] or \f[C]\-f/\-\-from\f[] options, the output format using the \f[C]\-w/\-\-write\f[] or \f[C]\-t/\-\-to\f[] options. Thus, to convert \f[C]hello.txt\f[] from Markdown to LaTeX, you could type: .IP .nf \f[C] pandoc\ \-f\ markdown\ \-t\ latex\ hello.txt \f[] .fi .PP To convert \f[C]hello.html\f[] from HTML to Markdown: .IP .nf \f[C] pandoc\ \-f\ html\ \-t\ markdown\ hello.html \f[] .fi .PP Supported output formats are listed below under the \f[C]\-t/\-\-to\f[] option. Supported input formats are listed below under the \f[C]\-f/\-\-from\f[] option. Note that the \f[C]rst\f[], \f[C]textile\f[], \f[C]latex\f[], and \f[C]html\f[] readers are not complete; there are some constructs that they do not parse. .PP If the input or output format is not specified explicitly, \f[C]pandoc\f[] will attempt to guess it from the extensions of the input and output filenames. Thus, for example, .IP .nf \f[C] pandoc\ \-o\ hello.tex\ hello.txt \f[] .fi .PP will convert \f[C]hello.txt\f[] from Markdown to LaTeX. If no output file is specified (so that output goes to \f[I]stdout\f[]), or if the output file\[aq]s extension is unknown, the output format will default to HTML. If no input file is specified (so that input comes from \f[I]stdin\f[]), or if the input files\[aq] extensions are unknown, the input format will be assumed to be Markdown unless explicitly specified. .PP Pandoc 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 \f[C]iconv\f[]: .IP .nf \f[C] iconv\ \-t\ utf\-8\ input.txt\ |\ pandoc\ |\ iconv\ \-f\ utf\-8 \f[] .fi .PP 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 \f[C]\-s/\-\-standalone\f[] option. .SS Creating a PDF .PP To produce a PDF, specify an output file with a \f[C]\&.pdf\f[] extension. By default, pandoc will use LaTeX to convert it to PDF: .IP .nf \f[C] pandoc\ test.txt\ \-o\ test.pdf \f[] .fi .PP Production of a PDF requires that a LaTeX engine be installed (see \f[C]\-\-latex\-engine\f[], below), and assumes that the following LaTeX packages are available: \f[C]amsfonts\f[], \f[C]amsmath\f[], \f[C]lm\f[], \f[C]ifxetex\f[], \f[C]ifluatex\f[], \f[C]eurosym\f[], \f[C]listings\f[] (if the \f[C]\-\-listings\f[] option is used), \f[C]fancyvrb\f[], \f[C]longtable\f[], \f[C]booktabs\f[], \f[C]graphicx\f[] and \f[C]grffile\f[] (if the document contains images), \f[C]hyperref\f[], \f[C]ulem\f[], \f[C]geometry\f[] (with the \f[C]geometry\f[] variable set), \f[C]setspace\f[] (with \f[C]linestretch\f[]), and \f[C]babel\f[] (with \f[C]lang\f[]). The use of \f[C]xelatex\f[] or \f[C]lualatex\f[] as the LaTeX engine requires \f[C]fontspec\f[]; \f[C]xelatex\f[] uses \f[C]mathspec\f[], \f[C]polyglossia\f[] (with \f[C]lang\f[]), \f[C]xecjk\f[], and \f[C]bidi\f[] (with the \f[C]dir\f[] variable set). The \f[C]upquote\f[] and \f[C]microtype\f[] packages are used if available, and \f[C]csquotes\f[] will be used for smart punctuation if added to the template or included in any header file. The \f[C]natbib\f[], \f[C]biblatex\f[], \f[C]bibtex\f[], and \f[C]biber\f[] packages can optionally be used for citation rendering. These are included with all recent versions of TeX Live. .PP Alternatively, pandoc can use ConTeXt or \f[C]wkhtmltopdf\f[] to create a PDF. To do this, specify an output file with a \f[C]\&.pdf\f[] extension, as before, but add \f[C]\-t\ context\f[] or \f[C]\-t\ html5\f[] to the command line. .PP PDF output can be controlled using variables for LaTeX (if LaTeX is used) and variables for ConTeXt (if ConTeXt is used). If \f[C]wkhtmltopdf\f[] is used, then the variables \f[C]margin\-left\f[], \f[C]margin\-right\f[], \f[C]margin\-top\f[], \f[C]margin\-bottom\f[], and \f[C]papersize\f[] will affect the output, as will \f[C]\-\-css\f[]. .SH OPTIONS .SS General options .TP .B \f[C]\-f\f[] \f[I]FORMAT\f[], \f[C]\-r\f[] \f[I]FORMAT\f[], \f[C]\-\-from=\f[]\f[I]FORMAT\f[], \f[C]\-\-read=\f[]\f[I]FORMAT\f[] Specify input format. \f[I]FORMAT\f[] can be \f[C]native\f[] (native Haskell), \f[C]json\f[] (JSON version of native AST), \f[C]markdown\f[] (pandoc\[aq]s extended Markdown), \f[C]markdown_strict\f[] (original unextended Markdown), \f[C]markdown_phpextra\f[] (PHP Markdown Extra), \f[C]markdown_github\f[] (GitHub\-Flavored Markdown), \f[C]commonmark\f[] (CommonMark Markdown), \f[C]textile\f[] (Textile), \f[C]rst\f[] (reStructuredText), \f[C]html\f[] (HTML), \f[C]docbook\f[] (DocBook), \f[C]t2t\f[] (txt2tags), \f[C]docx\f[] (docx), \f[C]odt\f[] (ODT), \f[C]epub\f[] (EPUB), \f[C]opml\f[] (OPML), \f[C]org\f[] (Emacs Org mode), \f[C]mediawiki\f[] (MediaWiki markup), \f[C]twiki\f[] (TWiki markup), \f[C]haddock\f[] (Haddock markup), or \f[C]latex\f[] (LaTeX). If \f[C]+lhs\f[] is appended to \f[C]markdown\f[], \f[C]rst\f[], \f[C]latex\f[], or \f[C]html\f[], the input will be treated as literate Haskell source: see Literate Haskell support, below. Markdown syntax extensions can be individually enabled or disabled by appending \f[C]+EXTENSION\f[] or \f[C]\-EXTENSION\f[] to the format name. So, for example, \f[C]markdown_strict+footnotes+definition_lists\f[] is strict Markdown with footnotes and definition lists enabled, and \f[C]markdown\-pipe_tables+hard_line_breaks\f[] is pandoc\[aq]s Markdown without pipe tables and with hard line breaks. See Pandoc\[aq]s Markdown, below, for a list of extensions and their names. .RS .RE .TP .B \f[C]\-t\f[] \f[I]FORMAT\f[], \f[C]\-w\f[] \f[I]FORMAT\f[], \f[C]\-\-to=\f[]\f[I]FORMAT\f[], \f[C]\-\-write=\f[]\f[I]FORMAT\f[] Specify output format. \f[I]FORMAT\f[] can be \f[C]native\f[] (native Haskell), \f[C]json\f[] (JSON version of native AST), \f[C]plain\f[] (plain text), \f[C]markdown\f[] (pandoc\[aq]s extended Markdown), \f[C]markdown_strict\f[] (original unextended Markdown), \f[C]markdown_phpextra\f[] (PHP Markdown Extra), \f[C]markdown_github\f[] (GitHub\-Flavored Markdown), \f[C]commonmark\f[] (CommonMark Markdown), \f[C]rst\f[] (reStructuredText), \f[C]html\f[] (XHTML), \f[C]html5\f[] (HTML5), \f[C]latex\f[] (LaTeX), \f[C]beamer\f[] (LaTeX beamer slide show), \f[C]context\f[] (ConTeXt), \f[C]man\f[] (groff man), \f[C]mediawiki\f[] (MediaWiki markup), \f[C]dokuwiki\f[] (DokuWiki markup), \f[C]textile\f[] (Textile), \f[C]org\f[] (Emacs Org mode), \f[C]texinfo\f[] (GNU Texinfo), \f[C]opml\f[] (OPML), \f[C]docbook\f[] (DocBook), \f[C]opendocument\f[] (OpenDocument), \f[C]odt\f[] (OpenOffice text document), \f[C]docx\f[] (Word docx), \f[C]haddock\f[] (Haddock markup), \f[C]rtf\f[] (rich text format), \f[C]epub\f[] (EPUB v2 book), \f[C]epub3\f[] (EPUB v3), \f[C]fb2\f[] (FictionBook2 e\-book), \f[C]asciidoc\f[] (AsciiDoc), \f[C]icml\f[] (InDesign ICML), \f[C]slidy\f[] (Slidy HTML and javascript slide show), \f[C]slideous\f[] (Slideous HTML and javascript slide show), \f[C]dzslides\f[] (DZSlides HTML5 + javascript slide show), \f[C]revealjs\f[] (reveal.js HTML5 + javascript slide show), \f[C]s5\f[] (S5 HTML and javascript slide show), or the path of a custom lua writer (see Custom writers, below). Note that \f[C]odt\f[], \f[C]epub\f[], and \f[C]epub3\f[] output will not be directed to \f[I]stdout\f[]; an output filename must be specified using the \f[C]\-o/\-\-output\f[] option. If \f[C]+lhs\f[] is appended to \f[C]markdown\f[], \f[C]rst\f[], \f[C]latex\f[], \f[C]beamer\f[], \f[C]html\f[], or \f[C]html5\f[], the output will be rendered as literate Haskell source: see Literate Haskell support, below. Markdown syntax extensions can be individually enabled or disabled by appending \f[C]+EXTENSION\f[] or \f[C]\-EXTENSION\f[] to the format name, as described above under \f[C]\-f\f[]. .RS .RE .TP .B \f[C]\-o\f[] \f[I]FILE\f[], \f[C]\-\-output=\f[]\f[I]FILE\f[] Write output to \f[I]FILE\f[] instead of \f[I]stdout\f[]. If \f[I]FILE\f[] is \f[C]\-\f[], output will go to \f[I]stdout\f[]. (Exception: if the output format is \f[C]odt\f[], \f[C]docx\f[], \f[C]epub\f[], or \f[C]epub3\f[], output to stdout is disabled.) .RS .RE .TP .B \f[C]\-\-data\-dir=\f[]\f[I]DIRECTORY\f[] Specify the user data directory to search for pandoc data files. If this option is not specified, the default user data directory will be used. This is, in Unix: .RS .IP .nf \f[C] $HOME/.pandoc \f[] .fi .PP in Windows XP: .IP .nf \f[C] C:\\Documents\ And\ Settings\\USERNAME\\Application\ Data\\pandoc \f[] .fi .PP and in Windows Vista or later: .IP .nf \f[C] C:\\Users\\USERNAME\\AppData\\Roaming\\pandoc \f[] .fi .PP You can find the default user data directory on your system by looking at the output of \f[C]pandoc\ \-\-version\f[]. A \f[C]reference.odt\f[], \f[C]reference.docx\f[], \f[C]epub.css\f[], \f[C]templates\f[], \f[C]slidy\f[], \f[C]slideous\f[], or \f[C]s5\f[] directory placed in this directory will override pandoc\[aq]s normal defaults. .RE .TP .B \f[C]\-\-bash\-completion\f[] Generate a bash completion script. To enable bash completion with pandoc, add this to your \f[C]\&.bashrc\f[]: .RS .IP .nf \f[C] \ eval\ "$(pandoc\ \-\-bash\-completion)" \f[] .fi .RE .TP .B \f[C]\-\-verbose\f[] Give verbose debugging output. Currently this only has an effect with PDF output. .RS .RE .TP .B \f[C]\-v\f[], \f[C]\-\-version\f[] Print version. .RS .RE .TP .B \f[C]\-h\f[], \f[C]\-\-help\f[] Show usage message. .RS .RE .SS Reader options .TP .B \f[C]\-R\f[], \f[C]\-\-parse\-raw\f[] Parse untranslatable HTML codes and LaTeX environments as raw HTML or LaTeX, instead of ignoring them. Affects only HTML and LaTeX input. Raw HTML can be printed in Markdown, reStructuredText, HTML, Slidy, Slideous, DZSlides, reveal.js, and S5 output; raw LaTeX can be printed in Markdown, reStructuredText, LaTeX, and ConTeXt output. The default is for the readers to omit untranslatable HTML codes and LaTeX environments. (The LaTeX reader does pass through untranslatable LaTeX \f[I]commands\f[], even if \f[C]\-R\f[] is not specified.) .RS .RE .TP .B \f[C]\-S\f[], \f[C]\-\-smart\f[] Produce typographically correct output, converting straight quotes to curly quotes, \f[C]\-\-\-\f[] to em\-dashes, \f[C]\-\-\f[] to en\-dashes, and \f[C]\&...\f[] to ellipses. Nonbreaking spaces are inserted after certain abbreviations, such as "Mr." (Note: This option is selected automatically when the output format is \f[C]latex\f[] or \f[C]context\f[], unless \f[C]\-\-no\-tex\-ligatures\f[] is used. It has no effect for \f[C]latex\f[] input.) .RS .RE .TP .B \f[C]\-\-old\-dashes\f[] Selects the pandoc <= 1.8.2.1 behavior for parsing smart dashes: \f[C]\-\f[] before a numeral is an en\-dash, and \f[C]\-\-\f[] is an em\-dash. This option is selected automatically for \f[C]textile\f[] input. .RS .RE .TP .B \f[C]\-\-base\-header\-level=\f[]\f[I]NUMBER\f[] Specify the base level for headers (defaults to 1). .RS .RE .TP .B \f[C]\-\-indented\-code\-classes=\f[]\f[I]CLASSES\f[] Specify classes to use for indented code blocks\-\-for example, \f[C]perl,numberLines\f[] or \f[C]haskell\f[]. Multiple classes may be separated by spaces or commas. .RS .RE .TP .B \f[C]\-\-default\-image\-extension=\f[]\f[I]EXTENSION\f[] Specify a default extension to use when image paths/URLs have no extension. This allows you to use the same source for formats that require different kinds of images. Currently this option only affects the Markdown and LaTeX readers. .RS .RE .TP .B \f[C]\-\-filter=\f[]\f[I]EXECUTABLE\f[] Specify an executable to be used as a filter transforming the pandoc AST after the input is parsed and before the output is written. The executable should read JSON from stdin and write JSON to stdout. The JSON must be formatted like pandoc\[aq]s own JSON input and output. The name of the output format will be passed to the filter as the first argument. Hence, .RS .IP .nf \f[C] pandoc\ \-\-filter\ ./caps.py\ \-t\ latex \f[] .fi .PP is equivalent to .IP .nf \f[C] pandoc\ \-t\ json\ |\ ./caps.py\ latex\ |\ pandoc\ \-f\ json\ \-t\ latex \f[] .fi .PP The latter form may be useful for debugging filters. .PP Filters may be written in any language. \f[C]Text.Pandoc.JSON\f[] exports \f[C]toJSONFilter\f[] to facilitate writing filters in Haskell. Those who would prefer to write filters in python can use the module \f[C]pandocfilters\f[], installable from PyPI. There are also pandoc filter libraries in PHP, perl, and javascript/node.js. .PP Note that the \f[I]EXECUTABLE\f[] will be sought in the user\[aq]s \f[C]PATH\f[], and not in the working directory, if no directory is provided. If you want to run a script in the working directory, preface the filename with \f[C]\&./\f[]. .RE .TP .B \f[C]\-M\f[] \f[I]KEY\f[][\f[C]=\f[]\f[I]VAL\f[]], \f[C]\-\-metadata=\f[]\f[I]KEY\f[][\f[C]:\f[]\f[I]VAL\f[]] Set the metadata field \f[I]KEY\f[] to the value \f[I]VAL\f[]. A value specified on the command line overrides a value specified in the document. Values will be parsed as YAML boolean or string values. If no value is specified, the value will be treated as Boolean true. Like \f[C]\-\-variable\f[], \f[C]\-\-metadata\f[] causes template variables to be set. But unlike \f[C]\-\-variable\f[], \f[C]\-\-metadata\f[] affects the metadata of the underlying document (which is accessible from filters and may be printed in some output formats). .RS .RE .TP .B \f[C]\-\-normalize\f[] Normalize the document after reading: merge adjacent \f[C]Str\f[] or \f[C]Emph\f[] elements, for example, and remove repeated \f[C]Space\f[]s. .RS .RE .TP .B \f[C]\-p\f[], \f[C]\-\-preserve\-tabs\f[] Preserve tabs instead of converting them to spaces (the default). Note that this will only affect tabs in literal code spans and code blocks; tabs in regular text will be treated as spaces. .RS .RE .TP .B \f[C]\-\-tab\-stop=\f[]\f[I]NUMBER\f[] Specify the number of spaces per tab (default is 4). .RS .RE .TP .B \f[C]\-\-track\-changes=accept\f[]|\f[C]reject\f[]|\f[C]all\f[] Specifies what to do with insertions and deletions produced by the MS Word "Track Changes" feature. \f[C]accept\f[] (the default), inserts all insertions, and ignores all deletions. \f[C]reject\f[] inserts all deletions and ignores insertions. \f[C]all\f[] puts in both insertions and deletions, wrapped in spans with \f[C]insertion\f[] and \f[C]deletion\f[] classes, respectively. The author and time of change is included. \f[C]all\f[] is useful for scripting: only accepting changes from a certain reviewer, say, or before a certain date. This option only affects the docx reader. .RS .RE .TP .B \f[C]\-\-extract\-media=\f[]\f[I]DIR\f[] Extract images and other media contained in a docx or epub container to the path \f[I]DIR\f[], creating it if necessary, and adjust the images references in the document so they point to the extracted files. This option only affects the docx and epub readers. .RS .RE .SS General writer options .TP .B \f[C]\-s\f[], \f[C]\-\-standalone\f[] Produce output with an appropriate header and footer (e.g. a standalone HTML, LaTeX, or RTF file, not a fragment). This option is set automatically for \f[C]pdf\f[], \f[C]epub\f[], \f[C]epub3\f[], \f[C]fb2\f[], \f[C]docx\f[], and \f[C]odt\f[] output. .RS .RE .TP .B \f[C]\-\-template=\f[]\f[I]FILE\f[] Use \f[I]FILE\f[] as a custom template for the generated document. Implies \f[C]\-\-standalone\f[]. See Templates, below, for a description of template syntax. If no extension is specified, an extension corresponding to the writer will be added, so that \f[C]\-\-template=special\f[] looks for \f[C]special.html\f[] for HTML output. If the template is not found, pandoc will search for it in the \f[C]templates\f[] subdirectory of the user data directory (see \f[C]\-\-data\-dir\f[]). If this option is not used, a default template appropriate for the output format will be used (see \f[C]\-D/\-\-print\-default\-template\f[]). .RS .RE .TP .B \f[C]\-V\f[] \f[I]KEY\f[][\f[C]=\f[]\f[I]VAL\f[]], \f[C]\-\-variable=\f[]\f[I]KEY\f[][\f[C]:\f[]\f[I]VAL\f[]] Set the template variable \f[I]KEY\f[] to the value \f[I]VAL\f[] when rendering the document in standalone mode. This is generally only useful when the \f[C]\-\-template\f[] option is used to specify a custom template, since pandoc automatically sets the variables used in the default templates. If no \f[I]VAL\f[] is specified, the key will be given the value \f[C]true\f[]. .RS .RE .TP .B \f[C]\-D\f[] \f[I]FORMAT\f[], \f[C]\-\-print\-default\-template=\f[]\f[I]FORMAT\f[] Print the system default template for an output \f[I]FORMAT\f[]. (See \f[C]\-t\f[] for a list of possible \f[I]FORMAT\f[]s.) Templates in the user data directory are ignored. .RS .RE .TP .B \f[C]\-\-print\-default\-data\-file=\f[]\f[I]FILE\f[] Print a system default data file. Files in the user data directory are ignored. .RS .RE .TP .B \f[C]\-\-dpi\f[]=\f[I]NUMBER\f[] Specify the dpi (dots per inch) value for conversion from pixels to inch/centimeters and vice versa. The default is 96dpi. Technically, the correct term would be ppi (pixels per inch). .RS .RE .TP .B \f[C]\-\-wrap=[auto|none|preserve]\f[] Determine how text is wrapped in the output (the source code, not the rendered version). With \f[C]auto\f[] (the default), pandoc will attempt to wrap lines to the column width specified by \f[C]\-\-columns\f[] (default 80). With \f[C]none\f[], pandoc will not wrap lines at all. With \f[C]preserve\f[], pandoc will attempt to preserve the wrapping from the source document (that is, where there are nonsemantic newlines in the source, there will be nonsemantic newlines in the output as well). .RS .RE .TP .B \f[C]\-\-no\-wrap\f[] Deprecated synonym for \f[C]\-\-wrap=none\f[]. .RS .RE .TP .B \f[C]\-\-columns=\f[]\f[I]NUMBER\f[] Specify length of lines in characters (for text wrapping). This affects only the generated source code, not the layout on the rendered page. .RS .RE .TP .B \f[C]\-\-toc\f[], \f[C]\-\-table\-of\-contents\f[] Include an automatically generated table of contents (or, in the case of \f[C]latex\f[], \f[C]context\f[], and \f[C]rst\f[], an instruction to create one) in the output document. This option has no effect on \f[C]man\f[], \f[C]docbook\f[], \f[C]slidy\f[], \f[C]slideous\f[], \f[C]s5\f[], \f[C]docx\f[], or \f[C]odt\f[] output. .RS .RE .TP .B \f[C]\-\-toc\-depth=\f[]\f[I]NUMBER\f[] Specify the number of section levels to include in the table of contents. The default is 3 (which means that level 1, 2, and 3 headers will be listed in the contents). .RS .RE .TP .B \f[C]\-\-no\-highlight\f[] Disables syntax highlighting for code blocks and inlines, even when a language attribute is given. .RS .RE .TP .B \f[C]\-\-highlight\-style=\f[]\f[I]STYLE\f[] Specifies the coloring style to be used in highlighted source code. Options are \f[C]pygments\f[] (the default), \f[C]kate\f[], \f[C]monochrome\f[], \f[C]espresso\f[], \f[C]zenburn\f[], \f[C]haddock\f[], and \f[C]tango\f[]. For more information on syntax highlighting in pandoc, see Syntax highlighting, below. .RS .RE .TP .B \f[C]\-H\f[] \f[I]FILE\f[], \f[C]\-\-include\-in\-header=\f[]\f[I]FILE\f[] Include contents of \f[I]FILE\f[], verbatim, at the end of the header. This can be used, for example, to include special CSS or javascript in HTML documents. This option can be used repeatedly to include multiple files in the header. They will be included in the order specified. Implies \f[C]\-\-standalone\f[]. .RS .RE .TP .B \f[C]\-B\f[] \f[I]FILE\f[], \f[C]\-\-include\-before\-body=\f[]\f[I]FILE\f[] Include contents of \f[I]FILE\f[], verbatim, at the beginning of the document body (e.g. after the \f[C]\f[] tag in HTML, or the \f[C]\\begin{document}\f[] command in LaTeX). This can be used to include navigation bars or banners in HTML documents. This option can be used repeatedly to include multiple files. They will be included in the order specified. Implies \f[C]\-\-standalone\f[]. .RS .RE .TP .B \f[C]\-A\f[] \f[I]FILE\f[], \f[C]\-\-include\-after\-body=\f[]\f[I]FILE\f[] Include contents of \f[I]FILE\f[], verbatim, at the end of the document body (before the \f[C]\f[] tag in HTML, or the \f[C]\\end{document}\f[] command in LaTeX). This option can be be used repeatedly to include multiple files. They will be included in the order specified. Implies \f[C]\-\-standalone\f[]. .RS .RE .SS Options affecting specific writers .TP .B \f[C]\-\-self\-contained\f[] Produce a standalone HTML file with no external dependencies, using \f[C]data:\f[] URIs to incorporate the contents of linked scripts, stylesheets, images, and videos. The resulting file should be "self\-contained," in the sense that it needs no external files and no net access to be displayed properly by a browser. This option works only with HTML output formats, including \f[C]html\f[], \f[C]html5\f[], \f[C]html+lhs\f[], \f[C]html5+lhs\f[], \f[C]s5\f[], \f[C]slidy\f[], \f[C]slideous\f[], \f[C]dzslides\f[], and \f[C]revealjs\f[]. Scripts, images, and stylesheets at absolute URLs will be downloaded; those at relative URLs will be sought relative to the working directory (if the first source file is local) or relative to the base URL (if the first source file is remote). Limitation: resources that are loaded dynamically through JavaScript cannot be incorporated; as a result, \f[C]\-\-self\-contained\f[] does not work with \f[C]\-\-mathjax\f[], and some advanced features (e.g. zoom or speaker notes) may not work in an offline "self\-contained" \f[C]reveal.js\f[] slide show. .RS .RE .TP .B \f[C]\-\-html\-q\-tags\f[] Use \f[C]\f[] tags for quotes in HTML. .RS .RE .TP .B \f[C]\-\-ascii\f[] Use only ascii characters in output. Currently supported only for HTML output (which uses numerical entities instead of UTF\-8 when this option is selected). .RS .RE .TP .B \f[C]\-\-reference\-links\f[] Use reference\-style links, rather than inline links, in writing Markdown or reStructuredText. By default inline links are used. .RS .RE .TP .B \f[C]\-\-atx\-headers\f[] Use ATX\-style headers in Markdown and asciidoc output. The default is to use setext\-style headers for levels 1\-2, and then ATX headers. .RS .RE .TP .B \f[C]\-\-chapters\f[] Treat top\-level headers as chapters in LaTeX, ConTeXt, and DocBook output. When the LaTeX document class is set to \f[C]report\f[], \f[C]book\f[], or \f[C]memoir\f[], this option is implied. If \f[C]beamer\f[] is the output format, top\-level headers will become \f[C]\\part{..}\f[]. .RS .RE .TP .B \f[C]\-N\f[], \f[C]\-\-number\-sections\f[] Number section headings in LaTeX, ConTeXt, HTML, or EPUB output. By default, sections are not numbered. Sections with class \f[C]unnumbered\f[] will never be numbered, even if \f[C]\-\-number\-sections\f[] is specified. .RS .RE .TP .B \f[C]\-\-number\-offset=\f[]\f[I]NUMBER\f[][\f[C],\f[]\f[I]NUMBER\f[]\f[C],\f[]\f[I]\&...\f[]] Offset for section headings in HTML output (ignored in other output formats). The first number is added to the section number for top\-level headers, the second for second\-level headers, and so on. So, for example, if you want the first top\-level header in your document to be numbered "6", specify \f[C]\-\-number\-offset=5\f[]. If your document starts with a level\-2 header which you want to be numbered "1.5", specify \f[C]\-\-number\-offset=1,4\f[]. Offsets are 0 by default. Implies \f[C]\-\-number\-sections\f[]. .RS .RE .TP .B \f[C]\-\-no\-tex\-ligatures\f[] Do not use the TeX ligatures for quotation marks, apostrophes, and dashes (\f[C]`...\[aq]\f[], \f[C]``..\[aq]\[aq]\f[], \f[C]\-\-\f[], \f[C]\-\-\-\f[]) when writing or reading LaTeX or ConTeXt. In reading LaTeX, parse the characters \f[C]`\f[], \f[C]\[aq]\f[], and \f[C]\-\f[] literally, rather than parsing ligatures for quotation marks and dashes. In writing LaTeX or ConTeXt, print unicode quotation mark and dash characters literally, rather than converting them to the standard ASCII TeX ligatures. Note: normally \f[C]\-\-smart\f[] is selected automatically for LaTeX and ConTeXt output, but it must be specified explicitly if \f[C]\-\-no\-tex\-ligatures\f[] is selected. If you use literal curly quotes, dashes, and ellipses in your source, then you may want to use \f[C]\-\-no\-tex\-ligatures\f[] without \f[C]\-\-smart\f[]. .RS .RE .TP .B \f[C]\-\-listings\f[] Use the \f[C]listings\f[] package for LaTeX code blocks .RS .RE .TP .B \f[C]\-i\f[], \f[C]\-\-incremental\f[] Make list items in slide shows display incrementally (one by one). The default is for lists to be displayed all at once. .RS .RE .TP .B \f[C]\-\-slide\-level=\f[]\f[I]NUMBER\f[] Specifies that headers with the specified level create slides (for \f[C]beamer\f[], \f[C]s5\f[], \f[C]slidy\f[], \f[C]slideous\f[], \f[C]dzslides\f[]). Headers above this level in the hierarchy are used to divide the slide show into sections; headers below this level create subheads within a slide. The default is to set the slide level based on the contents of the document; see Structuring the slide show. .RS .RE .TP .B \f[C]\-\-section\-divs\f[] Wrap sections in \f[C]
\f[] tags (or \f[C]
\f[] tags in HTML5), and attach identifiers to the enclosing \f[C]
\f[] (or \f[C]
\f[]) rather than the header itself. See Header identifiers, below. .RS .RE .TP .B \f[C]\-\-email\-obfuscation=none\f[]|\f[C]javascript\f[]|\f[C]references\f[] Specify a method for obfuscating \f[C]mailto:\f[] links in HTML documents. \f[C]none\f[] leaves \f[C]mailto:\f[] links as they are. \f[C]javascript\f[] obfuscates them using javascript. \f[C]references\f[] obfuscates them by printing their letters as decimal or hexadecimal character references. The default is \f[C]javascript\f[]. .RS .RE .TP .B \f[C]\-\-id\-prefix=\f[]\f[I]STRING\f[] Specify a prefix to be added to all automatically generated identifiers in HTML and DocBook output, and to footnote numbers in Markdown output. This is useful for preventing duplicate identifiers when generating fragments to be included in other pages. .RS .RE .TP .B \f[C]\-T\f[] \f[I]STRING\f[], \f[C]\-\-title\-prefix=\f[]\f[I]STRING\f[] Specify \f[I]STRING\f[] as a prefix at the beginning of the title that appears in the HTML header (but not in the title as it appears at the beginning of the HTML body). Implies \f[C]\-\-standalone\f[]. .RS .RE .TP .B \f[C]\-c\f[] \f[I]URL\f[], \f[C]\-\-css=\f[]\f[I]URL\f[] Link to a CSS style sheet. This option can be be used repeatedly to include multiple files. They will be included in the order specified. .RS .RE .TP .B \f[C]\-\-reference\-odt=\f[]\f[I]FILE\f[] Use the specified file as a style reference in producing an ODT. For best results, the reference ODT should be a modified version of an ODT produced using pandoc. The contents of the reference ODT are ignored, but its stylesheets are used in the new ODT. If no reference ODT is specified on the command line, pandoc will look for a file \f[C]reference.odt\f[] in the user data directory (see \f[C]\-\-data\-dir\f[]). If this is not found either, sensible defaults will be used. .RS .RE .TP .B \f[C]\-\-reference\-docx=\f[]\f[I]FILE\f[] Use the specified file as a style reference in producing a docx file. For best results, the reference docx should be a modified version of a docx file produced using pandoc. The contents of the reference docx are ignored, but its stylesheets and document properties (including margins, page size, header, and footer) are used in the new docx. If no reference docx is specified on the command line, pandoc will look for a file \f[C]reference.docx\f[] in the user data directory (see \f[C]\-\-data\-dir\f[]). If this is not found either, sensible defaults will be used. The following styles are used by pandoc: [paragraph] Normal, Body Text, First Paragraph, Compact, Title, Subtitle, Author, Date, Abstract, Bibliography, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Block Text, Footnote Text, Definition Term, Definition, Caption, Table Caption, Image Caption, Figure, Figure With Caption, TOC Heading; [character] Default Paragraph Font, Body Text Char, Verbatim Char, Footnote Reference, Hyperlink; [table] Normal Table. .RS .RE .TP .B \f[C]\-\-epub\-stylesheet=\f[]\f[I]FILE\f[] Use the specified CSS file to style the EPUB. If no stylesheet is specified, pandoc will look for a file \f[C]epub.css\f[] in the user data directory (see \f[C]\-\-data\-dir\f[]). If it is not found there, sensible defaults will be used. .RS .RE .TP .B \f[C]\-\-epub\-cover\-image=\f[]\f[I]FILE\f[] Use the specified image as the EPUB cover. It is recommended that the image be less than 1000px in width and height. Note that in a Markdown source document you can also specify \f[C]cover\-image\f[] in a YAML metadata block (see EPUB Metadata, below). .RS .RE .TP .B \f[C]\-\-epub\-metadata=\f[]\f[I]FILE\f[] Look in the specified XML file for metadata for the EPUB. The file should contain a series of Dublin Core elements. For example: .RS .IP .nf \f[C] \ Creative\ Commons \ es\-AR \f[] .fi .PP By default, pandoc will include the following metadata elements: \f[C]\f[] (from the document title), \f[C]\f[] (from the document authors), \f[C]\f[] (from the document date, which should be in ISO 8601 format), \f[C]\f[] (from the \f[C]lang\f[] variable, or, if is not set, the locale), and \f[C]\f[] (a randomly generated UUID). Any of these may be overridden by elements in the metadata file. .PP Note: if the source document is Markdown, a YAML metadata block in the document can be used instead. See below under EPUB Metadata. .RE .TP .B \f[C]\-\-epub\-embed\-font=\f[]\f[I]FILE\f[] Embed the specified font in the EPUB. This option can be repeated to embed multiple fonts. Wildcards can also be used: for example, \f[C]DejaVuSans\-*.ttf\f[]. However, if you use wildcards on the command line, be sure to escape them or put the whole filename in single quotes, to prevent them from being interpreted by the shell. To use the embedded fonts, you will need to add declarations like the following to your CSS (see \f[C]\-\-epub\-stylesheet\f[]): .RS .IP .nf \f[C] \@font\-face\ { font\-family:\ DejaVuSans; font\-style:\ normal; font\-weight:\ normal; src:url("DejaVuSans\-Regular.ttf"); } \@font\-face\ { font\-family:\ DejaVuSans; font\-style:\ normal; font\-weight:\ bold; src:url("DejaVuSans\-Bold.ttf"); } \@font\-face\ { font\-family:\ DejaVuSans; font\-style:\ italic; font\-weight:\ normal; src:url("DejaVuSans\-Oblique.ttf"); } \@font\-face\ { font\-family:\ DejaVuSans; font\-style:\ italic; font\-weight:\ bold; src:url("DejaVuSans\-BoldOblique.ttf"); } body\ {\ font\-family:\ "DejaVuSans";\ } \f[] .fi .RE .TP .B \f[C]\-\-epub\-chapter\-level=\f[]\f[I]NUMBER\f[] Specify the header level at which to split the EPUB into separate "chapter" files. The default is to split into chapters at level 1 headers. This option only affects the internal composition of the EPUB, not the way chapters and sections are displayed to users. Some readers may be slow if the chapter files are too large, so for large documents with few level 1 headers, one might want to use a chapter level of 2 or 3. .RS .RE .TP .B \f[C]\-\-latex\-engine=pdflatex\f[]|\f[C]lualatex\f[]|\f[C]xelatex\f[] Use the specified LaTeX engine when producing PDF output. The default is \f[C]pdflatex\f[]. If the engine is not in your PATH, the full path of the engine may be specified here. .RS .RE .TP .B \f[C]\-\-latex\-engine\-opt=\f[]\f[I]STRING\f[] Use the given string as a command\-line argument to the \f[C]latex\-engine\f[]. If used multiple times, the arguments are provided with spaces between them. Note that no check for duplicate options is done. .RS .RE .SS Citation rendering .TP .B \f[C]\-\-bibliography=\f[]\f[I]FILE\f[] Set the \f[C]bibliography\f[] field in the document\[aq]s metadata to \f[I]FILE\f[], overriding any value set in the metadata, and process citations using \f[C]pandoc\-citeproc\f[]. (This is equivalent to \f[C]\-\-metadata\ bibliography=FILE\ \-\-filter\ pandoc\-citeproc\f[].) If \f[C]\-\-natbib\f[] or \f[C]\-\-biblatex\f[] is also supplied, \f[C]pandoc\-citeproc\f[] is not used, making this equivalent to \f[C]\-\-metadata\ bibliography=FILE\f[]. If you supply this argument multiple times, each \f[I]FILE\f[] will be added to bibliography. .RS .RE .TP .B \f[C]\-\-csl=\f[]\f[I]FILE\f[] Set the \f[C]csl\f[] field in the document\[aq]s metadata to \f[I]FILE\f[], overriding any value set in the metadata. (This is equivalent to \f[C]\-\-metadata\ csl=FILE\f[].) This option is only relevant with \f[C]pandoc\-citeproc\f[]. .RS .RE .TP .B \f[C]\-\-citation\-abbreviations=\f[]\f[I]FILE\f[] Set the \f[C]citation\-abbreviations\f[] field in the document\[aq]s metadata to \f[I]FILE\f[], overriding any value set in the metadata. (This is equivalent to \f[C]\-\-metadata\ citation\-abbreviations=FILE\f[].) This option is only relevant with \f[C]pandoc\-citeproc\f[]. .RS .RE .TP .B \f[C]\-\-natbib\f[] Use \f[C]natbib\f[] for citations in LaTeX output. This option is not for use with the \f[C]pandoc\-citeproc\f[] filter or with PDF output. It is intended for use in producing a LaTeX file that can be processed with \f[C]bibtex\f[]. .RS .RE .TP .B \f[C]\-\-biblatex\f[] Use \f[C]biblatex\f[] for citations in LaTeX output. This option is not for use with the \f[C]pandoc\-citeproc\f[] filter or with PDF output. It is intended for use in producing a LaTeX file that can be processed with \f[C]bibtex\f[] or \f[C]biber\f[]. .RS .RE .SS Math rendering in HTML .TP .B \f[C]\-m\f[] [\f[I]URL\f[]], \f[C]\-\-latexmathml\f[][\f[C]=\f[]\f[I]URL\f[]] Use the LaTeXMathML script to display embedded TeX math in HTML output. To insert a link to a local copy of the \f[C]LaTeXMathML.js\f[] script, provide a \f[I]URL\f[]. If no \f[I]URL\f[] is provided, the contents of the script will be inserted directly into the HTML header, preserving portability at the price of efficiency. If you plan to use math on several pages, it is much better to link to a copy of the script, so it can be cached. .RS .RE .TP .B \f[C]\-\-mathml\f[][\f[C]=\f[]\f[I]URL\f[]] Convert TeX math to MathML (in \f[C]docbook\f[] as well as \f[C]html\f[] and \f[C]html5\f[]). In standalone \f[C]html\f[] output, a small javascript (or a link to such a script if a \f[I]URL\f[] is supplied) will be inserted that allows the MathML to be viewed on some browsers. .RS .RE .TP .B \f[C]\-\-jsmath\f[][\f[C]=\f[]\f[I]URL\f[]] Use jsMath to display embedded TeX math in HTML output. The \f[I]URL\f[] should point to the jsMath load script (e.g. \f[C]jsMath/easy/load.js\f[]); if provided, it will be linked to in the header of standalone HTML documents. If a \f[I]URL\f[] is not provided, no link to the jsMath load script will be inserted; it is then up to the author to provide such a link in the HTML template. .RS .RE .TP .B \f[C]\-\-mathjax\f[][\f[C]=\f[]\f[I]URL\f[]] Use MathJax to display embedded TeX math in HTML output. The \f[I]URL\f[] should point to the \f[C]MathJax.js\f[] load script. If a \f[I]URL\f[] is not provided, a link to the MathJax CDN will be inserted. .RS .RE .TP .B \f[C]\-\-gladtex\f[] Enclose TeX math in \f[C]\f[] tags in HTML output. These can then be processed by gladTeX to produce links to images of the typeset formulas. .RS .RE .TP .B \f[C]\-\-mimetex\f[][\f[C]=\f[]\f[I]URL\f[]] Render TeX math using the mimeTeX CGI script. If \f[I]URL\f[] is not specified, it is assumed that the script is at \f[C]/cgi\-bin/mimetex.cgi\f[]. .RS .RE .TP .B \f[C]\-\-webtex\f[][\f[C]=\f[]\f[I]URL\f[]] Render TeX formulas using an external script that converts TeX formulas to images. The formula will be concatenated with the URL provided. If \f[I]URL\f[] is not specified, the Google Chart API will be used. .RS .RE .TP .B \f[C]\-\-katex\f[][\f[C]=\f[]\f[I]URL\f[]] Use KaTeX to display embedded TeX math in HTML output. The \f[I]URL\f[] should point to the \f[C]katex.js\f[] load script. If a \f[I]URL\f[] is not provided, a link to the KaTeX CDN will be inserted. .RS .RE .TP .B \f[C]\-\-katex\-stylesheet=\f[]\f[I]URL\f[] The \f[I]URL\f[] should point to the \f[C]katex.css\f[] stylesheet. If this option is not specified, a link to the KaTeX CDN will be inserted. Note that this option does not imply \f[C]\-\-katex\f[]. .RS .RE .SS Options for wrapper scripts .TP .B \f[C]\-\-dump\-args\f[] Print information about command\-line arguments to \f[I]stdout\f[], then exit. This option is intended primarily for use in wrapper scripts. The first line of output contains the name of the output file specified with the \f[C]\-o\f[] option, or \f[C]\-\f[] (for \f[I]stdout\f[]) if no output file was specified. The remaining lines contain the command\-line arguments, one per line, in the order they appear. These do not include regular pandoc options and their arguments, but do include any options appearing after a \f[C]\-\-\f[] separator at the end of the line. .RS .RE .TP .B \f[C]\-\-ignore\-args\f[] Ignore command\-line arguments (for use in wrapper scripts). Regular pandoc options are not ignored. Thus, for example, .RS .IP .nf \f[C] pandoc\ \-\-ignore\-args\ \-o\ foo.html\ \-s\ foo.txt\ \-\-\ \-e\ latin1 \f[] .fi .PP is equivalent to .IP .nf \f[C] pandoc\ \-o\ foo.html\ \-s \f[] .fi .RE .SH TEMPLATES .PP When the \f[C]\-s/\-\-standalone\f[] option is used, pandoc uses a template to add header and footer material that is needed for a self\-standing document. To see the default template that is used, just type .IP .nf \f[C] pandoc\ \-D\ *FORMAT* \f[] .fi .PP where \f[I]FORMAT\f[] is the name of the output format. A custom template can be specified using the \f[C]\-\-template\f[] option. You can also override the system default templates for a given output format \f[I]FORMAT\f[] by putting a file \f[C]templates/default.*FORMAT*\f[] in the user data directory (see \f[C]\-\-data\-dir\f[], above). \f[I]Exceptions:\f[] For \f[C]odt\f[] output, customize the \f[C]default.opendocument\f[] template. For \f[C]pdf\f[] output, customize the \f[C]default.latex\f[] template. .PP Templates contain \f[I]variables\f[], which allow for the inclusion of arbitrary information at any point in the file. Variables may be set within the document using YAML metadata blocks. They may also be set at the command line using the \f[C]\-V/\-\-variable\f[] option: variables set in this way override metadata fields with the same name. .SS Variables set by pandoc .PP Some variables are set automatically by pandoc. These vary somewhat depending on the output format, but include metadata fields as well as the following: .TP .B \f[C]title\f[], \f[C]author\f[], \f[C]date\f[] allow identification of basic aspects of the document. Included in PDF metadata through LaTeX and ConTeXt. These can be set through a pandoc title block, which allows for multiple authors, or through a YAML metadata block: .RS .IP .nf \f[C] \-\-\- author: \-\ Aristotle \-\ Peter\ Abelard \&... \f[] .fi .RE .TP .B \f[C]subtitle\f[] document subtitle, included in HTML, EPUB, LaTeX, ConTeXt, and Word docx; renders in LaTeX only when using a document class that supports \f[C]\\subtitle\f[], such as \f[C]beamer\f[] or the KOMA\-Script series (\f[C]scrartcl\f[], \f[C]scrreprt\f[], \f[C]scrbook\f[]). .RS .RE .TP .B \f[C]abstract\f[] document summary, included in LaTeX, ConTeXt, AsciiDoc, and Word docx .RS .RE .TP .B \f[C]keywords\f[] list of keywords to be included in HTML, PDF, and AsciiDoc metadata; may be repeated as for \f[C]author\f[], above .RS .RE .TP .B \f[C]header\-includes\f[] contents specified by \f[C]\-H/\-\-include\-in\-header\f[] (may have multiple values) .RS .RE .TP .B \f[C]toc\f[] non\-null value if \f[C]\-\-toc/\-\-table\-of\-contents\f[] was specified .RS .RE .TP .B \f[C]toc\-title\f[] title of table of contents (works only with EPUB and docx) .RS .RE .TP .B \f[C]include\-before\f[] contents specified by \f[C]\-B/\-\-include\-before\-body\f[] (may have multiple values) .RS .RE .TP .B \f[C]include\-after\f[] contents specified by \f[C]\-A/\-\-include\-after\-body\f[] (may have multiple values) .RS .RE .TP .B \f[C]body\f[] body of document .RS .RE .TP .B \f[C]meta\-json\f[] JSON representation of all of the document\[aq]s metadata .RS .RE .SS Language variables .TP .B \f[C]lang\f[] identifies the main language of the document, using a code according to BCP 47 (e.g. \f[C]en\f[] or \f[C]en\-GB\f[]). For some output formats, pandoc will convert it to an appropriate format stored in the additional variables \f[C]babel\-lang\f[], \f[C]polyglossia\-lang\f[] (LaTeX) and \f[C]context\-lang\f[] (ConTeXt). .RS .PP Native pandoc \f[C]span\f[]s and \f[C]div\f[]s with the lang attribute (value in BCP 47) can be used to switch the language in that range. .RE .TP .B \f[C]otherlangs\f[] a list of other languages used in the document in the YAML metadata, according to BCP 47. For example: \f[C]otherlangs:\ [en\-GB,\ fr]\f[]. This is automatically generated from the \f[C]lang\f[] attributes in all \f[C]span\f[]s and \f[C]div\f[]s but can be overriden. Currently only used by LaTeX through the generated \f[C]babel\-otherlangs\f[] and \f[C]polyglossia\-otherlangs\f[] variables. The LaTeX writer outputs polyglossia commands in the text but the \f[C]babel\-newcommands\f[] variable contains mappings for them to the corresponding babel. .RS .RE .TP .B \f[C]dir\f[] the base direction of the document, either \f[C]rtl\f[] (right\-to\-left) or \f[C]ltr\f[] (left\-to\-right). .RS .PP For bidirectional documents, native pandoc \f[C]span\f[]s and \f[C]div\f[]s with the \f[C]dir\f[] attribute (value \f[C]rtl\f[] or \f[C]ltr\f[]) can be used to override the base direction in some output formats. This may not always be necessary if the final renderer (e.g. the browser, when generating HTML) supports the Unicode Bidirectional Algorithm. .PP When using LaTeX for bidirectional documents, only the \f[C]xelatex\f[] engine is fully supported (use \f[C]\-\-latex\-engine=xelatex\f[]). .RE .SS Variables for slides .PP Variables are available for producing slide shows with pandoc, including all reveal.js configuration options. .TP .B \f[C]slidy\-url\f[] base URL for Slidy documents (defaults to \f[C]http://www.w3.org/Talks/Tools/Slidy2\f[]) .RS .RE .TP .B \f[C]slideous\-url\f[] base URL for Slideous documents (defaults to \f[C]slideous\f[]) .RS .RE .TP .B \f[C]s5\-url\f[] base URL for S5 documents (defaults to \f[C]s5/default\f[]) .RS .RE .TP .B \f[C]revealjs\-url\f[] base URL for reveal.js documents (defaults to \f[C]reveal.js\f[]) .RS .RE .TP .B \f[C]theme\f[], \f[C]colortheme\f[], \f[C]fonttheme\f[], \f[C]innertheme\f[], \f[C]outertheme\f[] themes for LaTeX \f[C]beamer\f[] documents .RS .RE .TP .B \f[C]navigation\f[] controls navigation symbols in \f[C]beamer\f[] documents (default is \f[C]empty\f[] for no navigation symbols; other valid values are \f[C]frame\f[], \f[C]vertical\f[], and \f[C]horizontal\f[]). .RS .RE .TP .B \f[C]section\-titles\f[] enables on "title pages" for new sections in \f[C]beamer\f[] documents (default = true). .RS .RE .SS Variables for LaTeX .PP LaTeX variables are used when creating a PDF. .TP .B \f[C]papersize\f[] paper size, e.g. \f[C]letter\f[], \f[C]A4\f[] .RS .RE .TP .B \f[C]fontsize\f[] font size for body text (e.g. \f[C]10pt\f[], \f[C]12pt\f[]) .RS .RE .TP .B \f[C]documentclass\f[] document class, e.g. \f[C]article\f[], \f[C]report\f[], \f[C]book\f[], \f[C]memoir\f[] .RS .RE .TP .B \f[C]classoption\f[] option for document class, e.g. \f[C]oneside\f[]; may be repeated for multiple options .RS .RE .TP .B \f[C]geometry\f[] option for \f[C]geometry\f[] package, e.g. \f[C]margin=1in\f[]; may be repeated for multiple options .RS .RE .TP .B \f[C]margin\-left\f[], \f[C]margin\-right\f[], \f[C]margin\-top\f[], \f[C]margin\-bottom\f[] sets margins, if \f[C]geometry\f[] is not used (otherwise \f[C]geometry\f[] overrides these) .RS .RE .TP .B \f[C]linestretch\f[] adjusts line spacing using the \f[C]setspace\f[] package, e.g. \f[C]1.25\f[], \f[C]1.5\f[] .RS .RE .TP .B \f[C]fontfamily\f[] font package for use with \f[C]pdflatex\f[]: TeX Live includes many options, documented in the LaTeX Font Catalogue. The default is Latin Modern. .RS .RE .TP .B \f[C]fontfamilyoptions\f[] options for package used as \f[C]fontfamily\f[]: e.g. \f[C]osf,sc\f[] with \f[C]fontfamily\f[] set to \f[C]mathpazo\f[] provides Palatino with old\-style figures and true small caps; may be repeated for multiple options .RS .RE .TP .B \f[C]mainfont\f[], \f[C]sansfont\f[], \f[C]monofont\f[], \f[C]mathfont\f[], \f[C]CJKmainfont\f[] font families for use with \f[C]xelatex\f[] or \f[C]lualatex\f[]: take the name of any system font, using the \f[C]fontspec\f[] package. Note that if \f[C]CJKmainfont\f[] is used, the \f[C]xecjk\f[] package must be available. .RS .RE .TP .B \f[C]mainfontoptions\f[], \f[C]sansfontoptions\f[], \f[C]monofontoptions\f[], \f[C]mathfontoptions\f[], \f[C]CJKoptions\f[] options to use with \f[C]mainfont\f[], \f[C]sansfont\f[], \f[C]monofont\f[], \f[C]mathfont\f[], \f[C]CJKmainfont\f[] in \f[C]xelatex\f[] and \f[C]lualatex\f[]. Allow for any choices available through \f[C]fontspec\f[], such as the OpenType features \f[C]Numbers=OldStyle,Numbers=Proportional\f[]. May be repeated for multiple options. .RS .RE .TP .B \f[C]fontenc\f[] allows font encoding to be specified through \f[C]fontenc\f[] package (with \f[C]pdflatex\f[]); default is \f[C]T1\f[] (see guide to LaTeX font encodings) .RS .RE .TP .B \f[C]colorlinks\f[] add color to link text; automatically enabled if any of \f[C]linkcolor\f[], \f[C]citecolor\f[], \f[C]urlcolor\f[], or \f[C]toccolor\f[] are set .RS .RE .TP .B \f[C]linkcolor\f[], \f[C]citecolor\f[], \f[C]urlcolor\f[], \f[C]toccolor\f[] color for internal links, citation links, external links, and links in table of contents: uses any of the predefined LaTeX colors .RS .RE .TP .B \f[C]links\-as\-notes\f[] causes links to be printed as footnotes .RS .RE .TP .B \f[C]indent\f[] uses document class settings for indentation (the default LaTeX template otherwise removes indentation and adds space between paragraphs) .RS .RE .TP .B \f[C]subparagraph\f[] disables default behavior of LaTeX template that redefines (sub)paragraphs as sections, changing the appearance of nested headings in some classes .RS .RE .TP .B \f[C]thanks\f[] specifies contents of acknowledgments footnote after document title. .RS .RE .TP .B \f[C]toc\f[] include table of contents (can also be set using \f[C]\-\-toc/\-\-table\-of\-contents\f[]) .RS .RE .TP .B \f[C]toc\-depth\f[] level of section to include in table of contents .RS .RE .TP .B \f[C]lof\f[], \f[C]lot\f[] include list of figures, list of tables .RS .RE .TP .B \f[C]bibliography\f[] bibliography to use for resolving references .RS .RE .TP .B \f[C]biblio\-style\f[] bibliography style, when used with \f[C]\-\-natbib\f[] and \f[C]\-\-biblatex\f[]. .RS .RE .TP .B \f[C]biblatexoptions\f[] list of options for biblatex. .RS .RE .SS Variables for ConTeXt .TP .B \f[C]papersize\f[] paper size, e.g. \f[C]letter\f[], \f[C]A4\f[], \f[C]landscape\f[] (see ConTeXt Paper Setup); may be repeated for multiple options .RS .RE .TP .B \f[C]layout\f[] options for page margins and text arrangement (see ConTeXt Layout); may be repeated for multiple options .RS .RE .TP .B \f[C]margin\-left\f[], \f[C]margin\-right\f[], \f[C]margin\-top\f[], \f[C]margin\-bottom\f[] sets margins, if \f[C]layout\f[] is not used (otherwise \f[C]layout\f[] overrides these) .RS .RE .TP .B \f[C]fontsize\f[] font size for body text (e.g. \f[C]10pt\f[], \f[C]12pt\f[]) .RS .RE .TP .B \f[C]mainfont\f[], \f[C]sansfont\f[], \f[C]monofont\f[], \f[C]mathfont\f[] font families: take the name of any system font (see ConTeXt Font Switching) .RS .RE .TP .B \f[C]linkcolor\f[], \f[C]contrastcolor\f[] color for links outside and inside a page, e.g. \f[C]red\f[], \f[C]blue\f[] (see ConTeXt Color) .RS .RE .TP .B \f[C]linkstyle\f[] typeface style for links, e.g. \f[C]normal\f[], \f[C]bold\f[], \f[C]slanted\f[], \f[C]boldslanted\f[], \f[C]type\f[], \f[C]cap\f[], \f[C]small\f[] .RS .RE .TP .B \f[C]indenting\f[] controls indentation of paragraphs, e.g. \f[C]yes,small,next\f[] (see ConTeXt Indentation); may be repeated for multiple options .RS .RE .TP .B \f[C]whitespace\f[] spacing between paragraphs, e.g. \f[C]none\f[], \f[C]small\f[] (using \f[C]setupwhitespace\f[]) .RS .RE .TP .B \f[C]interlinespace\f[] adjusts line spacing, e.g. \f[C]4ex\f[] (using \f[C]setupinterlinespace\f[]); may be repeated for multiple options .RS .RE .TP .B \f[C]headertext\f[], \f[C]footertext\f[] text to be placed in running header or footer (see ConTeXt Headers and Footers); may be repeated up to four times for different placement .RS .RE .TP .B \f[C]pagenumbering\f[] page number style and location (using \f[C]setuppagenumbering\f[]); may be repeated for multiple options .RS .RE .TP .B \f[C]toc\f[] include table of contents (can also be set using \f[C]\-\-toc/\-\-table\-of\-contents\f[]) .RS .RE .TP .B \f[C]lof\f[], \f[C]lot\f[] include list of figures, list of tables .RS .RE .SS Variables for man pages .TP .B \f[C]section\f[] section number in man pages .RS .RE .TP .B \f[C]header\f[] header in man pages .RS .RE .TP .B \f[C]footer\f[] footer in man pages .RS .RE .TP .B \f[C]adjusting\f[] adjusts text to left (\f[C]l\f[]), right (\f[C]r\f[]), center (\f[C]c\f[]), or both (\f[C]b\f[]) margins .RS .RE .TP .B \f[C]hyphenate\f[] if \f[C]true\f[] (the default), hyphenation will be used .RS .RE .SS Using variables in templates .PP Variable names are sequences of alphanumerics, \f[C]\-\f[], and \f[C]_\f[], starting with a letter. A variable name surrounded by \f[C]$\f[] signs will be replaced by its value. For example, the string \f[C]$title$\f[] in .IP .nf \f[C] $title$ \f[] .fi .PP will be replaced by the document title. .PP To write a literal \f[C]$\f[] in a template, use \f[C]$$\f[]. .PP Templates may contain conditionals. The syntax is as follows: .IP .nf \f[C] $if(variable)$ X $else$ Y $endif$ \f[] .fi .PP This will include \f[C]X\f[] in the template if \f[C]variable\f[] has a non\-null value; otherwise it will include \f[C]Y\f[]. \f[C]X\f[] and \f[C]Y\f[] are placeholders for any valid template text, and may include interpolated variables or other conditionals. The \f[C]$else$\f[] section may be omitted. .PP When variables can have multiple values (for example, \f[C]author\f[] in a multi\-author document), you can use the \f[C]$for$\f[] keyword: .IP .nf \f[C] $for(author)$ $endfor$ \f[] .fi .PP You can optionally specify a separator to be used between consecutive items: .IP .nf \f[C] $for(author)$$author$$sep$,\ $endfor$ \f[] .fi .PP A dot can be used to select a field of a variable that takes an object as its value. So, for example: .IP .nf \f[C] $author.name$\ ($author.affiliation$) \f[] .fi .PP If you use custom templates, you may need to revise them as pandoc changes. We recommend tracking the changes in the default templates, and modifying your custom templates accordingly. An easy way to do this is to fork the pandoc\-templates repository and merge in changes after each pandoc release. .SH PANDOC\[aq]S MARKDOWN .PP Pandoc understands an extended and slightly revised version of John Gruber\[aq]s Markdown syntax. This document explains the syntax, noting differences from standard Markdown. Except where noted, these differences can be suppressed by using the \f[C]markdown_strict\f[] format instead of \f[C]markdown\f[]. An extensions can be enabled by adding \f[C]+EXTENSION\f[] to the format name and disabled by adding \f[C]\-EXTENSION\f[]. For example, \f[C]markdown_strict+footnotes\f[] is strict Markdown with footnotes enabled, while \f[C]markdown\-footnotes\-pipe_tables\f[] is pandoc\[aq]s Markdown without footnotes or pipe tables. .SS Philosophy .PP Markdown is designed to be easy to write, and, even more importantly, easy to read: .RS .PP A Markdown\-formatted document should be publishable as\-is, as plain text, without looking like it\[aq]s been marked up with tags or formatting instructions. \-\- John Gruber .RE .PP This principle has guided pandoc\[aq]s decisions in finding syntax for tables, footnotes, and other extensions. .PP There is, however, one respect in which pandoc\[aq]s aims are different from the original aims of Markdown. Whereas Markdown was originally designed with HTML generation in mind, pandoc is designed for multiple output formats. Thus, while pandoc allows the embedding of raw HTML, it discourages it, and provides other, non\-HTMLish ways of representing important document elements like definition lists, tables, mathematics, and footnotes. .SS Paragraphs .PP A paragraph is one or more lines of text followed by one or more blank lines. Newlines are treated as spaces, so you can reflow your paragraphs as you like. If you need a hard line break, put two or more spaces at the end of a line. .SS Extension: \f[C]escaped_line_breaks\f[] .PP A backslash followed by a newline is also a hard line break. Note: in multiline and grid table cells, this is the only way to create a hard line break, since trailing spaces in the cells are ignored. .SS Headers .PP There are two kinds of headers: Setext and ATX. .SS Setext\-style headers .PP A setext\-style header is a line of text "underlined" with a row of \f[C]=\f[] signs (for a level one header) or \f[C]\-\f[] signs (for a level two header): .IP .nf \f[C] A\ level\-one\ header ================== A\ level\-two\ header \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \f[] .fi .PP The header text can contain inline formatting, such as emphasis (see Inline formatting, below). .SS ATX\-style headers .PP An ATX\-style header consists of one to six \f[C]#\f[] signs and a line of text, optionally followed by any number of \f[C]#\f[] signs. The number of \f[C]#\f[] signs at the beginning of the line is the header level: .IP .nf \f[C] ##\ A\ level\-two\ header ###\ A\ level\-three\ header\ ### \f[] .fi .PP As with setext\-style headers, the header text can contain formatting: .IP .nf \f[C] #\ A\ level\-one\ header\ with\ a\ [link](/url)\ and\ *emphasis* \f[] .fi .SS Extension: \f[C]blank_before_header\f[] .PP Standard Markdown syntax does not require a blank line before a header. Pandoc does require this (except, of course, at the beginning of the document). The reason for the requirement is that it is all too easy for a \f[C]#\f[] to end up at the beginning of a line by accident (perhaps through line wrapping). Consider, for example: .IP .nf \f[C] I\ like\ several\ of\ their\ flavors\ of\ ice\ cream: #22,\ for\ example,\ and\ #5. \f[] .fi .SS Header identifiers .SS Extension: \f[C]header_attributes\f[] .PP Headers can be assigned attributes using this syntax at the end of the line containing the header text: .IP .nf \f[C] {#identifier\ .class\ .class\ key=value\ key=value} \f[] .fi .PP Thus, for example, the following headers will all be assigned the identifier \f[C]foo\f[]: .IP .nf \f[C] #\ My\ header\ {#foo} ##\ My\ header\ ##\ \ \ \ {#foo} My\ other\ header\ \ \ {#foo} \-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \f[] .fi .PP (This syntax is compatible with PHP Markdown Extra.) .PP Note that although this syntax allows assignment of classes and key/value attributes, writers generally don\[aq]t use all of this information. Identifiers, classes, and key/value attributes are used in HTML and HTML\-based formats such as EPUB and slidy. Identifiers are used for labels and link anchors in the LaTeX, ConTeXt, Textile, and AsciiDoc writers. .PP Headers with the class \f[C]unnumbered\f[] will not be numbered, even if \f[C]\-\-number\-sections\f[] is specified. A single hyphen (\f[C]\-\f[]) in an attribute context is equivalent to \f[C]\&.unnumbered\f[], and preferable in non\-English documents. So, .IP .nf \f[C] #\ My\ header\ {\-} \f[] .fi .PP is just the same as .IP .nf \f[C] #\ My\ header\ {.unnumbered} \f[] .fi .SS Extension: \f[C]auto_identifiers\f[] .PP A header without an explicitly specified identifier will be automatically assigned a unique identifier based on the header text. To derive the identifier from the header text, .IP \[bu] 2 Remove all formatting, links, etc. .IP \[bu] 2 Remove all footnotes. .IP \[bu] 2 Remove all punctuation, except underscores, hyphens, and periods. .IP \[bu] 2 Replace all spaces and newlines with hyphens. .IP \[bu] 2 Convert all alphabetic characters to lowercase. .IP \[bu] 2 Remove everything up to the first letter (identifiers may not begin with a number or punctuation mark). .IP \[bu] 2 If nothing is left after this, use the identifier \f[C]section\f[]. .PP Thus, for example, .PP .TS tab(@); l l. T{ Header T}@T{ Identifier T} _ T{ \f[C]Header\ identifiers\ in\ HTML\f[] T}@T{ \f[C]header\-identifiers\-in\-html\f[] T} T{ \f[C]*Dogs*?\-\-in\ *my*\ house?\f[] T}@T{ \f[C]dogs\-\-in\-my\-house\f[] T} T{ \f[C][HTML],\ [S5],\ or\ [RTF]?\f[] T}@T{ \f[C]html\-s5\-or\-rtf\f[] T} T{ \f[C]3.\ Applications\f[] T}@T{ \f[C]applications\f[] T} T{ \f[C]33\f[] T}@T{ \f[C]section\f[] T} .TE .PP These rules should, in most cases, allow one to determine the identifier from the header text. The exception is when several headers have the same text; in this case, the first will get an identifier as described above; the second will get the same identifier with \f[C]\-1\f[] appended; the third with \f[C]\-2\f[]; and so on. .PP These identifiers are used to provide link targets in the table of contents generated by the \f[C]\-\-toc|\-\-table\-of\-contents\f[] option. They also make it easy to provide links from one section of a document to another. A link to this section, for example, might look like this: .IP .nf \f[C] See\ the\ section\ on [header\ identifiers](#header\-identifiers\-in\-html\-latex\-and\-context). \f[] .fi .PP Note, however, that this method of providing links to sections works only in HTML, LaTeX, and ConTeXt formats. .PP If the \f[C]\-\-section\-divs\f[] option is specified, then each section will be wrapped in a \f[C]div\f[] (or a \f[C]section\f[], if \f[C]\-\-html5\f[] was specified), and the identifier will be attached to the enclosing \f[C]
\f[] (or \f[C]
\f[]) tag rather than the header itself. This allows entire sections to be manipulated using javascript or treated differently in CSS. .SS Extension: \f[C]implicit_header_references\f[] .PP Pandoc behaves as if reference links have been defined for each header. So, instead of .IP .nf \f[C] [header\ identifiers](#header\-identifiers\-in\-html) \f[] .fi .PP you can simply write .IP .nf \f[C] [header\ identifiers] \f[] .fi .PP or .IP .nf \f[C] [header\ identifiers][] \f[] .fi .PP or .IP .nf \f[C] [the\ section\ on\ header\ identifiers][header\ identifiers] \f[] .fi .PP If there are multiple headers with identical text, the corresponding reference will link to the first one only, and you will need to use explicit links to link to the others, as described above. .PP Like regular reference links, these references are case\-insensitive. .PP Explicit link reference definitions always take priority over implicit header references. So, in the following example, the link will point to \f[C]bar\f[], not to \f[C]#foo\f[]: .IP .nf \f[C] #\ Foo [foo]:\ bar See\ [foo] \f[] .fi .SS Block quotations .PP Markdown uses email conventions for quoting blocks of text. A block quotation is one or more paragraphs or other block elements (such as lists or headers), with each line preceded by a \f[C]>\f[] character and an optional space. (The \f[C]>\f[] need not start at the left margin, but it should not be indented more than three spaces.) .IP .nf \f[C] >\ This\ is\ a\ block\ quote.\ This >\ paragraph\ has\ two\ lines. > >\ 1.\ This\ is\ a\ list\ inside\ a\ block\ quote. >\ 2.\ Second\ item. \f[] .fi .PP A "lazy" form, which requires the \f[C]>\f[] character only on the first line of each block, is also allowed: .IP .nf \f[C] >\ This\ is\ a\ block\ quote.\ This paragraph\ has\ two\ lines. >\ 1.\ This\ is\ a\ list\ inside\ a\ block\ quote. 2.\ Second\ item. \f[] .fi .PP Among the block elements that can be contained in a block quote are other block quotes. That is, block quotes can be nested: .IP .nf \f[C] >\ This\ is\ a\ block\ quote. > >\ >\ A\ block\ quote\ within\ a\ block\ quote. \f[] .fi .PP If the \f[C]>\f[] character is followed by an optional space, that space will be considered part of the block quote marker and not part of the indentation of the contents. Thus, to put an indented code block in a block quote, you need five spaces after the \f[C]>\f[]: .IP .nf \f[C] >\ \ \ \ \ code \f[] .fi .SS Extension: \f[C]blank_before_blockquote\f[] .PP Standard Markdown syntax does not require a blank line before a block quote. Pandoc does require this (except, of course, at the beginning of the document). The reason for the requirement is that it is all too easy for a \f[C]>\f[] to end up at the beginning of a line by accident (perhaps through line wrapping). So, unless the \f[C]markdown_strict\f[] format is used, the following does not produce a nested block quote in pandoc: .IP .nf \f[C] >\ This\ is\ a\ block\ quote. >>\ Nested. \f[] .fi .SS Verbatim (code) blocks .SS Indented code blocks .PP A block of text indented four spaces (or one tab) is treated as verbatim text: that is, special characters do not trigger special formatting, and all spaces and line breaks are preserved. For example, .IP .nf \f[C] \ \ \ \ if\ (a\ >\ 3)\ { \ \ \ \ \ \ moveShip(5\ *\ gravity,\ DOWN); \ \ \ \ } \f[] .fi .PP The initial (four space or one tab) indentation is not considered part of the verbatim text, and is removed in the output. .PP Note: blank lines in the verbatim text need not begin with four spaces. .SS Fenced code blocks .SS Extension: \f[C]fenced_code_blocks\f[] .PP In addition to standard indented code blocks, pandoc supports \f[I]fenced\f[] code blocks. These begin with a row of three or more tildes (\f[C]~\f[]) and end with a row of tildes that must be at least as long as the starting row. Everything between these lines is treated as code. No indentation is necessary: .IP .nf \f[C] ~~~~~~~ if\ (a\ >\ 3)\ { \ \ moveShip(5\ *\ gravity,\ DOWN); } ~~~~~~~ \f[] .fi .PP Like regular code blocks, fenced code blocks must be separated from surrounding text by blank lines. .PP If the code itself contains a row of tildes or backticks, just use a longer row of tildes or backticks at the start and end: .IP .nf \f[C] ~~~~~~~~~~~~~~~~ ~~~~~~~~~~ code\ including\ tildes ~~~~~~~~~~ ~~~~~~~~~~~~~~~~ \f[] .fi .SS Extension: \f[C]backtick_code_blocks\f[] .PP Same as \f[C]fenced_code_blocks\f[], but uses backticks (\f[C]`\f[]) instead of tildes (\f[C]~\f[]). .SS Extension: \f[C]fenced_code_attributes\f[] .PP Optionally, you may attach attributes to fenced or backtick code block using this syntax: .IP .nf \f[C] ~~~~\ {#mycode\ .haskell\ .numberLines\ startFrom="100"} qsort\ []\ \ \ \ \ =\ [] qsort\ (x:xs)\ =\ qsort\ (filter\ (<\ x)\ xs)\ ++\ [x]\ ++ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ qsort\ (filter\ (>=\ x)\ xs) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ \f[] .fi .PP Here \f[C]mycode\f[] is an identifier, \f[C]haskell\f[] and \f[C]numberLines\f[] are classes, and \f[C]startFrom\f[] is an attribute with value \f[C]100\f[]. Some output formats can use this information to do syntax highlighting. Currently, the only output formats that uses this information are HTML and LaTeX. If highlighting is supported for your output format and language, then the code block above will appear highlighted, with numbered lines. (To see which languages are supported, do \f[C]pandoc\ \-\-version\f[].) Otherwise, the code block above will appear as follows: .IP .nf \f[C] \ \ \ \ ... \ \ \f[] .fi .PP A shortcut form can also be used for specifying the language of the code block: .IP .nf \f[C] ```haskell qsort\ []\ =\ [] ``` \f[] .fi .PP This is equivalent to: .IP .nf \f[C] ```\ {.haskell} qsort\ []\ =\ [] ``` \f[] .fi .PP If the \f[C]fenced_code_attributes\f[] extension is disabled, but input contains class attribute(s) for the codeblock, the first class attribute will be printed after the opening fence as a bare word. .PP To prevent all highlighting, use the \f[C]\-\-no\-highlight\f[] flag. To set the highlighting style, use \f[C]\-\-highlight\-style\f[]. For more information on highlighting, see Syntax highlighting, below. .SS Line blocks .SS Extension: \f[C]line_blocks\f[] .PP A line block is a sequence of lines beginning with a vertical bar (\f[C]|\f[]) followed by a space. The division into lines will be preserved in the output, as will any leading spaces; otherwise, the lines will be formatted as Markdown. This is useful for verse and addresses: .IP .nf \f[C] |\ The\ limerick\ packs\ laughs\ anatomical |\ In\ space\ that\ is\ quite\ economical. |\ \ \ \ But\ the\ good\ ones\ I\[aq]ve\ seen |\ \ \ \ So\ seldom\ are\ clean |\ And\ the\ clean\ ones\ so\ seldom\ are\ comical |\ 200\ Main\ St. |\ Berkeley,\ CA\ 94718 \f[] .fi .PP The lines can be hard\-wrapped if needed, but the continuation line must begin with a space. .IP .nf \f[C] |\ The\ Right\ Honorable\ Most\ Venerable\ and\ Righteous\ Samuel\ L. \ \ Constable,\ Jr. |\ 200\ Main\ St. |\ Berkeley,\ CA\ 94718 \f[] .fi .PP This syntax is borrowed from reStructuredText. .SS Lists .SS Bullet lists .PP A bullet list is a list of bulleted list items. A bulleted list item begins with a bullet (\f[C]*\f[], \f[C]+\f[], or \f[C]\-\f[]). Here is a simple example: .IP .nf \f[C] *\ one *\ two *\ three \f[] .fi .PP This will produce a "compact" list. If you want a "loose" list, in which each item is formatted as a paragraph, put spaces between the items: .IP .nf \f[C] *\ one *\ two *\ three \f[] .fi .PP The bullets need not be flush with the left margin; they may be indented one, two, or three spaces. The bullet must be followed by whitespace. .PP List items look best if subsequent lines are flush with the first line (after the bullet): .IP .nf \f[C] *\ here\ is\ my\ first \ \ list\ item. *\ and\ my\ second. \f[] .fi .PP But Markdown also allows a "lazy" format: .IP .nf \f[C] *\ here\ is\ my\ first list\ item. *\ and\ my\ second. \f[] .fi .SS The four\-space rule .PP A list item may contain multiple paragraphs and other block\-level content. However, subsequent paragraphs must be preceded by a blank line and indented four spaces or a tab. The list will look better if the first paragraph is aligned with the rest: .IP .nf \f[C] \ \ *\ First\ paragraph. \ \ \ \ Continued. \ \ *\ Second\ paragraph.\ With\ a\ code\ block,\ which\ must\ be\ indented \ \ \ \ eight\ spaces: \ \ \ \ \ \ \ \ {\ code\ } \f[] .fi .PP List items may include other lists. In this case the preceding blank line is optional. The nested list must be indented four spaces or one tab: .IP .nf \f[C] *\ fruits \ \ \ \ +\ apples \ \ \ \ \ \ \ \ \-\ macintosh \ \ \ \ \ \ \ \ \-\ red\ delicious \ \ \ \ +\ pears \ \ \ \ +\ peaches *\ vegetables \ \ \ \ +\ broccoli \ \ \ \ +\ chard \f[] .fi .PP As noted above, Markdown allows you to write list items "lazily," instead of indenting continuation lines. However, if there are multiple paragraphs or other blocks in a list item, the first line of each must be indented. .IP .nf \f[C] +\ A\ lazy,\ lazy,\ list item. +\ Another\ one;\ this\ looks bad\ but\ is\ legal. \ \ \ \ Second\ paragraph\ of\ second list\ item. \f[] .fi .PP \f[B]Note:\f[] Although the four\-space rule for continuation paragraphs comes from the official Markdown syntax guide, the reference implementation, \f[C]Markdown.pl\f[], does not follow it. So pandoc will give different results than \f[C]Markdown.pl\f[] when authors have indented continuation paragraphs fewer than four spaces. .PP The Markdown syntax guide is not explicit whether the four\-space rule applies to \f[I]all\f[] block\-level content in a list item; it only mentions paragraphs and code blocks. But it implies that the rule applies to all block\-level content (including nested lists), and pandoc interprets it that way. .SS Ordered lists .PP Ordered lists work just like bulleted lists, except that the items begin with enumerators rather than bullets. .PP In standard Markdown, enumerators are decimal numbers followed by a period and a space. The numbers themselves are ignored, so there is no difference between this list: .IP .nf \f[C] 1.\ \ one 2.\ \ two 3.\ \ three \f[] .fi .PP and this one: .IP .nf \f[C] 5.\ \ one 7.\ \ two 1.\ \ three \f[] .fi .SS Extension: \f[C]fancy_lists\f[] .PP Unlike standard Markdown, pandoc allows ordered list items to be marked with uppercase and lowercase letters and roman numerals, in addition to arabic numerals. List markers may be enclosed in parentheses or followed by a single right\-parentheses or period. They must be separated from the text that follows by at least one space, and, if the list marker is a capital letter with a period, by at least two spaces. .PP The \f[C]fancy_lists\f[] extension also allows \[aq]\f[C]#\f[]\[aq] to be used as an ordered list marker in place of a numeral: .IP .nf \f[C] #.\ one #.\ two \f[] .fi .SS Extension: \f[C]startnum\f[] .PP Pandoc also pays attention to the type of list marker used, and to the starting number, and both of these are preserved where possible in the output format. Thus, the following yields a list with numbers followed by a single parenthesis, starting with 9, and a sublist with lowercase roman numerals: .IP .nf \f[C] \ 9)\ \ Ninth 10)\ \ Tenth 11)\ \ Eleventh \ \ \ \ \ \ \ i.\ subone \ \ \ \ \ \ ii.\ subtwo \ \ \ \ \ iii.\ subthree \f[] .fi .PP Pandoc will start a new list each time a different type of list marker is used. So, the following will create three lists: .IP .nf \f[C] (2)\ Two (5)\ Three 1.\ \ Four *\ \ \ Five \f[] .fi .PP If default list markers are desired, use \f[C]#.\f[]: .IP .nf \f[C] #.\ \ one #.\ \ two #.\ \ three \f[] .fi .SS Definition lists .SS Extension: \f[C]definition_lists\f[] .PP Pandoc supports definition lists, using the syntax of PHP Markdown Extra with some extensions. .IP .nf \f[C] Term\ 1 :\ \ \ Definition\ 1 Term\ 2\ with\ *inline\ markup* :\ \ \ Definition\ 2 \ \ \ \ \ \ \ \ {\ some\ code,\ part\ of\ Definition\ 2\ } \ \ \ \ Third\ paragraph\ of\ definition\ 2. \f[] .fi .PP Each term must fit on one line, which may optionally be followed by a blank line, and must be followed by one or more definitions. A definition begins with a colon or tilde, which may be indented one or two spaces. .PP A term may have multiple definitions, and each definition may consist of one or more block elements (paragraph, code block, list, etc.), each indented four spaces or one tab stop. The body of the definition (including the first line, aside from the colon or tilde) should be indented four spaces. However, as with other Markdown lists, you can "lazily" omit indentation except at the beginning of a paragraph or other block element: .IP .nf \f[C] Term\ 1 :\ \ \ Definition with\ lazy\ continuation. \ \ \ \ Second\ paragraph\ of\ the\ definition. \f[] .fi .PP If you leave space before the definition (as in the example above), the text of the definition will be treated as a paragraph. In some output formats, this will mean greater spacing between term/definition pairs. For a more compact definition list, omit the space before the definition: .IP .nf \f[C] Term\ 1 \ \ ~\ Definition\ 1 Term\ 2 \ \ ~\ Definition\ 2a \ \ ~\ Definition\ 2b \f[] .fi .PP Note that space between items in a definition list is required. (A variant that loosens this requirement, but disallows "lazy" hard wrapping, can be activated with \f[C]compact_definition_lists\f[]: see Non\-pandoc extensions, below.) .SS Numbered example lists .SS Extension: \f[C]example_lists\f[] .PP The special list marker \f[C]\@\f[] can be used for sequentially numbered examples. The first list item with a \f[C]\@\f[] marker will be numbered \[aq]1\[aq], the next \[aq]2\[aq], and so on, throughout the document. The numbered examples need not occur in a single list; each new list using \f[C]\@\f[] will take up where the last stopped. So, for example: .IP .nf \f[C] (\@)\ \ My\ first\ example\ will\ be\ numbered\ (1). (\@)\ \ My\ second\ example\ will\ be\ numbered\ (2). Explanation\ of\ examples. (\@)\ \ My\ third\ example\ will\ be\ numbered\ (3). \f[] .fi .PP Numbered examples can be labeled and referred to elsewhere in the document: .IP .nf \f[C] (\@good)\ \ This\ is\ a\ good\ example. As\ (\@good)\ illustrates,\ ... \f[] .fi .PP The label can be any string of alphanumeric characters, underscores, or hyphens. .SS Compact and loose lists .PP Pandoc behaves differently from \f[C]Markdown.pl\f[] on some "edge cases" involving lists. Consider this source: .IP .nf \f[C] +\ \ \ First +\ \ \ Second: \ \ \ \ \-\ \ \ Fee \ \ \ \ \-\ \ \ Fie \ \ \ \ \-\ \ \ Foe +\ \ \ Third \f[] .fi .PP Pandoc transforms this into a "compact list" (with no \f[C]

\f[] tags around "First", "Second", or "Third"), while Markdown puts \f[C]

\f[] tags around "Second" and "Third" (but not "First"), because of the blank space around "Third". Pandoc follows a simple rule: if the text is followed by a blank line, it is treated as a paragraph. Since "Second" is followed by a list, and not a blank line, it isn\[aq]t treated as a paragraph. The fact that the list is followed by a blank line is irrelevant. (Note: Pandoc works this way even when the \f[C]markdown_strict\f[] format is specified. This behavior is consistent with the official Markdown syntax description, even though it is different from that of \f[C]Markdown.pl\f[].) .SS Ending a list .PP What if you want to put an indented code block after a list? .IP .nf \f[C] \-\ \ \ item\ one \-\ \ \ item\ two \ \ \ \ {\ my\ code\ block\ } \f[] .fi .PP Trouble! Here pandoc (like other Markdown implementations) will treat \f[C]{\ my\ code\ block\ }\f[] as the second paragraph of item two, and not as a code block. .PP To "cut off" the list after item two, you can insert some non\-indented content, like an HTML comment, which won\[aq]t produce visible output in any format: .IP .nf \f[C] \-\ \ \ item\ one \-\ \ \ item\ two \ \ \ \ {\ my\ code\ block\ } \f[] .fi .PP You can use the same trick if you want two consecutive lists instead of one big list: .IP .nf \f[C] 1.\ \ one 2.\ \ two 3.\ \ three 1.\ \ uno 2.\ \ dos 3.\ \ tres \f[] .fi .SS Horizontal rules .PP A line containing a row of three or more \f[C]*\f[], \f[C]\-\f[], or \f[C]_\f[] characters (optionally separated by spaces) produces a horizontal rule: .IP .nf \f[C] *\ \ *\ \ *\ \ * \-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \f[] .fi .SS Tables .PP Four kinds of tables may be used. The first three kinds presuppose the use of a fixed\-width font, such as Courier. The fourth kind can be used with proportionally spaced fonts, as it does not require lining up columns. .SS Extension: \f[C]table_captions\f[] .PP A caption may optionally be provided with all 4 kinds of tables (as illustrated in the examples below). A caption is a paragraph beginning with the string \f[C]Table:\f[] (or just \f[C]:\f[]), which will be stripped off. It may appear either before or after the table. .SS Extension: \f[C]simple_tables\f[] .PP Simple tables look like this: .IP .nf \f[C] \ \ Right\ \ \ \ \ Left\ \ \ \ \ Center\ \ \ \ \ Default \-\-\-\-\-\-\-\ \ \ \ \ \-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\ \ \ \-\-\-\-\-\-\- \ \ \ \ \ 12\ \ \ \ \ 12\ \ \ \ \ \ \ \ 12\ \ \ \ \ \ \ \ \ \ \ \ 12 \ \ \ \ 123\ \ \ \ \ 123\ \ \ \ \ \ \ 123\ \ \ \ \ \ \ \ \ \ 123 \ \ \ \ \ \ 1\ \ \ \ \ 1\ \ \ \ \ \ \ \ \ \ 1\ \ \ \ \ \ \ \ \ \ \ \ \ 1 Table:\ \ Demonstration\ of\ simple\ table\ syntax. \f[] .fi .PP The headers and table rows must each fit on one line. Column alignments are determined by the position of the header text relative to the dashed line below it: .IP \[bu] 2 If the dashed line is flush with the header text on the right side but extends beyond it on the left, the column is right\-aligned. .IP \[bu] 2 If the dashed line is flush with the header text on the left side but extends beyond it on the right, the column is left\-aligned. .IP \[bu] 2 If the dashed line extends beyond the header text on both sides, the column is centered. .IP \[bu] 2 If the dashed line is flush with the header text on both sides, the default alignment is used (in most cases, this will be left). .PP The table must end with a blank line, or a line of dashes followed by a blank line. .PP The column headers may be omitted, provided a dashed line is used to end the table. For example: .IP .nf \f[C] \-\-\-\-\-\-\-\ \ \ \ \ \-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\ \ \ \-\-\-\-\-\-\- \ \ \ \ \ 12\ \ \ \ \ 12\ \ \ \ \ \ \ \ 12\ \ \ \ \ \ \ \ \ \ \ \ \ 12 \ \ \ \ 123\ \ \ \ \ 123\ \ \ \ \ \ \ 123\ \ \ \ \ \ \ \ \ \ \ 123 \ \ \ \ \ \ 1\ \ \ \ \ 1\ \ \ \ \ \ \ \ \ \ 1\ \ \ \ \ \ \ \ \ \ \ \ \ \ 1 \-\-\-\-\-\-\-\ \ \ \ \ \-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\ \ \ \-\-\-\-\-\-\- \f[] .fi .PP When headers are omitted, column alignments are determined on the basis of the first line of the table body. So, in the tables above, the columns would be right, left, center, and right aligned, respectively. .SS Extension: \f[C]multiline_tables\f[] .PP Multiline tables allow headers and table rows to span multiple lines of text (but cells that span multiple columns or rows of the table are not supported). Here is an example: .IP .nf \f[C] \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \ Centered\ \ \ Default\ \ \ \ \ \ \ \ \ \ \ Right\ Left \ \ Header\ \ \ \ Aligned\ \ \ \ \ \ \ \ \ Aligned\ Aligned \-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \ \ \ First\ \ \ \ row\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 12.0\ Example\ of\ a\ row\ that \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ spans\ multiple\ lines. \ \ Second\ \ \ \ row\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 5.0\ Here\[aq]s\ another\ one.\ Note \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ the\ blank\ line\ between \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ rows. \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- Table:\ Here\[aq]s\ the\ caption.\ It,\ too,\ may\ span multiple\ lines. \f[] .fi .PP These work like simple tables, but with the following differences: .IP \[bu] 2 They must begin with a row of dashes, before the header text (unless the headers are omitted). .IP \[bu] 2 They must end with a row of dashes, then a blank line. .IP \[bu] 2 The rows must be separated by blank lines. .PP In multiline tables, the table parser pays attention to the widths of the columns, and the writers try to reproduce these relative widths in the output. So, if you find that one of the columns is too narrow in the output, try widening it in the Markdown source. .PP Headers may be omitted in multiline tables as well as simple tables: .IP .nf \f[C] \-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- \ \ \ First\ \ \ \ row\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 12.0\ Example\ of\ a\ row\ that \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ spans\ multiple\ lines. \ \ Second\ \ \ \ row\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 5.0\ Here\[aq]s\ another\ one.\ Note \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ the\ blank\ line\ between \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ rows. \-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\ \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- :\ Here\[aq]s\ a\ multiline\ table\ without\ headers. \f[] .fi .PP It is possible for a multiline table to have just one row, but the row should be followed by a blank line (and then the row of dashes that ends the table), or the table may be interpreted as a simple table. .SS Extension: \f[C]grid_tables\f[] .PP Grid tables look like this: .IP .nf \f[C] :\ Sample\ grid\ table. +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ |\ Fruit\ \ \ \ \ \ \ \ \ |\ Price\ \ \ \ \ \ \ \ \ |\ Advantages\ \ \ \ \ \ \ \ \ | +===============+===============+====================+ |\ Bananas\ \ \ \ \ \ \ |\ $1.34\ \ \ \ \ \ \ \ \ |\ \-\ built\-in\ wrapper\ | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |\ \-\ bright\ color\ \ \ \ \ | +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ |\ Oranges\ \ \ \ \ \ \ |\ $2.10\ \ \ \ \ \ \ \ \ |\ \-\ cures\ scurvy\ \ \ \ \ | |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ |\ \-\ tasty\ \ \ \ \ \ \ \ \ \ \ \ | +\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-+ \f[] .fi .PP The row of \f[C]=\f[]s separates the header from the table body, and can be omitted for a headerless table. The cells of grid tables may contain arbitrary block elements (multiple paragraphs, code blocks, lists, etc.). Alignments are not supported, nor are cells that span multiple columns or rows. Grid tables can be created easily using Emacs table mode. .SS Extension: \f[C]pipe_tables\f[] .PP Pipe tables look like this: .IP .nf \f[C] |\ Right\ |\ Left\ |\ Default\ |\ Center\ | |\-\-\-\-\-\-:|:\-\-\-\-\-|\-\-\-\-\-\-\-\-\-|:\-\-\-\-\-\-:| |\ \ \ 12\ \ |\ \ 12\ \ |\ \ \ \ 12\ \ \ |\ \ \ \ 12\ \ | |\ \ 123\ \ |\ \ 123\ |\ \ \ 123\ \ \ |\ \ \ 123\ \ | |\ \ \ \ 1\ \ |\ \ \ \ 1\ |\ \ \ \ \ 1\ \ \ |\ \ \ \ \ 1\ \ | \ \ :\ Demonstration\ of\ pipe\ table\ syntax. \f[] .fi .PP The syntax is identical to PHP Markdown Extra tables. The beginning and ending pipe characters are optional, but pipes are required between all columns. The colons indicate column alignment as shown. The header cannot be omitted. To simulate a headerless table, include a header with blank cells. .PP Since the pipes indicate column boundaries, columns need not be vertically aligned, as they are in the above example. So, this is a perfectly legal (though ugly) pipe table: .IP .nf \f[C] fruit|\ price \-\-\-\-\-|\-\-\-\-\-: apple|2.05 pear|1.37 orange|3.09 \f[] .fi .PP The cells of pipe tables cannot contain block elements like paragraphs and lists, and cannot span multiple lines. If a pipe table contains a row whose printable content is wider than the column width (see \f[C]\-\-columns\f[]), then the cell contents will wrap, with the relative cell widths determined by the widths of the separator lines. .PP Note: pandoc also recognizes pipe tables of the following form, as can be produced by Emacs\[aq] orgtbl\-mode: .IP .nf \f[C] |\ One\ |\ Two\ \ \ | |\-\-\-\-\-+\-\-\-\-\-\-\-| |\ my\ \ |\ table\ | |\ is\ \ |\ nice\ \ | \f[] .fi .PP The difference is that \f[C]+\f[] is used instead of \f[C]|\f[]. Other orgtbl features are not supported. In particular, to get non\-default column alignment, you\[aq]ll need to add colons as above. .SS Metadata blocks .SS Extension: \f[C]pandoc_title_block\f[] .PP If the file begins with a title block .IP .nf \f[C] %\ title %\ author(s)\ (separated\ by\ semicolons) %\ date \f[] .fi .PP it will be parsed as bibliographic information, not regular text. (It will be used, for example, in the title of standalone LaTeX or HTML output.) The block may contain just a title, a title and an author, or all three elements. If you want to include an author but no title, or a title and a date but no author, you need a blank line: .IP .nf \f[C] % %\ Author %\ My\ title % %\ June\ 15,\ 2006 \f[] .fi .PP The title may occupy multiple lines, but continuation lines must begin with leading space, thus: .IP .nf \f[C] %\ My\ title \ \ on\ multiple\ lines \f[] .fi .PP If a document has multiple authors, the authors may be put on separate lines with leading space, or separated by semicolons, or both. So, all of the following are equivalent: .IP .nf \f[C] %\ Author\ One \ \ Author\ Two %\ Author\ One;\ Author\ Two %\ Author\ One; \ \ Author\ Two \f[] .fi .PP The date must fit on one line. .PP All three metadata fields may contain standard inline formatting (italics, links, footnotes, etc.). .PP Title blocks will always be parsed, but they will affect the output only when the \f[C]\-\-standalone\f[] (\f[C]\-s\f[]) option is chosen. In HTML output, titles will appear twice: once in the document head \-\- this is the title that will appear at the top of the window in a browser \-\- and once at the beginning of the document body. The title in the document head can have an optional prefix attached (\f[C]\-\-title\-prefix\f[] or \f[C]\-T\f[] option). The title in the body appears as an H1 element with class "title", so it can be suppressed or reformatted with CSS. If a title prefix is specified with \f[C]\-T\f[] and no title block appears in the document, the title prefix will be used by itself as the HTML title. .PP The man page writer extracts a title, man page section number, and other header and footer information from the title line. The title is assumed to be the first word on the title line, which may optionally end with a (single\-digit) section number in parentheses. (There should be no space between the title and the parentheses.) Anything after this is assumed to be additional footer and header text. A single pipe character (\f[C]|\f[]) should be used to separate the footer text from the header text. Thus, .IP .nf \f[C] %\ PANDOC(1) \f[] .fi .PP will yield a man page with the title \f[C]PANDOC\f[] and section 1. .IP .nf \f[C] %\ PANDOC(1)\ Pandoc\ User\ Manuals \f[] .fi .PP will also have "Pandoc User Manuals" in the footer. .IP .nf \f[C] %\ PANDOC(1)\ Pandoc\ User\ Manuals\ |\ Version\ 4.0 \f[] .fi .PP will also have "Version 4.0" in the header. .SS Extension: \f[C]yaml_metadata_block\f[] .PP A YAML metadata block is a valid YAML object, delimited by a line of three hyphens (\f[C]\-\-\-\f[]) at the top and a line of three hyphens (\f[C]\-\-\-\f[]) or three dots (\f[C]\&...\f[]) at the bottom. A YAML metadata block may occur anywhere in the document, but if it is not at the beginning, it must be preceded by a blank line. (Note that, because of the way pandoc concatenates input files when several are provided, you may also keep the metadata in a separate YAML file and pass it to pandoc as an argument, along with your Markdown files: .IP .nf \f[C] pandoc\ chap1.md\ chap2.md\ chap3.md\ metadata.yaml\ \-s\ \-o\ book.html \f[] .fi .PP Just be sure that the YAML file begins with \f[C]\-\-\-\f[] and ends with \f[C]\-\-\-\f[] or \f[C]\&...\f[].) .PP Metadata will be taken from the fields of the YAML object and added to any existing document metadata. Metadata can contain lists and objects (nested arbitrarily), but all string scalars will be interpreted as Markdown. Fields with names ending in an underscore will be ignored by pandoc. (They may be given a role by external processors.) .PP A document may contain multiple metadata blocks. The metadata fields will be combined through a \f[I]left\-biased union\f[]: if two metadata blocks attempt to set the same field, the value from the first block will be taken. .PP When pandoc is used with \f[C]\-t\ markdown\f[] to create a Markdown document, a YAML metadata block will be produced only if the \f[C]\-s/\-\-standalone\f[] option is used. All of the metadata will appear in a single block at the beginning of the document. .PP Note that YAML escaping rules must be followed. Thus, for example, if a title contains a colon, it must be quoted. The pipe character (\f[C]|\f[]) can be used to begin an indented block that will be interpreted literally, without need for escaping. This form is necessary when the field contains blank lines: .IP .nf \f[C] \-\-\- title:\ \ \[aq]This\ is\ the\ title:\ it\ contains\ a\ colon\[aq] author: \-\ name:\ Author\ One \ \ affiliation:\ University\ of\ Somewhere \-\ name:\ Author\ Two \ \ affiliation:\ University\ of\ Nowhere tags:\ [nothing,\ nothingness] abstract:\ | \ \ This\ is\ the\ abstract. \ \ It\ consists\ of\ two\ paragraphs. \&... \f[] .fi .PP Template variables will be set automatically from the metadata. Thus, for example, in writing HTML, the variable \f[C]abstract\f[] will be set to the HTML equivalent of the Markdown in the \f[C]abstract\f[] field: .IP .nf \f[C]

This\ is\ the\ abstract.

It\ consists\ of\ two\ paragraphs.

\f[] .fi .PP Note: The \f[C]author\f[] variable in the default templates expects a simple list or string. To use the structured authors in the example, you would need a custom template. For example: .IP .nf \f[C] $for(author)$ $if(author.name)$ $author.name$$if(author.affiliation)$\ ($author.affiliation$)$endif$ $else$ $author$ $endif$ $endfor$ \f[] .fi .SS Backslash escapes .SS Extension: \f[C]all_symbols_escapable\f[] .PP Except inside a code block or inline code, any punctuation or space character preceded by a backslash will be treated literally, even if it would normally indicate formatting. Thus, for example, if one writes .IP .nf \f[C] *\\*hello\\** \f[] .fi .PP one will get .IP .nf \f[C] *hello* \f[] .fi .PP instead of .IP .nf \f[C] hello \f[] .fi .PP This rule is easier to remember than standard Markdown\[aq]s rule, which allows only the following characters to be backslash\-escaped: .IP .nf \f[C] \\`*_{}[]()>#+\-.! \f[] .fi .PP (However, if the \f[C]markdown_strict\f[] format is used, the standard Markdown rule will be used.) .PP A backslash\-escaped space is parsed as a nonbreaking space. It will appear in TeX output as \f[C]~\f[] and in HTML and XML as \f[C]\\ \f[] or \f[C]\\ \f[]. .PP A backslash\-escaped newline (i.e. a backslash occurring at the end of a line) is parsed as a hard line break. It will appear in TeX output as \f[C]\\\\\f[] and in HTML as \f[C]\f[]. This is a nice alternative to Markdown\[aq]s "invisible" way of indicating hard line breaks using two trailing spaces on a line. .PP Backslash escapes do not work in verbatim contexts. .SS Smart punctuation .SS Extension .PP If the \f[C]\-\-smart\f[] option is specified, pandoc will produce typographically correct output, converting straight quotes to curly quotes, \f[C]\-\-\-\f[] to em\-dashes, \f[C]\-\-\f[] to en\-dashes, and \f[C]\&...\f[] to ellipses. Nonbreaking spaces are inserted after certain abbreviations, such as "Mr." .PP Note: if your LaTeX template or any included header file call for the \f[C]csquotes\f[] package, pandoc will detect this automatically and use \f[C]\\enquote{...}\f[] for quoted text. .SS Inline formatting .SS Emphasis .PP To \f[I]emphasize\f[] some text, surround it with \f[C]*\f[]s or \f[C]_\f[], like this: .IP .nf \f[C] This\ text\ is\ _emphasized\ with\ underscores_,\ and\ this is\ *emphasized\ with\ asterisks*. \f[] .fi .PP Double \f[C]*\f[] or \f[C]_\f[] produces \f[B]strong emphasis\f[]: .IP .nf \f[C] This\ is\ **strong\ emphasis**\ and\ __with\ underscores__. \f[] .fi .PP A \f[C]*\f[] or \f[C]_\f[] character surrounded by spaces, or backslash\-escaped, will not trigger emphasis: .IP .nf \f[C] This\ is\ *\ not\ emphasized\ *,\ and\ \\*neither\ is\ this\\*. \f[] .fi .SS Extension: \f[C]intraword_underscores\f[] .PP Because \f[C]_\f[] is sometimes used inside words and identifiers, pandoc does not interpret a \f[C]_\f[] surrounded by alphanumeric characters as an emphasis marker. If you want to emphasize just part of a word, use \f[C]*\f[]: .IP .nf \f[C] feas*ible*,\ not\ feas*able*. \f[] .fi .SS Strikeout .SS Extension: \f[C]strikeout\f[] .PP To strikeout a section of text with a horizontal line, begin and end it with \f[C]~~\f[]. Thus, for example, .IP .nf \f[C] This\ ~~is\ deleted\ text.~~ \f[] .fi .SS Superscripts and subscripts .SS Extension: \f[C]superscript\f[], \f[C]subscript\f[] .PP Superscripts may be written by surrounding the superscripted text by \f[C]^\f[] characters; subscripts may be written by surrounding the subscripted text by \f[C]~\f[] characters. Thus, for example, .IP .nf \f[C] H~2~O\ is\ a\ liquid.\ \ 2^10^\ is\ 1024. \f[] .fi .PP If the superscripted or subscripted text contains spaces, these spaces must be escaped with backslashes. (This is to prevent accidental superscripting and subscripting through the ordinary use of \f[C]~\f[] and \f[C]^\f[].) Thus, if you want the letter P with \[aq]a cat\[aq] in subscripts, use \f[C]P~a\\\ cat~\f[], not \f[C]P~a\ cat~\f[]. .SS Verbatim .PP To make a short span of text verbatim, put it inside backticks: .IP .nf \f[C] What\ is\ the\ difference\ between\ `>>=`\ and\ `>>`? \f[] .fi .PP If the verbatim text includes a backtick, use double backticks: .IP .nf \f[C] Here\ is\ a\ literal\ backtick\ ``\ `\ ``. \f[] .fi .PP (The spaces after the opening backticks and before the closing backticks will be ignored.) .PP The general rule is that a verbatim span starts with a string of consecutive backticks (optionally followed by a space) and ends with a string of the same number of backticks (optionally preceded by a space). .PP Note that backslash\-escapes (and other Markdown constructs) do not work in verbatim contexts: .IP .nf \f[C] This\ is\ a\ backslash\ followed\ by\ an\ asterisk:\ `\\*`. \f[] .fi .SS Extension: \f[C]inline_code_attributes\f[] .PP Attributes can be attached to verbatim text, just as with fenced code blocks: .IP .nf \f[C] `<$>`{.haskell} \f[] .fi .SS Small caps .PP To write small caps, you can use an HTML span tag: .IP .nf \f[C] Small\ caps \f[] .fi .PP (The semicolon is optional and there may be space after the colon.) This will work in all output formats that support small caps. .SS Math .SS Extension: \f[C]tex_math_dollars\f[] .PP Anything between two \f[C]$\f[] characters will be treated as TeX math. The opening \f[C]$\f[] must have a non\-space character immediately to its right, while the closing \f[C]$\f[] must have a non\-space character immediately to its left, and must not be followed immediately by a digit. Thus, \f[C]$20,000\ and\ $30,000\f[] won\[aq]t parse as math. If for some reason you need to enclose text in literal \f[C]$\f[] characters, backslash\-escape them and they won\[aq]t be treated as math delimiters. .PP TeX math will be printed in all output formats. How it is rendered depends on the output format: .TP .B Markdown, LaTeX, Emacs Org mode, ConTeXt It will appear verbatim between \f[C]$\f[] characters. .RS .RE .TP .B reStructuredText It will be rendered using an interpreted text role \f[C]:math:\f[]. .RS .RE .TP .B AsciiDoc It will be rendered as \f[C]latexmath:[...]\f[]. .RS .RE .TP .B Texinfo It will be rendered inside a \f[C]\@math\f[] command. .RS .RE .TP .B groff man It will be rendered verbatim without \f[C]$\f[]\[aq]s. .RS .RE .TP .B MediaWiki, DokuWiki It will be rendered inside \f[C]\f[] tags. .RS .RE .TP .B Textile It will be rendered inside \f[C]\f[] tags. .RS .RE .TP .B RTF, OpenDocument, ODT It will be rendered, if possible, using unicode characters, and will otherwise appear verbatim. .RS .RE .TP .B DocBook If the \f[C]\-\-mathml\f[] flag is used, it will be rendered using MathML in an \f[C]inlineequation\f[] or \f[C]informalequation\f[] tag. Otherwise it will be rendered, if possible, using unicode characters. .RS .RE .TP .B Docx It will be rendered using OMML math markup. .RS .RE .TP .B FictionBook2 If the \f[C]\-\-webtex\f[] option is used, formulas are rendered as images using Google Charts or other compatible web service, downloaded and embedded in the e\-book. Otherwise, they will appear verbatim. .RS .RE .TP .B HTML, Slidy, DZSlides, S5, EPUB The way math is rendered in HTML will depend on the command\-line options selected: .RS .IP "1." 3 The default is to render TeX math as far as possible using unicode characters, as with RTF, DocBook, and OpenDocument output. Formulas are put inside a \f[C]span\f[] with \f[C]class="math"\f[], so that they may be styled differently from the surrounding text if needed. .IP "2." 3 If the \f[C]\-\-latexmathml\f[] option is used, TeX math will be displayed between \f[C]$\f[] or \f[C]$$\f[] characters and put in \f[C]\f[] tags with class \f[C]LaTeX\f[]. The LaTeXMathML script will be used to render it as formulas. (This trick does not work in all browsers, but it works in Firefox. In browsers that do not support LaTeXMathML, TeX math will appear verbatim between \f[C]$\f[] characters.) .IP "3." 3 If the \f[C]\-\-jsmath\f[] option is used, TeX math will be put inside \f[C]\f[] tags (for inline math) or \f[C]
\f[] tags (for display math) with class \f[C]math\f[]. The jsMath script will be used to render it. .IP "4." 3 If the \f[C]\-\-mimetex\f[] option is used, the mimeTeX CGI script will be called to generate images for each TeX formula. This should work in all browsers. The \f[C]\-\-mimetex\f[] option takes an optional URL as argument. If no URL is specified, it will be assumed that the mimeTeX CGI script is at \f[C]/cgi\-bin/mimetex.cgi\f[]. .IP "5." 3 If the \f[C]\-\-gladtex\f[] option is used, TeX formulas will be enclosed in \f[C]\f[] tags in the HTML output. The resulting \f[C]htex\f[] file may then be processed by gladTeX, which will produce image files for each formula and an HTML file with links to these images. So, the procedure is: .RS 4 .IP .nf \f[C] pandoc\ \-s\ \-\-gladtex\ myfile.txt\ \-o\ myfile.htex gladtex\ \-d\ myfile\-images\ myfile.htex #\ produces\ myfile.html\ and\ images\ in\ myfile\-images \f[] .fi .RE .IP "6." 3 If the \f[C]\-\-webtex\f[] option is used, TeX formulas will be converted to \f[C]\f[] tags that link to an external script that converts formulas to images. The formula will be URL\-encoded and concatenated with the URL provided. If no URL is specified, the Google Chart API will be used (\f[C]http://chart.apis.google.com/chart?cht=tx&chl=\f[]). .IP "7." 3 If the \f[C]\-\-mathjax\f[] option is used, TeX math will be displayed between \f[C]\\(...\\)\f[] (for inline math) or \f[C]\\[...\\]\f[] (for display math) and put in \f[C]\f[] tags with class \f[C]math\f[]. The MathJax script will be used to render it as formulas. .RE .SS Raw HTML .SS Extension: \f[C]raw_html\f[] .PP Markdown allows you to insert raw HTML (or DocBook) anywhere in a document (except verbatim contexts, where \f[C]<\f[], \f[C]>\f[], and \f[C]&\f[] are interpreted literally). (Technically this is not an extension, since standard Markdown allows it, but it has been made an extension so that it can be disabled if desired.) .PP The raw HTML is passed through unchanged in HTML, S5, Slidy, Slideous, DZSlides, EPUB, Markdown, and Textile output, and suppressed in other formats. .SS Extension: \f[C]markdown_in_html_blocks\f[] .PP Standard Markdown allows you to include HTML "blocks": blocks of HTML between balanced tags that are separated from the surrounding text with blank lines, and start and end at the left margin. Within these blocks, everything is interpreted as HTML, not Markdown; so (for example), \f[C]*\f[] does not signify emphasis. .PP Pandoc behaves this way when the \f[C]markdown_strict\f[] format is used; but by default, pandoc interprets material between HTML block tags as Markdown. Thus, for example, pandoc will turn .IP .nf \f[C]
*one* [a\ link](http://google.com)
\f[] .fi .PP into .IP .nf \f[C]
one a\ link
\f[] .fi .PP whereas \f[C]Markdown.pl\f[] will preserve it as is. .PP There is one exception to this rule: text between \f[C] Here’s a simple block:
foo
This should be a code block, though:
foo
As should this:
foo
Now, nested:
foo
This should just be an HTML comment: Multiline: Code block: Just plain comment, with trailing spaces on the line: Code:
Hr’s:








------------------------------------------------------------------------------ Inline Markup ============= This is *emphasized*, and so *is this*. This is **strong**, and so **is this**. An *[emphasized link](/url)*. ***This is strong and em.*** So is ***this*** word. ***This is strong and em.*** So is ***this*** word. This is code: `>`, `$`, `\`, `\$`, ``. ~~This is *strikeout*.~~ Superscripts: a^bc^d a^*hello*^ a^hello there^. Subscripts: H~2~O, H~23~O, H~many of them~O. These should not be superscripts or subscripts, because of the unescaped spaces: a\^b c\^d, a\~b c\~d. ------------------------------------------------------------------------------ Smart quotes, ellipses, dashes ============================== “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘`code`’ and a “[quoted link](http://example.com/?foo=1&bar=2)”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ------------------------------------------------------------------------------ LaTeX ===== - \cite[22-23]{smith.1899} - $2+2=4$ - $x \in y$ - $\alpha \wedge \omega$ - $223$ - $p$-Tree - Here’s some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ - Here’s one that has a line break in it: $\alpha + \omega \times x^2$. These shouldn’t be math: - To get the famous equation, write `$e = mc^2$`. - \$22,000 is a *lot* of money. So is \$34,000. (It worked if “lot” is emphasized.) - Shoes (\$20) and socks (\$5). - Escaped `$`: \$73 *this should be emphasized* 23\$. Here’s a LaTeX table: \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} ------------------------------------------------------------------------------ Special Characters ================== Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \\ Backtick: \` Asterisk: \* Underscore: \_ Left brace: { Right brace: } Left bracket: \[ Right bracket: \] Left paren: ( Right paren: ) Greater-than: > Hash: \# Period: . Bang: ! Plus: + Minus: - ------------------------------------------------------------------------------ Links ===== Explicit -------- Just a [URL](/url/). [URL and title](/url/ "title"). [URL and title](/url/ "title preceded by two spaces"). [URL and title](/url/ "title preceded by a tab"). [URL and title](/url/ "title with "quotes" in it") [URL and title](/url/ "title with single quotes") [with\_underscore](/url/with_underscore) [Email link](mailto:nobody@nowhere.net) [Empty](). Reference --------- Foo [bar](/url/). Foo [bar](/url/). Foo [bar](/url/). With [embedded \[brackets\]](/url/). [b](/url/) by itself should be a link. Indented [once](/url). Indented [twice](/url). Indented [thrice](/url). This should \[not\]\[\] be a link. [not]: /url Foo [bar](/url/ "Title with "quotes" inside"). Foo [biz](/url/ "Title with "quote" inside"). With ampersands --------------- Here’s a [link with an ampersand in the URL](http://example.com/?foo=1&bar=2). Here’s a link with an amersand in the link text: [AT&T](http://att.com/ "AT&T"). Here’s an [inline link](/script?foo=1&bar=2). Here’s an [inline link in pointy braces](/script?foo=1&bar=2). Autolinks --------- With an ampersand: - In a list? - - It should. An e-mail address: > Blockquoted: Auto-links should not occur here: `` or here: ------------------------------------------------------------------------------ Images ====== From “Voyage dans la Lune” by Georges Melies (1902): ![lalune](lalune.jpg "Voyage dans la Lune") Here is a movie ![movie](movie.jpg) icon. ------------------------------------------------------------------------------ Footnotes ========= Here is a footnote reference,[^1] and another.[^2] This should *not* be a footnote reference, because it contains a space.\[\^my note\] Here is an inline note.[^3] > Notes can go in quotes.[^4] 1. And in list items.[^5] This paragraph should not be part of the note, as it is not indented. [^1]: Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. [^2]: Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. [^3]: This is *easier* to type. Inline notes may contain [links](http://google.com) and `]` verbatim characters, as well as \[bracketed text\]. [^4]: In quote. [^5]: In list. pandoc-1.16.0.2~dfsg/tests/latex-reader.latex0000644000000000000000000003130312645626061017531 0ustar rootroot\documentclass{article} \usepackage[mathletters]{ucs} \usepackage[utf8x]{inputenc} \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} \newcommand{\textsubscript}[1]{\ensuremath{_{\scriptsize\textrm{#1}}}} \usepackage[breaklinks=true,unicode=true]{hyperref} \usepackage[normalem]{ulem} % avoid problems with \sout in headers with hyperref: \pdfstringdefDisableCommands{\renewcommand{\sout}{}} \usepackage{enumerate} \usepackage{fancyvrb} \usepackage{graphicx} \usepackage{url} \setcounter{secnumdepth}{0} \VerbatimFootnotes % allows verbatim text in footnotes \title{Pandoc Test Suite} \author{John MacFarlane \and Anonymous} \date{July 17, 2006} \begin{document} \maketitle This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. \begin{center}\rule{3in}{0.4pt}\end{center} \section{Headers} \subsection{Level 2 with an \href{/url}{embedded link}} \subsubsection{Level 3 with \emph{emphasis}} Level 4 Level 5 \section[alt title ignored]{Level 1} \subsection{Level 2 with \emph{emphasis}} \subsubsection{Level 3} with no blank line \subsection{Level 2} with no blank line \begin{center}\rule{3in}{0.4pt}\end{center} \section{Paragraphs} Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break\\here. \begin{center}\rule{3in}{0.4pt}\end{center} \section{Block Quotes} E-mail style: \begin{quote} This is a block quote. It is pretty short. \end{quote} \begin {quote} Code in a block quote: \begin{verbatim} sub status { print "working"; } \end{verbatim} A list: \begin{enumerate}[1.] \item item one \item item two \end{enumerate} Nested block quotes: \begin{quote} nested \end{quote} \begin{quote} nested \end{quote} \end{quote} This should not be a block quote: 2 \textgreater{} 1. Box-style: \begin{quote} Example: \begin{verbatim} sub status { print "working"; } \end{verbatim} \end{quote} \begin{quote} \begin{enumerate}[1.] \item do laundry \item take out the trash \end{enumerate} \end{quote} Here's a nested one: \begin{quote} Joe said: \begin{quote} Don't quote me. \end{quote} \end{quote} And a following paragraph. \begin{center}\rule{3in}{0.4pt}\end{center} \section{Code Blocks} Code: \begin{verbatim} ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab \end{verbatim} And: \begin{verbatim} this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ \end{verbatim} \begin{obeylines} this has \emph{two lines} \end{obeylines} \begin{center}\rule{3in}{0.4pt}\end{center} \section{Lists} \subsection{Unordered} Asterisks tight: \begin{itemize} \item asterisk 1 \item asterisk 2 \item asterisk 3 \end{itemize} Asterisks loose: \begin{itemize} \item asterisk 1 \item asterisk 2 \item asterisk 3 \end{itemize} Pluses tight: \begin{itemize} \item Plus 1 \item Plus 2 \item Plus 3 \end{itemize} Pluses loose: \begin{itemize} \item Plus 1 \item Plus 2 \item Plus 3 \end{itemize} Minuses tight: \begin{itemize} \item Minus 1 \item Minus 2 \item Minus 3 \end{itemize} Minuses loose: \begin{itemize} \item Minus 1 \item Minus 2 \item Minus 3 \end{itemize} \subsection{Ordered} Tight: \begin{enumerate}[1.] \item First \item Second \item Third \end{enumerate} and: \begin{enumerate}[1.] \item One \item Two \item Three \end{enumerate} Loose using tabs: \begin{enumerate}[1.] \item First \item Second \item Third \end{enumerate} and using spaces: \begin{enumerate}[1.] \item One \item Two \item Three \end{enumerate} Multiple paragraphs: \begin{enumerate}[1.] \item Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. \item Item 2. \item Item 3. \end{enumerate} \subsection{Nested} \begin{itemize} \item Tab \begin{itemize} \item Tab \begin{itemize} \item Tab \end{itemize} \end{itemize} \end{itemize} Here's another: \begin{enumerate}[1.] \item First \item Second: \begin{itemize} \item Fee \item Fie \item Foe \end{itemize} \item Third \end{enumerate} Same thing but with paragraphs: \begin{enumerate}[1.] \item First \item Second: \begin{itemize} \item Fee \item Fie \item Foe \end{itemize} \item Third \end{enumerate} \subsection{Tabs and spaces} \begin{itemize} \item this is a list item indented with tabs \item this is a list item indented with spaces \begin{itemize} \item this is an example list item indented with tabs \item this is an example list item indented with spaces \end{itemize} \end{itemize} \subsection{Fancy list markers} \begin{enumerate}[(1)] \setcounter{enumi}{1} \item begins with 2 \item and now 3 with a continuation \begin{enumerate}[i.] \setcounter{enumii}{3} \item sublist with roman numerals, starting with 4 \item more items \begin{enumerate}[(A)] \item a subsublist \item a subsublist \end{enumerate} \end{enumerate} \end{enumerate} Nesting: \begin{enumerate}[A.] \item Upper Alpha \begin{enumerate}[I.] \item Upper Roman. \begin{enumerate}[(1)] \setcounter{enumiii}{5} \item Decimal start with 6 \begin{enumerate}[a)] \setcounter{enumiv}{2} \item Lower alpha with paren \end{enumerate} \end{enumerate} \end{enumerate} \end{enumerate} Autonumbering: \begin{enumerate} \item Autonumber. \item More. \begin{enumerate} \item Nested. \end{enumerate} \end{enumerate} Should not be a list item: M.A. 2007 B. Williams \begin{center}\rule{3in}{0.4pt}\end{center} \section{Definition Lists} Tight using spaces: \begin{description} \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Tight using tabs: \begin{description} \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Loose: \begin{description} \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Multiple blocks with italics: \begin{description} \item[\emph{apple}] red fruit contains seeds, crisp, pleasant to taste \item[\emph{orange}] orange fruit \begin{verbatim} { orange code block } \end{verbatim} \begin{quote} orange block quote \end{quote} \end{description} \section{HTML Blocks} Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is \emph{emphasized} And this is \textbf{strong} Here's a simple block: foo This should be a code block, though: \begin{verbatim}
foo
\end{verbatim} As should this: \begin{verbatim}
foo
\end{verbatim} Now, nested: foo This should just be an HTML comment: Multiline: Code block: \begin{verbatim} \end{verbatim} Just plain comment, with trailing spaces on the line: Code: \begin{verbatim}
\end{verbatim} Hr's: \begin{center}\rule{3in}{0.4pt}\end{center} \section{Inline Markup} This is \emph{emphasized}, and so \emph{is this}. This is \textbf{strong}, and so \textbf{is this}. An \emph{\href{/url}{emphasized link}}. \textbf{\emph{This is strong and em.}} So is \textbf{\emph{this}} word. \textbf{\emph{This is strong and em.}} So is \textbf{\emph{this}} word. This is code: \verb!>!, \verb!$!, \verb!\!, \verb!\$!, \verb!!. \sout{This is \emph{strikeout}.} Superscripts: a\textsuperscript{bc}d a\textsuperscript{\emph{hello}} a\textsuperscript{hello there}. Subscripts: H\textsubscript{2}O, H\textsubscript{23}O, H\textsubscript{many of them}O. These should not be superscripts or subscripts, because of the unescaped spaces: a\^{}b c\^{}d, a\ensuremath{\sim}b c\ensuremath{\sim}d. \begin{center}\rule{3in}{0.4pt}\end{center} \section{Smart quotes, ellipses, dashes} ``Hello,'' said the spider. ``\,`Shelob' is my name.'' `A', `B', and `C' are letters. `Oak,' `elm,' and `beech' are names of trees. So is `pine.' `He said, ``I want to go.''\,' Were you alive in the 70's? Here is some quoted `\verb!code!' and a ``\href{http://example.com/?foo=1&bar=2}{quoted link}''. Some dashes: one---two---three---four---five. Dashes between numbers: 5--7, 255--66, 1987--1999. Ellipses\ldots{}and\ldots{}and\ldots{}. \begin{center}\rule{3in}{0.4pt}\end{center} \section{LaTeX} \begin{itemize} \item \cite[22-23]{smith.1899} \item \doublespacing \item $2+2=4$ \item $x \in y$ \item $\alpha \wedge \omega$ \item $223$ \item $p$-Tree \item $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$ \item Here's one that has a line break in it: $\alpha + \omega \times x^2$. \end{itemize} These shouldn't be math: \begin{itemize} \item To get the famous equation, write \verb!$e = mc^2$!. \item \$22,000 is a \emph{lot} of money. So is \$34,000. (It worked if ``lot'' is emphasized.) \item Escaped \verb!$!: \$73 \emph{this should be emphasized} 23\$. \end{itemize} Here's a LaTeX table: \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} A table with one column: \begin{tabular}{c} Animal \\ Vegetable \end{tabular} \begin{center}\rule{3in}{0.4pt}\end{center} \section{Special Characters} Here is some unicode: \begin{itemize} \item I hat: Î \item o umlaut: ö \item section: § \item set membership: ∈ \item copyright: © \end{itemize} AT\&T has an ampersand in their name. AT\&T is another way to write it. This \& that. 4 \textless{} 5. 6 \textgreater{} 5. Backslash: \textbackslash{} Backtick: ` Asterisk: * Underscore: \_ Left brace: \{ Right brace: \} Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: \textgreater{} Hash: \# Period: . Bang: ! Plus: + Minus: - \begin{center}\rule{3in}{0.4pt}\end{center} \section{Links} \subsection{Explicit} Just a \href{/url/}{URL}. \href{/url/}{URL and title}. \href{/url/}{URL and title}. \href{/url/}{URL and title}. \href{/url/}{URL and title} \href{/url/}{URL and title} \href{/url/with_underscore}{with\_underscore} \href{mailto:nobody@nowhere.net}{Email link} \href{}{Empty}. \subsection{Reference} Foo \href{/url/}{bar}. Foo \href{/url/}{bar}. Foo \href{/url/}{bar}. With \href{/url/}{embedded [brackets]}. \href{/url/}{b} by itself should be a link. Indented \href{/url}{once}. Indented \href{/url}{twice}. Indented \href{/url}{thrice}. This should [not][] be a link. \begin{verbatim} [not]: /url \end{verbatim} Foo \href{/url/}{bar}. Foo \href{/url/}{biz}. \subsection{With ampersands} Here's a \href{http://example.com/?foo=1&bar=2}{link with an ampersand in the URL}. Here's a link with an amersand in the link text: \href{http://att.com/}{AT\&T}. Here's an \href{/script?foo=1&bar=2}{inline link}. Here's an \href{/script?foo=1&bar=2}{inline link in pointy braces}. \subsection{Autolinks} With an ampersand: \url{http://example.com/?foo=1&bar=2} \begin{itemize} \item In a list? \item \url{http://example.com/} \item It should. \end{itemize} An e-mail address: \href{mailto:nobody@nowhere.net}{nobody@nowhere.net} \begin{quote} Blockquoted: \url{http://example.com/} \end{quote} Auto-links should not occur here: \verb!! \begin{verbatim} or here: \end{verbatim} \begin{center}\rule{3in}{0.4pt}\end{center} \section{Images} From ``Voyage dans la Lune'' by Georges Melies (1902): \includegraphics{lalune.jpg} Here is a movie \includegraphics{movie.jpg} icon. \begin{center}\rule{3in}{0.4pt}\end{center} \section{Footnotes} Here is a footnote reference,\footnote{ Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. } and another.\footnote{ Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). \begin{Verbatim} { } \end{Verbatim} If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. } This should \emph{not} be a footnote reference, because it contains a space.[\^{}my note] Here is an inline note.\footnote{ This is \emph{easier} to type. Inline notes may contain \href{http://google.com}{links} and \verb!]! verbatim characters, as well as [bracketed text]. } \begin{quote} Notes can go in quotes.\footnote{ In quote. } \end{quote} \begin{enumerate}[1.] \item And in list items.\footnote{ In list. } \end{enumerate} This paragraph should not be part of the note, as it is not indented. \section{Escaped characters} \$ \% \& \# \_ \{ \} \end{document} pandoc-1.16.0.2~dfsg/tests/haddock-reader.haddock0000644000000000000000000000250012645626061020266 0ustar rootrootThis file tests the Pandoc reader for Haddock. We've borrowed examples from Haddock's documentation: . The following characters have special meanings in Haddock, \/, \', \`, \", \@, \<, so they must be escaped. \* This is a paragraph, not a list item. \> This sentence is not code. \>\>\> This is not an example. The references λ, λ and λ all represent the lower-case letter lambda. This is a code block: > map :: (a -> b) -> [a] -> [b] > map _ [] = [] > map f (x:xs) = f x : map f xs This is another code block: @ f x = x + x. The \@...\@ code block /interprets markup normally/. "Module.Foo" \"Hello World\" @ Haddock supports REPL examples: >>> fib 10 55 >>> putStrLn "foo\nbar" foo bar That was /really cool/! I had no idea @fib 10 = 55@. This module defines the type 'T'. The identifier 'M.T' is not in scope I don't have to escape my apostrophes; great, isn't it? This is a reference to the "Foo" module. This is a bulleted list: * first item * second item This is an enumerated list: (1) first item 2. second item This is a definition list: [@foo@] The description of @foo@. [@bar@] The description of @bar@. Here is a link: is a fun language! pandoc-1.16.0.2~dfsg/tests/tables.txt0000644000000000000000000000513612645626061016135 0ustar rootrootSimple table with caption: Right Left Center Default ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 Table: Demonstration of simple table syntax. Simple table without caption: Right Left Center Default ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Right Left Center Default ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 : Demonstration of simple table syntax. Multiline table with caption: : Here's the caption. It may span multiple lines. --------------------------------------------------------------- Centered Left Right Header Aligned Aligned Default aligned ---------- --------- ----------- --------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. --------------------------------------------------------------- Multiline table without caption: --------------------------------------------------------------- Centered Left Right Header Aligned Aligned Default aligned ---------- --------- ----------- --------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. --------------------------------------------------------------- Table without column headers: ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 ------- ------ ---------- ------- Multiline table without column headers: ---------- --------- ----------- --------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. ---------- --------- ----------- --------------------------- pandoc-1.16.0.2~dfsg/tests/markdown-citations.txt0000644000000000000000000000157212645626061020500 0ustar rootrootPandoc with citeproc-hs ======================= - [@nonexistent] - @nonexistent - @item1 says blah. - @item1 [p. 30] says blah. - @item1 [p. 30, with suffix] says blah. - @item1 [-@item2 p. 30; see also @пункт3] says blah. - In a note.[^1] - A citation group [see @item1 chap. 3; also @пункт3 p. 34-35]. - Another one [see @item1 p. 34-35]. - And another one in a note.[^2] - Citation with a suffix and locator [@item1 pp. 33, 35-37, and nowhere else]. - Citation with suffix only [@item1 and nowhere else]. - Now some modifiers.[^3] - With some markup [*see* @item1 p. **32**]. References ========== [^1]: @пункт3 [p. 12] and a citation without locators [@пункт3]. [^2]: Some citations [see @item1 chap. 3; @пункт3; @item2]. [^3]: Like a citation without author: [-@item1], and now Doe with a locator [-@item2 p. 44]. pandoc-1.16.0.2~dfsg/tests/test-pandoc.hs0000644000000000000000000000453712645626061016703 0ustar rootroot{-# OPTIONS_GHC -Wall #-} module Main where import Test.Framework import GHC.IO.Encoding import qualified Tests.Old import qualified Tests.Readers.LaTeX import qualified Tests.Readers.Markdown import qualified Tests.Readers.Org import qualified Tests.Readers.HTML import qualified Tests.Readers.RST import qualified Tests.Readers.Docx import qualified Tests.Readers.Odt import qualified Tests.Readers.Txt2Tags import qualified Tests.Readers.EPUB import qualified Tests.Writers.ConTeXt import qualified Tests.Writers.LaTeX import qualified Tests.Writers.HTML import qualified Tests.Writers.Docbook import qualified Tests.Writers.Native import qualified Tests.Writers.Markdown import qualified Tests.Writers.Plain import qualified Tests.Writers.AsciiDoc import qualified Tests.Writers.Docx import qualified Tests.Writers.RST import qualified Tests.Shared import qualified Tests.Walk import Text.Pandoc.Shared (inDirectory) import System.Environment (getArgs) tests :: [Test] tests = [ testGroup "Old" Tests.Old.tests , testGroup "Shared" Tests.Shared.tests , testGroup "Walk" Tests.Walk.tests , testGroup "Writers" [ testGroup "Native" Tests.Writers.Native.tests , testGroup "ConTeXt" Tests.Writers.ConTeXt.tests , testGroup "LaTeX" Tests.Writers.LaTeX.tests , testGroup "HTML" Tests.Writers.HTML.tests , testGroup "Docbook" Tests.Writers.Docbook.tests , testGroup "Markdown" Tests.Writers.Markdown.tests , testGroup "Plain" Tests.Writers.Plain.tests , testGroup "AsciiDoc" Tests.Writers.AsciiDoc.tests , testGroup "Docx" Tests.Writers.Docx.tests , testGroup "RST" Tests.Writers.RST.tests ] , testGroup "Readers" [ testGroup "LaTeX" Tests.Readers.LaTeX.tests , testGroup "Markdown" Tests.Readers.Markdown.tests , testGroup "HTML" Tests.Readers.HTML.tests , testGroup "Org" Tests.Readers.Org.tests , testGroup "RST" Tests.Readers.RST.tests , testGroup "Docx" Tests.Readers.Docx.tests , testGroup "Odt" Tests.Readers.Odt.tests , testGroup "Txt2Tags" Tests.Readers.Txt2Tags.tests , testGroup "EPUB" Tests.Readers.EPUB.tests ] ] main :: IO () main = do setLocaleEncoding utf8 args <- getArgs inDirectory "tests" $ defaultMainWithArgs tests args pandoc-1.16.0.2~dfsg/tests/tables.context0000644000000000000000000000431312645626061016776 0ustar rootrootSimple table with caption: \placetable{Demonstration of simple table syntax.} \starttable[|r|l|c|l|] \HL \NC Right \NC Left \NC Center \NC Default \NC\AR \HL \NC 12 \NC 12 \NC 12 \NC 12 \NC\AR \NC 123 \NC 123 \NC 123 \NC 123 \NC\AR \NC 1 \NC 1 \NC 1 \NC 1 \NC\AR \HL \stoptable Simple table without caption: \placetable[none]{} \starttable[|r|l|c|l|] \HL \NC Right \NC Left \NC Center \NC Default \NC\AR \HL \NC 12 \NC 12 \NC 12 \NC 12 \NC\AR \NC 123 \NC 123 \NC 123 \NC 123 \NC\AR \NC 1 \NC 1 \NC 1 \NC 1 \NC\AR \HL \stoptable Simple table indented two spaces: \placetable{Demonstration of simple table syntax.} \starttable[|r|l|c|l|] \HL \NC Right \NC Left \NC Center \NC Default \NC\AR \HL \NC 12 \NC 12 \NC 12 \NC 12 \NC\AR \NC 123 \NC 123 \NC 123 \NC 123 \NC\AR \NC 1 \NC 1 \NC 1 \NC 1 \NC\AR \HL \stoptable Multiline table with caption: \placetable{Here's the caption. It may span multiple lines.} \starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|] \HL \NC Centered Header \NC Left Aligned \NC Right Aligned \NC Default aligned \NC\AR \HL \NC First \NC row \NC 12.0 \NC Example of a row that spans multiple lines. \NC\AR \NC Second \NC row \NC 5.0 \NC Here's another one. Note the blank line between rows. \NC\AR \HL \stoptable Multiline table without caption: \placetable[none]{} \starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|] \HL \NC Centered Header \NC Left Aligned \NC Right Aligned \NC Default aligned \NC\AR \HL \NC First \NC row \NC 12.0 \NC Example of a row that spans multiple lines. \NC\AR \NC Second \NC row \NC 5.0 \NC Here's another one. Note the blank line between rows. \NC\AR \HL \stoptable Table without column headers: \placetable[none]{} \starttable[|r|l|c|r|] \HL \NC 12 \NC 12 \NC 12 \NC 12 \NC\AR \NC 123 \NC 123 \NC 123 \NC 123 \NC\AR \NC 1 \NC 1 \NC 1 \NC 1 \NC\AR \HL \stoptable Multiline table without column headers: \placetable[none]{} \starttable[|cp(0.15\textwidth)|lp(0.14\textwidth)|rp(0.16\textwidth)|lp(0.34\textwidth)|] \HL \NC First \NC row \NC 12.0 \NC Example of a row that spans multiple lines. \NC\AR \NC Second \NC row \NC 5.0 \NC Here's another one. Note the blank line between rows. \NC\AR \HL \stoptable pandoc-1.16.0.2~dfsg/tests/Tests/0000755000000000000000000000000012645626061015217 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/Tests/Arbitrary.hs0000644000000000000000000002023612645626061017515 0ustar rootroot{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE TypeSynonymInstances, FlexibleInstances, ScopedTypeVariables #-} -- provides Arbitrary instance for Pandoc types module Tests.Arbitrary () where import Test.QuickCheck.Gen import Test.QuickCheck.Arbitrary import Control.Monad (liftM, liftM2) import Text.Pandoc.Definition import Text.Pandoc.Shared (normalize, escapeURI) import Text.Pandoc.Builder realString :: Gen String realString = resize 8 $ listOf $ frequency [ (9, elements [' '..'\127']) , (1, elements ['\128'..'\9999']) ] arbAttr :: Gen Attr arbAttr = do id' <- elements ["","loc"] classes <- elements [[],["haskell"],["c","numberLines"]] keyvals <- elements [[],[("start","22")],[("a","11"),("b_2","a b c")]] return (id',classes,keyvals) instance Arbitrary Inlines where arbitrary = liftM (fromList :: [Inline] -> Inlines) arbitrary instance Arbitrary Blocks where arbitrary = liftM (fromList :: [Block] -> Blocks) arbitrary instance Arbitrary Inline where arbitrary = resize 3 $ arbInline 2 arbInlines :: Int -> Gen [Inline] arbInlines n = listOf1 (arbInline n) `suchThat` (not . startsWithSpace) where startsWithSpace (Space:_) = True startsWithSpace _ = False -- restrict to 3 levels of nesting max; otherwise we get -- bogged down in indefinitely large structures arbInline :: Int -> Gen Inline arbInline n = frequency $ [ (60, liftM Str realString) , (60, return Space) , (10, liftM2 Code arbAttr realString) , (5, elements [ RawInline (Format "html") "" , RawInline (Format "latex") "\\my{command}" ]) ] ++ [ x | x <- nesters, n > 1] where nesters = [ (10, liftM Emph $ arbInlines (n-1)) , (10, liftM Strong $ arbInlines (n-1)) , (10, liftM Strikeout $ arbInlines (n-1)) , (10, liftM Superscript $ arbInlines (n-1)) , (10, liftM Subscript $ arbInlines (n-1)) , (10, liftM SmallCaps $ arbInlines (n-1)) , (10, do x1 <- arbitrary x2 <- arbInlines (n-1) return $ Quoted x1 x2) , (10, do x1 <- arbitrary x2 <- realString return $ Math x1 x2) , (10, do x0 <- arbAttr x1 <- arbInlines (n-1) x3 <- realString x2 <- liftM escapeURI realString return $ Link x0 x1 (x2,x3)) , (10, do x0 <- arbAttr x1 <- arbInlines (n-1) x3 <- realString x2 <- liftM escapeURI realString return $ Image x0 x1 (x2,x3)) , (2, liftM2 Cite arbitrary (arbInlines 1)) , (2, liftM Note $ resize 3 $ listOf1 $ arbBlock (n-1)) ] instance Arbitrary Block where arbitrary = resize 3 $ arbBlock 2 arbBlock :: Int -> Gen Block arbBlock n = frequency $ [ (10, liftM Plain $ arbInlines (n-1)) , (15, liftM Para $ arbInlines (n-1)) , (5, liftM2 CodeBlock arbAttr realString) , (2, elements [ RawBlock (Format "html") "
\n*&*\n
" , RawBlock (Format "latex") "\\begin[opt]{env}\nhi\n{\\end{env}" ]) , (5, do x1 <- choose (1 :: Int, 6) x2 <- arbInlines (n-1) return (Header x1 nullAttr x2)) , (2, return HorizontalRule) ] ++ [x | x <- nesters, n > 0] where nesters = [ (5, liftM BlockQuote $ listOf1 $ arbBlock (n-1)) , (5, do x2 <- arbitrary x3 <- arbitrary x1 <- arbitrary `suchThat` (> 0) x4 <- listOf1 $ listOf1 $ arbBlock (n-1) return $ OrderedList (x1,x2,x3) x4 ) , (5, liftM BulletList $ (listOf1 $ listOf1 $ arbBlock (n-1))) , (5, do items <- listOf1 $ do x1 <- listOf1 $ listOf1 $ arbBlock (n-1) x2 <- arbInlines (n-1) return (x2,x1) return $ DefinitionList items) , (2, do rs <- choose (1 :: Int, 4) cs <- choose (1 :: Int, 4) x1 <- arbInlines (n-1) x2 <- vector cs x3 <- vectorOf cs $ elements [0, 0.25] x4 <- vectorOf cs $ listOf $ arbBlock (n-1) x5 <- vectorOf rs $ vectorOf cs $ listOf $ arbBlock (n-1) return (Table x1 x2 x3 x4 x5)) ] instance Arbitrary Pandoc where arbitrary = resize 8 $ liftM normalize $ liftM2 Pandoc arbitrary arbitrary instance Arbitrary CitationMode where arbitrary = do x <- choose (0 :: Int, 2) case x of 0 -> return AuthorInText 1 -> return SuppressAuthor 2 -> return NormalCitation _ -> error "FATAL ERROR: Arbitrary instance, logic bug" instance Arbitrary Citation where arbitrary = do x1 <- listOf $ elements $ ['a'..'z'] ++ ['0'..'9'] ++ ['_'] x2 <- arbInlines 1 x3 <- arbInlines 1 x4 <- arbitrary x5 <- arbitrary x6 <- arbitrary return (Citation x1 x2 x3 x4 x5 x6) instance Arbitrary MathType where arbitrary = do x <- choose (0 :: Int, 1) case x of 0 -> return DisplayMath 1 -> return InlineMath _ -> error "FATAL ERROR: Arbitrary instance, logic bug" instance Arbitrary QuoteType where arbitrary = do x <- choose (0 :: Int, 1) case x of 0 -> return SingleQuote 1 -> return DoubleQuote _ -> error "FATAL ERROR: Arbitrary instance, logic bug" instance Arbitrary Meta where arbitrary = do (x1 :: Inlines) <- arbitrary (x2 :: [Inlines]) <- liftM (filter (not . isNull)) arbitrary (x3 :: Inlines) <- arbitrary return $ setMeta "title" x1 $ setMeta "author" x2 $ setMeta "date" x3 $ nullMeta instance Arbitrary Alignment where arbitrary = do x <- choose (0 :: Int, 3) case x of 0 -> return AlignLeft 1 -> return AlignRight 2 -> return AlignCenter 3 -> return AlignDefault _ -> error "FATAL ERROR: Arbitrary instance, logic bug" instance Arbitrary ListNumberStyle where arbitrary = do x <- choose (0 :: Int, 6) case x of 0 -> return DefaultStyle 1 -> return Example 2 -> return Decimal 3 -> return LowerRoman 4 -> return UpperRoman 5 -> return LowerAlpha 6 -> return UpperAlpha _ -> error "FATAL ERROR: Arbitrary instance, logic bug" instance Arbitrary ListNumberDelim where arbitrary = do x <- choose (0 :: Int, 3) case x of 0 -> return DefaultDelim 1 -> return Period 2 -> return OneParen 3 -> return TwoParens _ -> error "FATAL ERROR: Arbitrary instance, logic bug" pandoc-1.16.0.2~dfsg/tests/Tests/Helpers.hs0000644000000000000000000000473412645626061017165 0ustar rootroot{-# LANGUAGE TypeSynonymInstances, FlexibleInstances #-} -- Utility functions for the test suite. module Tests.Helpers ( test , (=?>) , property , ToString(..) , ToPandoc(..) ) where import Text.Pandoc.Definition import Text.Pandoc.Builder (Inlines, Blocks, doc, plain) import Test.Framework import Test.Framework.Providers.HUnit import Test.Framework.Providers.QuickCheck2 import Test.HUnit (assertBool) import Text.Pandoc.Shared (normalize, trimr) import Text.Pandoc.Options import Text.Pandoc.Writers.Native (writeNative) import qualified Test.QuickCheck.Property as QP import Data.Algorithm.Diff import qualified Data.Map as M test :: (ToString a, ToString b, ToString c) => (a -> b) -- ^ function to test -> String -- ^ name of test case -> (a, c) -- ^ (input, expected value) -> Test test fn name (input, expected) = testCase name $ assertBool msg (actual' == expected') where msg = nl ++ dashes "input" ++ nl ++ input' ++ nl ++ dashes "result" ++ nl ++ unlines (map vividize diff) ++ dashes "" nl = "\n" input' = toString input actual' = lines $ toString $ fn input expected' = lines $ toString expected diff = getDiff expected' actual' dashes "" = replicate 72 '-' dashes x = replicate (72 - length x - 5) '-' ++ " " ++ x ++ " ---" vividize :: Diff String -> String vividize (Both s _) = " " ++ s vividize (First s) = "- " ++ s vividize (Second s) = "+ " ++ s property :: QP.Testable a => TestName -> a -> Test property = testProperty infix 5 =?> (=?>) :: a -> b -> (a,b) x =?> y = (x, y) class ToString a where toString :: a -> String instance ToString Pandoc where toString d = writeNative def{ writerStandalone = s } $ toPandoc d where s = case d of (Pandoc (Meta m) _) | M.null m -> False | otherwise -> True instance ToString Blocks where toString = writeNative def . toPandoc instance ToString Inlines where toString = trimr . writeNative def . toPandoc instance ToString String where toString = id class ToPandoc a where toPandoc :: a -> Pandoc instance ToPandoc Pandoc where toPandoc = normalize instance ToPandoc Blocks where toPandoc = normalize . doc instance ToPandoc Inlines where toPandoc = normalize . doc . plain pandoc-1.16.0.2~dfsg/tests/Tests/Walk.hs0000644000000000000000000000241712645626061016455 0ustar rootroot{-# LANGUAGE ScopedTypeVariables, FlexibleContexts #-} module Tests.Walk (tests) where import Text.Pandoc.Definition import Text.Pandoc.Walk import Test.Framework import Tests.Helpers import Data.Char (toUpper) import Tests.Arbitrary() import Data.Generics tests :: [Test] tests = [ testGroup "Walk" [ property "p_walk inlineTrans" (p_walk inlineTrans) , property "p_walk blockTrans" (p_walk blockTrans) , property "p_query inlineQuery" (p_query inlineQuery) , property "p_query blockQuery" (p_query blockQuery) ] ] p_walk :: (Typeable a, Walkable a Pandoc) => (a -> a) -> Pandoc -> Bool p_walk f d = everywhere (mkT f) d == walk f d p_query :: (Eq a, Typeable a1, Monoid a, Walkable a1 Pandoc) => (a1 -> a) -> Pandoc -> Bool p_query f d = everything mappend (mempty `mkQ` f) d == query f d inlineTrans :: Inline -> Inline inlineTrans (Str xs) = Str $ map toUpper xs inlineTrans (Emph xs) = Strong xs inlineTrans x = x blockTrans :: Block -> Block blockTrans (Plain xs) = Para xs blockTrans (BlockQuote xs) = Div ("",["special"],[]) xs blockTrans x = x inlineQuery :: Inline -> String inlineQuery (Str xs) = xs inlineQuery _ = "" blockQuery :: Block -> [Int] blockQuery (Header lev _ _) = [lev] blockQuery _ = [] pandoc-1.16.0.2~dfsg/tests/Tests/Old.hs0000644000000000000000000003012112645626061016266 0ustar rootrootmodule Tests.Old (tests) where import Test.Framework (testGroup, Test ) import Test.Framework.Providers.HUnit import Test.HUnit ( assertBool ) import System.Environment.Executable (getExecutablePath) import System.IO ( openTempFile, stderr ) import System.Process ( runProcess, waitForProcess ) import System.FilePath ( (), (<.>), takeDirectory, splitDirectories, joinPath ) import System.Directory import System.Exit import Data.Algorithm.Diff import Text.Pandoc.Shared ( normalize ) import Text.Pandoc.Options import Text.Pandoc.Writers.Native ( writeNative ) import Text.Pandoc.Readers.Native ( readNative ) import Prelude hiding ( readFile ) import qualified Data.ByteString.Lazy as B import Text.Pandoc.UTF8 (toStringLazy) import Text.Printf import Text.Pandoc.Error readFileUTF8 :: FilePath -> IO String readFileUTF8 f = B.readFile f >>= return . toStringLazy data TestResult = TestPassed | TestError ExitCode | TestFailed String FilePath [Diff String] deriving (Eq) instance Show TestResult where show TestPassed = "PASSED" show (TestError ec) = "ERROR " ++ show ec show (TestFailed cmd file d) = '\n' : dash ++ "\n--- " ++ file ++ "\n+++ " ++ cmd ++ "\n" ++ showDiff (1,1) d ++ dash where dash = replicate 72 '-' showDiff :: (Int,Int) -> [Diff String] -> String showDiff _ [] = "" showDiff (l,r) (First ln : ds) = printf "+%4d " l ++ ln ++ "\n" ++ showDiff (l+1,r) ds showDiff (l,r) (Second ln : ds) = printf "-%4d " r ++ ln ++ "\n" ++ showDiff (l,r+1) ds showDiff (l,r) (Both _ _ : ds) = showDiff (l+1,r+1) ds tests :: [Test] tests = [ testGroup "markdown" [ testGroup "writer" $ writerTests "markdown" ++ lhsWriterTests "markdown" , testGroup "reader" [ test "basic" ["-r", "markdown", "-w", "native", "-s", "-S"] "testsuite.txt" "testsuite.native" , test "tables" ["-r", "markdown", "-w", "native", "--columns=80"] "tables.txt" "tables.native" , test "pipe tables" ["-r", "markdown", "-w", "native", "--columns=80"] "pipe-tables.txt" "pipe-tables.native" , test "more" ["-r", "markdown", "-w", "native", "-S"] "markdown-reader-more.txt" "markdown-reader-more.native" , lhsReaderTest "markdown+lhs" ] , testGroup "citations" [ test "citations" ["-r", "markdown", "-w", "native"] "markdown-citations.txt" "markdown-citations.native" ] ] , testGroup "rst" [ testGroup "writer" (writerTests "rst" ++ lhsWriterTests "rst") , testGroup "reader" [ test "basic" ["-r", "rst", "-w", "native", "-s", "-S", "--columns=80"] "rst-reader.rst" "rst-reader.native" , test "tables" ["-r", "rst", "-w", "native", "--columns=80"] "tables.rst" "tables-rstsubset.native" , lhsReaderTest "rst+lhs" ] ] , testGroup "latex" [ testGroup "writer" (writerTests "latex" ++ lhsWriterTests "latex") , testGroup "reader" [ test "basic" ["-r", "latex", "-w", "native", "-s", "-R"] "latex-reader.latex" "latex-reader.native" , lhsReaderTest "latex+lhs" ] ] , testGroup "html" [ testGroup "writer" (writerTests "html" ++ lhsWriterTests "html") , test "reader" ["-r", "html", "-w", "native", "-s"] "html-reader.html" "html-reader.native" ] , testGroup "s5" [ s5WriterTest "basic" ["-s"] "s5" , s5WriterTest "fancy" ["-s","-m","-i"] "s5" , s5WriterTest "fragment" [] "html" , s5WriterTest "inserts" ["-s", "-H", "insert", "-B", "insert", "-A", "insert", "-c", "main.css"] "html" ] , testGroup "textile" [ testGroup "writer" $ writerTests "textile" , test "reader" ["-r", "textile", "-w", "native", "-s"] "textile-reader.textile" "textile-reader.native" ] , testGroup "docbook" [ testGroup "writer" $ writerTests "docbook" , test "reader" ["-r", "docbook", "-w", "native", "-s"] "docbook-reader.docbook" "docbook-reader.native" , test "reader" ["-r", "docbook", "-w", "native", "-s"] "docbook-xref.docbook" "docbook-xref.native" ] , testGroup "native" [ testGroup "writer" $ writerTests "native" , test "reader" ["-r", "native", "-w", "native", "-s"] "testsuite.native" "testsuite.native" ] , testGroup "fb2" [ fb2WriterTest "basic" [] "fb2/basic.markdown" "fb2/basic.fb2" , fb2WriterTest "titles" [] "fb2/titles.markdown" "fb2/titles.fb2" , fb2WriterTest "images" [] "fb2/images.markdown" "fb2/images.fb2" , fb2WriterTest "images-embedded" [] "fb2/images-embedded.html" "fb2/images-embedded.fb2" , fb2WriterTest "math" [] "fb2/math.markdown" "fb2/math.fb2" , fb2WriterTest "tables" [] "tables.native" "tables.fb2" , fb2WriterTest "testsuite" [] "testsuite.native" "writer.fb2" ] , testGroup "mediawiki" [ testGroup "writer" $ writerTests "mediawiki" , test "reader" ["-r", "mediawiki", "-w", "native", "-s"] "mediawiki-reader.wiki" "mediawiki-reader.native" ] , testGroup "dokuwiki" [ testGroup "writer" $ writerTests "dokuwiki" , test "inline_formatting" ["-r", "native", "-w", "dokuwiki", "-s"] "dokuwiki_inline_formatting.native" "dokuwiki_inline_formatting.dokuwiki" , test "multiblock table" ["-r", "native", "-w", "dokuwiki", "-s"] "dokuwiki_multiblock_table.native" "dokuwiki_multiblock_table.dokuwiki" , test "external images" ["-r", "native", "-w", "dokuwiki", "-s"] "dokuwiki_external_images.native" "dokuwiki_external_images.dokuwiki" ] , testGroup "opml" [ test "basic" ["-r", "native", "-w", "opml", "--columns=78", "-s"] "testsuite.native" "writer.opml" , test "reader" ["-r", "opml", "-w", "native", "-s"] "opml-reader.opml" "opml-reader.native" ] , testGroup "haddock" [ testGroup "writer" $ writerTests "haddock" , test "reader" ["-r", "haddock", "-w", "native", "-s"] "haddock-reader.haddock" "haddock-reader.native" ] , testGroup "txt2tags" [ test "reader" ["-r", "t2t", "-w", "native", "-s"] "txt2tags.t2t" "txt2tags.native" ] , testGroup "epub" [ test "features" ["-r", "epub", "-w", "native"] "epub/features.epub" "epub/features.native" , test "wasteland" ["-r", "epub", "-w", "native"] "epub/wasteland.epub" "epub/wasteland.native" , test "formatting" ["-r", "epub", "-w", "native"] "epub/formatting.epub" "epub/formatting.native" ] , testGroup "twiki" [ test "reader" ["-r", "twiki", "-w", "native", "-s"] "twiki-reader.twiki" "twiki-reader.native" ] , testGroup "other writers" $ map (\f -> testGroup f $ writerTests f) [ "opendocument" , "context" , "texinfo", "icml" , "man" , "plain" , "rtf", "org", "asciidoc" ] , testGroup "writers-lang-and-dir" [ test "latex" ["-f", "native", "-t", "latex", "-s"] "writers-lang-and-dir.native" "writers-lang-and-dir.latex" , test "context" ["-f", "native", "-t", "context", "-s"] "writers-lang-and-dir.native" "writers-lang-and-dir.context" ] ] -- makes sure file is fully closed after reading readFile' :: FilePath -> IO String readFile' f = do s <- readFileUTF8 f return $! (length s `seq` s) lhsWriterTests :: String -> [Test] lhsWriterTests format = [ t "lhs to normal" format , t "lhs to lhs" (format ++ "+lhs") ] where t n f = test n ["--wrap=preserve", "-r", "native", "-s", "-w", f] "lhs-test.native" ("lhs-test" <.> f) lhsReaderTest :: String -> Test lhsReaderTest format = testWithNormalize normalizer "lhs" ["-r", format, "-w", "native"] ("lhs-test" <.> format) norm where normalizer = writeNative def . normalize . handleError . readNative norm = if format == "markdown+lhs" then "lhs-test-markdown.native" else "lhs-test.native" writerTests :: String -> [Test] writerTests format = [ test "basic" (opts ++ ["-s"]) "testsuite.native" ("writer" <.> format) , test "tables" opts "tables.native" ("tables" <.> format) ] where opts = ["-r", "native", "-w", format, "--columns=78", "--variable", "pandoc-version="] s5WriterTest :: String -> [String] -> String -> Test s5WriterTest modifier opts format = test (format ++ " writer (" ++ modifier ++ ")") (["-r", "native", "-w", format] ++ opts) "s5.native" ("s5-" ++ modifier <.> "html") fb2WriterTest :: String -> [String] -> String -> String -> Test fb2WriterTest title opts inputfile normfile = testWithNormalize (ignoreBinary . formatXML) title (["-t", "fb2"]++opts) inputfile normfile where formatXML xml = splitTags $ zip xml (drop 1 xml) splitTags [] = [] splitTags [end] = fst end : snd end : [] splitTags (('>','<'):rest) = ">\n" ++ splitTags rest splitTags ((c,_):rest) = c : splitTags rest ignoreBinary = unlines . filter (not . startsWith " [String] -- ^ Options to pass to pandoc -> String -- ^ Input filepath -> FilePath -- ^ Norm (for test results) filepath -> Test test = testWithNormalize id -- | Run a test with normalize function, return True if test passed. testWithNormalize :: (String -> String) -- ^ Normalize function for output -> String -- ^ Title of test -> [String] -- ^ Options to pass to pandoc -> String -- ^ Input filepath -> FilePath -- ^ Norm (for test results) filepath -> Test testWithNormalize normalizer testname opts inp norm = testCase testname $ do -- find pandoc executable relative to test-pandoc -- First, try in same directory (e.g. if both in ~/.cabal/bin) -- Second, try ../pandoc (e.g. if in dist/XXX/build/test-pandoc) pandocPath <- do testExePath <- getExecutablePath let testExeDir = takeDirectory testExePath found <- doesFileExist (testExeDir "pandoc") return $ if found then testExeDir "pandoc" else case splitDirectories testExeDir of [] -> error "test-pandoc: empty testExeDir" xs -> joinPath (init xs) "pandoc" "pandoc" (outputPath, hOut) <- openTempFile "" "pandoc-test" let inpPath = inp let normPath = norm let options = ["--data-dir", ".." "data"] ++ [inpPath] ++ opts let cmd = pandocPath ++ " " ++ unwords options ph <- runProcess pandocPath options Nothing (Just [("TMP","."),("LANG","en_US.UTF-8"),("HOME", "./")]) Nothing (Just hOut) (Just stderr) ec <- waitForProcess ph result <- if ec == ExitSuccess then do -- filter \r so the tests will work on Windows machines outputContents <- readFile' outputPath >>= return . filter (/='\r') . normalizer normContents <- readFile' normPath >>= return . filter (/='\r') . normalizer if outputContents == normContents then return TestPassed else return $ TestFailed cmd normPath $ getDiff (lines outputContents) (lines normContents) else return $ TestError ec removeFile outputPath assertBool (show result) (result == TestPassed) pandoc-1.16.0.2~dfsg/tests/Tests/Shared.hs0000644000000000000000000000553712645626061016773 0ustar rootrootmodule Tests.Shared (tests) where import Text.Pandoc.Definition import Text.Pandoc.Shared import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Test.Framework.Providers.HUnit import Test.HUnit ( assertBool, (@?=) ) import Text.Pandoc.Builder import System.FilePath.Posix (joinPath) tests :: [Test] tests = [ testGroup "normalize" [ property "p_normalize_blocks_rt" p_normalize_blocks_rt , property "p_normalize_inlines_rt" p_normalize_inlines_rt , property "p_normalize_no_trailing_spaces" p_normalize_no_trailing_spaces ] , testGroup "compactify'DL" [ testCase "compactify'DL with empty def" $ assertBool "compactify'DL" (let x = [(str "word", [para (str "def"), mempty])] in compactify'DL x == x) ] , testGroup "collapseFilePath" testCollapse ] p_normalize_blocks_rt :: [Block] -> Bool p_normalize_blocks_rt bs = normalizeBlocks bs == normalizeBlocks (normalizeBlocks bs) p_normalize_inlines_rt :: [Inline] -> Bool p_normalize_inlines_rt ils = normalizeInlines ils == normalizeInlines (normalizeInlines ils) p_normalize_no_trailing_spaces :: [Inline] -> Bool p_normalize_no_trailing_spaces ils = null ils' || last ils' /= Space where ils' = normalizeInlines $ ils ++ [Space] testCollapse :: [Test] testCollapse = map (testCase "collapse") [ (collapseFilePath (joinPath [ ""]) @?= (joinPath [ ""])) , (collapseFilePath (joinPath [ ".","foo"]) @?= (joinPath [ "foo"])) , (collapseFilePath (joinPath [ ".",".","..","foo"]) @?= (joinPath [ joinPath ["..", "foo"]])) , (collapseFilePath (joinPath [ "..","foo"]) @?= (joinPath [ "..","foo"])) , (collapseFilePath (joinPath [ "","bar","..","baz"]) @?= (joinPath [ "","baz"])) , (collapseFilePath (joinPath [ "","..","baz"]) @?= (joinPath [ "","..","baz"])) , (collapseFilePath (joinPath [ ".","foo","..",".","bar","..",".",".","baz"]) @?= (joinPath [ "baz"])) , (collapseFilePath (joinPath [ ".",""]) @?= (joinPath [ ""])) , (collapseFilePath (joinPath [ ".",".",""]) @?= (joinPath [ ""])) , (collapseFilePath (joinPath [ "..",""]) @?= (joinPath [ ".."])) , (collapseFilePath (joinPath [ "..",".",""]) @?= (joinPath [ ".."])) , (collapseFilePath (joinPath [ ".","..",""]) @?= (joinPath [ ".."])) , (collapseFilePath (joinPath [ "..","..",""]) @?= (joinPath [ "..",".."])) , (collapseFilePath (joinPath [ "parent","foo","baz","..","bar"]) @?= (joinPath [ "parent","foo","bar"])) , (collapseFilePath (joinPath [ "parent","foo","baz","..","..","bar"]) @?= (joinPath [ "parent","bar"])) , (collapseFilePath (joinPath [ "parent","foo",".."]) @?= (joinPath [ "parent"])) , (collapseFilePath (joinPath [ "","parent","foo","..","..","bar"]) @?= (joinPath [ "","bar"])) , (collapseFilePath (joinPath [ "",".","parent","foo"]) @?= (joinPath [ "","parent","foo"]))] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/0000755000000000000000000000000012645626061016604 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/Tests/Readers/Txt2Tags.hs0000644000000000000000000003437712645626061020636 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Readers.Txt2Tags (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Text.Pandoc.Builder import Text.Pandoc import Text.Pandoc.Error import Data.List (intersperse) import Text.Pandoc.Readers.Txt2Tags t2t :: String -> Pandoc t2t = handleError . readTxt2Tags (T2TMeta "date" "mtime" "in" "out") def infix 4 =: (=:) :: ToString c => String -> (String, c) -> Test (=:) = test t2t spcSep :: [Inlines] -> Inlines spcSep = mconcat . intersperse space simpleTable' :: Int -> [Blocks] -> [[Blocks]] -> Blocks simpleTable' n = table "" (take n $ repeat (AlignCenter, 0.0)) tests :: [Test] tests = [ testGroup "Inlines" $ [ "Plain String" =: "Hello, World" =?> para (spcSep [ "Hello,", "World" ]) , "Emphasis" =: "//Planet Punk//" =?> para (emph . spcSep $ ["Planet", "Punk"]) , "Strong" =: "**Cider**" =?> para (strong "Cider") , "Strong Emphasis" =: "//**strength**//" =?> para (emph . strong $ "strength") , "Strikeout" =: "--Kill Bill--" =?> para (strikeout . spcSep $ [ "Kill", "Bill" ]) , "Verbatim" =: "``Robot.rock()``" =?> para (code "Robot.rock()") , "Symbol" =: "A * symbol" =?> para (str "A" <> space <> str "*" <> space <> "symbol") , "No empty markup" =: "//// **** ____ ---- ```` \"\"\"\" ''''" =?> para (spcSep [ "////", "****", "____", "----", "````", "\"\"\"\"", "''''" ]) , "Inline markup is greedy" =: "***** ///// _____ ----- ````` \"\"\"\"\" '''''" =?> para (spcSep [strong "*", emph "/", emph "_" , strikeout "-", code "`", text "\"" , rawInline "html" "'"]) , "Markup must be greedy" =: "********** ////////// __________ ---------- `````````` \"\"\"\"\"\"\"\"\"\" ''''''''''" =?> para (spcSep [strong "******", emph "//////", emph "______" , strikeout "------", code "``````", text "\"\"\"\"\"\"" , rawInline "html" "''''''"]) , "Inlines must be glued" =: "** a** **a ** ** a **" =?> para (text "** a** **a ** ** a **") , "Macros: Date" =: "%%date" =?> para "date" , "Macros: Mod Time" =: "%%mtime" =?> para "mtime" , "Macros: Infile" =: "%%infile" =?> para "in" , "Macros: Outfile" =: "%%outfile" =?> para "out" , "Autolink" =: "http://www.google.com" =?> para (link "http://www.google.com" "" (str "http://www.google.com")) , "Image" =: "[image.jpg]" =?> para (image "image.jpg" "" mempty) , "Link" =: "[title http://google.com]" =?> para (link "http://google.com" "" (str "title")) , "Image link" =: "[[image.jpg] abc]" =?> para (link "abc" "" (image "image.jpg" "" mempty)) , "Invalid link: No trailing space" =: "[title invalid ]" =?> para (text "[title invalid ]") ] , testGroup "Basic Blocks" $ ["Paragraph, lines grouped together" =: "A paragraph\n A blank line ends the \n current paragraph\n" =?> para "A paragraph\n A blank line ends the\n current paragraph" , "Paragraph, ignore leading and trailing spaces" =: " Leading and trailing spaces are ignored. \n" =?> para "Leading and trailing spaces are ignored." , "Comment line in paragraph" =: "A comment line can be placed inside a paragraph.\n% this comment will be ignored \nIt will not affect it.\n" =?> para "A comment line can be placed inside a paragraph.\nIt will not affect it." , "Paragraph" =: "Paragraph\n" =?> para "Paragraph" , "First Level Header" =: "+ Headline +\n" =?> header 1 "Headline" , "Third Level Header" =: "=== Third Level Headline ===\n" =?> header 3 ("Third" <> space <> "Level" <> space <> "Headline") , "Header with label" =: "= header =[label]" =?> headerWith ("label", [], []) 1 ("header") , "Invalid header, mismatched delimiters" =: "== header =" =?> para (text "== header =") , "Invalid header, spaces in label" =: "== header ==[ haha ]" =?> para (text "== header ==[ haha ]") , "Invalid header, invalid label character" =: "== header ==[lab/el]" =?> para (text "== header ==[lab/el]") , "Headers not preceded by a blank line" =: unlines [ "++ eat dinner ++" , "Spaghetti and meatballs tonight." , "== walk dog ==" ] =?> mconcat [ header 2 ("eat" <> space <> "dinner") , para $ spcSep [ "Spaghetti", "and", "meatballs", "tonight." ] , header 2 ("walk" <> space <> "dog") ] , "Paragraph starting with an equals" =: "=five" =?> para "=five" , "Paragraph containing asterisk at beginning of line" =: unlines [ "lucky" , "*star" ] =?> para ("lucky" <> softbreak <> "*star") , "Horizontal Rule" =: unlines [ "before" , replicate 20 '-' , replicate 20 '=' , replicate 20 '_' , "after" ] =?> mconcat [ para "before" , horizontalRule , horizontalRule , horizontalRule , para "after" ] , "Comment Block" =: unlines [ "%%%" , "stuff" , "bla" , "%%%"] =?> (mempty::Blocks) ] , testGroup "Lists" $ [ "Simple Bullet Lists" =: ("- Item1\n" ++ "- Item2\n") =?> bulletList [ plain "Item1" , plain "Item2" ] , "Indented Bullet Lists" =: (" - Item1\n" ++ " - Item2\n") =?> bulletList [ plain "Item1" , plain "Item2" ] , "Nested Bullet Lists" =: ("- Discovery\n" ++ " + One More Time\n" ++ " + Harder, Better, Faster, Stronger\n" ++ "- Homework\n" ++ " + Around the World\n"++ "- Human After All\n" ++ " + Technologic\n" ++ " + Robot Rock\n") =?> bulletList [ mconcat [ plain "Discovery" , orderedList [ plain ("One" <> space <> "More" <> space <> "Time") , plain ("Harder," <> space <> "Better," <> space <> "Faster," <> space <> "Stronger") ] ] , mconcat [ plain "Homework" , orderedList [ plain ("Around" <> space <> "the" <> space <> "World") ] ] , mconcat [ plain ("Human" <> space <> "After" <> space <> "All") , orderedList [ plain "Technologic" , plain ("Robot" <> space <> "Rock") ] ] ] , "Simple Ordered List" =: ("+ Item1\n" ++ "+ Item2\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ plain "Item1" , plain "Item2" ] in orderedListWith listStyle listStructure , "Indented Ordered List" =: (" + Item1\n" ++ " + Item2\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ plain "Item1" , plain "Item2" ] in orderedListWith listStyle listStructure , "Nested Ordered Lists" =: ("+ One\n" ++ " + One-One\n" ++ " + One-Two\n" ++ "+ Two\n" ++ " + Two-One\n"++ " + Two-Two\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ mconcat [ plain "One" , orderedList [ plain "One-One" , plain "One-Two" ] ] , mconcat [ plain "Two" , orderedList [ plain "Two-One" , plain "Two-Two" ] ] ] in orderedListWith listStyle listStructure , "Ordered List in Bullet List" =: ("- Emacs\n" ++ " + Org\n") =?> bulletList [ (plain "Emacs") <> (orderedList [ plain "Org"]) ] , "Bullet List in Ordered List" =: ("+ GNU\n" ++ " - Freedom\n") =?> orderedList [ (plain "GNU") <> bulletList [ (plain "Freedom") ] ] , "Definition List" =: unlines [ ": PLL" , " phase-locked loop" , ": TTL" , " transistor-transistor logic" , ": PSK" , " a digital" ] =?> definitionList [ ("PLL", [ plain $ "phase-locked" <> space <> "loop" ]) , ("TTL", [ plain $ "transistor-transistor" <> space <> "logic" ]) , ("PSK", [ plain $ "a" <> space <> "digital" ]) ] , "Loose bullet list" =: unlines [ "- apple" , "" , "- orange" , "" , "- peach" ] =?> bulletList [ para "apple" , para "orange" , para "peach" ] ] , testGroup "Tables" [ "Single cell table" =: "| Test " =?> simpleTable' 1 mempty [[plain "Test"]] , "Multi cell table" =: "| One | Two |" =?> simpleTable' 2 mempty [ [ plain "One", plain "Two" ] ] , "Multi line table" =: unlines [ "| One |" , "| Two |" , "| Three |" ] =?> simpleTable' 1 mempty [ [ plain "One" ] , [ plain "Two" ] , [ plain "Three" ] ] , "Empty table" =: "| |" =?> simpleTable' 1 mempty [[mempty]] , "Glider Table" =: unlines [ "| 1 | 0 | 0 |" , "| 0 | 1 | 1 |" , "| 1 | 1 | 0 |" ] =?> simpleTable' 3 mempty [ [ plain "1", plain "0", plain "0" ] , [ plain "0", plain "1", plain "1" ] , [ plain "1", plain "1", plain "0" ] ] , "Table with Header" =: unlines [ "|| Species | Status |" , "| cervisiae | domesticated |" , "| paradoxus | wild |" ] =?> simpleTable [ plain "Species", plain "Status" ] [ [ plain "cervisiae", plain "domesticated" ] , [ plain "paradoxus", plain "wild" ] ] , "Table alignment determined by spacing" =: unlines [ "| Numbers | Text | More |" , "| 1 | One | foo |" , "| 2 | Two | bar |" ] =?> table "" (zip [AlignCenter, AlignRight, AlignDefault] [0, 0, 0]) [] [ [ plain "Numbers", plain "Text", plain "More" ] , [ plain "1" , plain "One" , plain "foo" ] , [ plain "2" , plain "Two" , plain "bar" ] ] , "Pipe within text doesn't start a table" =: "Ceci n'est pas une | pipe " =?> para (spcSep [ "Ceci", "n'est", "pas", "une", "|", "pipe" ]) , "Table with differing row lengths" =: unlines [ "|| Numbers | Text " , "| 1 | One | foo |" , "| 2 " ] =?> table "" (zip [AlignCenter, AlignLeft, AlignLeft] [0, 0, 0]) [ plain "Numbers", plain "Text" , plain mempty ] [ [ plain "1" , plain "One" , plain "foo" ] , [ plain "2" , plain mempty , plain mempty ] ] ] , testGroup "Blocks and fragments" [ "Source block" =: unlines [ "```" , "main = putStrLn greeting" , " where greeting = \"moin\"" , "```" ] =?> let code' = "main = putStrLn greeting\n" ++ " where greeting = \"moin\"\n" in codeBlock code' , "tagged block" =: unlines [ "'''" , "" , "'''" ] =?> rawBlock "html" "\n" , "Quote block" =: unlines ["\t//Niemand// hat die Absicht, eine Mauer zu errichten!" ] =?> blockQuote (para (spcSep [ emph "Niemand", "hat", "die", "Absicht," , "eine", "Mauer", "zu", "errichten!" ])) ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/Markdown.hs0000644000000000000000000005070012645626061020724 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Readers.Markdown (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Text.Pandoc.Builder import qualified Data.Set as Set -- import Text.Pandoc.Shared ( normalize ) import Text.Pandoc import Text.Pandoc.Error markdown :: String -> Pandoc markdown = handleError . readMarkdown def markdownSmart :: String -> Pandoc markdownSmart = handleError . readMarkdown def { readerSmart = True } markdownCDL :: String -> Pandoc markdownCDL = handleError . readMarkdown def { readerExtensions = Set.insert Ext_compact_definition_lists $ readerExtensions def } markdownGH :: String -> Pandoc markdownGH = handleError . readMarkdown def { readerExtensions = githubMarkdownExtensions } infix 4 =: (=:) :: ToString c => String -> (String, c) -> Test (=:) = test markdown testBareLink :: (String, Inlines) -> Test testBareLink (inp, ils) = test (handleError . readMarkdown def{ readerExtensions = Set.fromList [Ext_autolink_bare_uris, Ext_raw_html] }) inp (inp, doc $ para ils) autolink :: String -> Inlines autolink s = link s "" (str s) bareLinkTests :: [(String, Inlines)] bareLinkTests = [ ("http://google.com is a search engine.", autolink "http://google.com" <> " is a search engine.") , ("
http://foo.bar.baz", rawInline "html" "" <> "http://foo.bar.baz" <> rawInline "html" "") , ("Try this query: http://google.com?search=fish&time=hour.", "Try this query: " <> autolink "http://google.com?search=fish&time=hour" <> ".") , ("HTTPS://GOOGLE.COM,", autolink "HTTPS://GOOGLE.COM" <> ",") , ("http://el.wikipedia.org/wiki/Τεχνολογία,", autolink "http://el.wikipedia.org/wiki/Τεχνολογία" <> ",") , ("doi:10.1000/182,", autolink "doi:10.1000/182" <> ",") , ("git://github.com/foo/bar.git,", autolink "git://github.com/foo/bar.git" <> ",") , ("file:///Users/joe/joe.txt, and", autolink "file:///Users/joe/joe.txt" <> ", and") , ("mailto:someone@somedomain.com.", autolink "mailto:someone@somedomain.com" <> ".") , ("Use http: this is not a link!", "Use http: this is not a link!") , ("(http://google.com).", "(" <> autolink "http://google.com" <> ").") , ("http://en.wikipedia.org/wiki/Sprite_(computer_graphics)", autolink "http://en.wikipedia.org/wiki/Sprite_(computer_graphics)") , ("http://en.wikipedia.org/wiki/Sprite_[computer_graphics]", link "http://en.wikipedia.org/wiki/Sprite_%5Bcomputer_graphics%5D" "" (str "http://en.wikipedia.org/wiki/Sprite_[computer_graphics]")) , ("http://en.wikipedia.org/wiki/Sprite_{computer_graphics}", link "http://en.wikipedia.org/wiki/Sprite_%7Bcomputer_graphics%7D" "" (str "http://en.wikipedia.org/wiki/Sprite_{computer_graphics}")) , ("http://example.com/Notification_Center-GitHub-20101108-140050.jpg", autolink "http://example.com/Notification_Center-GitHub-20101108-140050.jpg") , ("https://github.com/github/hubot/blob/master/scripts/cream.js#L20-20", autolink "https://github.com/github/hubot/blob/master/scripts/cream.js#L20-20") , ("http://www.rubyonrails.com", autolink "http://www.rubyonrails.com") , ("http://www.rubyonrails.com:80", autolink "http://www.rubyonrails.com:80") , ("http://www.rubyonrails.com/~minam", autolink "http://www.rubyonrails.com/~minam") , ("https://www.rubyonrails.com/~minam", autolink "https://www.rubyonrails.com/~minam") , ("http://www.rubyonrails.com/~minam/url%20with%20spaces", autolink "http://www.rubyonrails.com/~minam/url%20with%20spaces") , ("http://www.rubyonrails.com/foo.cgi?something=here", autolink "http://www.rubyonrails.com/foo.cgi?something=here") , ("http://www.rubyonrails.com/foo.cgi?something=here&and=here", autolink "http://www.rubyonrails.com/foo.cgi?something=here&and=here") , ("http://www.rubyonrails.com/contact;new", autolink "http://www.rubyonrails.com/contact;new") , ("http://www.rubyonrails.com/contact;new%20with%20spaces", autolink "http://www.rubyonrails.com/contact;new%20with%20spaces") , ("http://www.rubyonrails.com/contact;new?with=query&string=params", autolink "http://www.rubyonrails.com/contact;new?with=query&string=params") , ("http://www.rubyonrails.com/~minam/contact;new?with=query&string=params", autolink "http://www.rubyonrails.com/~minam/contact;new?with=query&string=params") , ("http://en.wikipedia.org/wiki/Wikipedia:Today%27s_featured_picture_%28animation%29/January_20%2C_2007", autolink "http://en.wikipedia.org/wiki/Wikipedia:Today%27s_featured_picture_%28animation%29/January_20%2C_2007") , ("http://www.mail-archive.com/rails@lists.rubyonrails.org/", autolink "http://www.mail-archive.com/rails@lists.rubyonrails.org/") , ("http://www.amazon.com/Testing-Equal-Sign-In-Path/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1198861734&sr=8-1", autolink "http://www.amazon.com/Testing-Equal-Sign-In-Path/ref=pd_bbs_sr_1?ie=UTF8&s=books&qid=1198861734&sr=8-1") , ("http://en.wikipedia.org/wiki/Texas_hold%27em", autolink "http://en.wikipedia.org/wiki/Texas_hold%27em") , ("https://www.google.com/doku.php?id=gps:resource:scs:start", autolink "https://www.google.com/doku.php?id=gps:resource:scs:start") , ("http://www.rubyonrails.com", autolink "http://www.rubyonrails.com") , ("http://manuals.ruby-on-rails.com/read/chapter.need_a-period/103#page281", autolink "http://manuals.ruby-on-rails.com/read/chapter.need_a-period/103#page281") , ("http://foo.example.com/controller/action?parm=value&p2=v2#anchor123", autolink "http://foo.example.com/controller/action?parm=value&p2=v2#anchor123") , ("http://foo.example.com:3000/controller/action", autolink "http://foo.example.com:3000/controller/action") , ("http://foo.example.com:3000/controller/action+pack", autolink "http://foo.example.com:3000/controller/action+pack") , ("http://business.timesonline.co.uk/article/0,,9065-2473189,00.html", autolink "http://business.timesonline.co.uk/article/0,,9065-2473189,00.html") , ("http://www.mail-archive.com/ruby-talk@ruby-lang.org/", autolink "http://www.mail-archive.com/ruby-talk@ruby-lang.org/") , ("https://example.org/?anchor=lala-", autolink "https://example.org/?anchor=lala-") , ("https://example.org/?anchor=-lala", autolink "https://example.org/?anchor=-lala") ] {- p_markdown_round_trip :: Block -> Bool p_markdown_round_trip b = matches d' d'' where d' = normalize $ Pandoc (Meta [] [] []) [b] d'' = normalize $ readMarkdown def { readerSmart = True } $ writeMarkdown def d' matches (Pandoc _ [Plain []]) (Pandoc _ []) = True matches (Pandoc _ [Para []]) (Pandoc _ []) = True matches (Pandoc _ [Plain xs]) (Pandoc _ [Para xs']) = xs == xs' matches x y = x == y -} tests :: [Test] tests = [ testGroup "inline code" [ "with attribute" =: "`document.write(\"Hello\");`{.javascript}" =?> para (codeWith ("",["javascript"],[]) "document.write(\"Hello\");") , "with attribute space" =: "`*` {.haskell .special x=\"7\"}" =?> para (codeWith ("",["haskell","special"],[("x","7")]) "*") ] , testGroup "emph and strong" [ "two strongs in emph" =: "***a**b **c**d*" =?> para (emph (strong (str "a") <> str "b" <> space <> strong (str "c") <> str "d")) , "emph and strong emph alternating" =: "*xxx* ***xxx*** xxx\n*xxx* ***xxx*** xxx" =?> para (emph "xxx" <> space <> strong (emph "xxx") <> space <> "xxx" <> softbreak <> emph "xxx" <> space <> strong (emph "xxx") <> space <> "xxx") , "emph with spaced strong" =: "*x **xx** x*" =?> para (emph ("x" <> space <> strong "xx" <> space <> "x")) , "intraword underscore with opening underscore (#1121)" =: "_foot_ball_" =?> para (emph (text "foot_ball")) ] , testGroup "raw LaTeX" [ "in URL" =: "\\begin\n" =?> para (text "\\begin") ] , testGroup "raw HTML" [ "nesting (issue #1330)" =: "test" =?> rawBlock "html" "" <> plain (str "test") <> rawBlock "html" "" , "invalid tag (issue #1820" =: "" =?> para (text "") , "technically invalid comment" =: "" =?> rawBlock "html" "" , test markdownGH "issue 2469" $ "<\n\na>" =?> para (text "<") <> para (text "a>") ] , testGroup "emoji" [ test markdownGH "emoji symbols" $ ":smile: and :+1:" =?> para (text "😄 and 👍") ] , "unbalanced brackets" =: "[[[[[[[[[[[[[[[hi" =?> para (text "[[[[[[[[[[[[[[[hi") , testGroup "backslash escapes" [ "in URL" =: "[hi](/there\\))" =?> para (link "/there)" "" "hi") , "in title" =: "[hi](/there \"a\\\"a\")" =?> para (link "/there" "a\"a" "hi") , "in reference link title" =: "[hi]\n\n[hi]: /there (a\\)a)" =?> para (link "/there" "a)a" "hi") , "in reference link URL" =: "[hi]\n\n[hi]: /there\\.0" =?> para (link "/there.0" "" "hi") ] , testGroup "bare URIs" (map testBareLink bareLinkTests) , testGroup "autolinks" [ "with unicode dash following" =: "\8212" =?> para (autolink "http://foo.bar" <> str "\8212") , "a partial URL (#2277)" =: "" =?> para (text "") ] , testGroup "links" [ "no autolink inside link" =: "[](url)" =?> para (link "url" "" (text "")) , "no inline link inside link" =: "[[a](url2)](url)" =?> para (link "url" "" (text "[a](url2)")) , "no bare URI inside link" =: "[https://example.org(](url)" =?> para (link "url" "" (text "https://example.org(")) ] , testGroup "Headers" [ "blank line before header" =: "\n# Header\n" =?> headerWith ("header",[],[]) 1 "Header" , "bracketed text (#2062)" =: "# [hi]\n" =?> headerWith ("hi",[],[]) 1 "[hi]" , "ATX header without trailing #s" =: "# Foo bar\n\n" =?> headerWith ("foo-bar",[],[]) 1 "Foo bar" , "ATX header without trailing #s" =: "# Foo bar with # #" =?> headerWith ("foo-bar-with",[],[]) 1 "Foo bar with #" , "setext header" =: "Foo bar\n=\n\n Foo bar 2 \n=" =?> headerWith ("foo-bar",[],[]) 1 "Foo bar" <> headerWith ("foo-bar-2",[],[]) 1 "Foo bar 2" ] , testGroup "Implicit header references" [ "ATX header without trailing #s" =: "# Header\n[header]\n\n[header ]\n\n[ header]" =?> headerWith ("header",[],[]) 1 "Header" <> para (link "#header" "" (text "header")) <> para (link "#header" "" (text "header")) <> para (link "#header" "" (text "header")) , "ATX header with trailing #s" =: "# Foo bar #\n[foo bar]\n\n[foo bar ]\n\n[ foo bar]" =?> headerWith ("foo-bar",[],[]) 1 "Foo bar" <> para (link "#foo-bar" "" (text "foo bar")) <> para (link "#foo-bar" "" (text "foo bar")) <> para (link "#foo-bar" "" (text "foo bar")) , "setext header" =: " Header \n=\n\n[header]\n\n[header ]\n\n[ header]" =?> headerWith ("header",[],[]) 1 "Header" <> para (link "#header" "" (text "header")) <> para (link "#header" "" (text "header")) <> para (link "#header" "" (text "header")) ] , testGroup "smart punctuation" [ test markdownSmart "quote before ellipses" ("'...hi'" =?> para (singleQuoted "…hi")) , test markdownSmart "apostrophe before emph" ("D'oh! A l'*aide*!" =?> para ("D’oh! A l’" <> emph "aide" <> "!")) , test markdownSmart "apostrophe in French" ("À l'arrivée de la guerre, le thème de l'«impossibilité du socialisme»" =?> para "À l’arrivée de la guerre, le thème de l’«impossibilité du socialisme»") , test markdownSmart "apostrophe after math" $ -- issue #1909 "The value of the $x$'s and the systems' condition." =?> para (text "The value of the " <> math "x" <> text "\8217s and the systems\8217 condition.") ] , testGroup "footnotes" [ "indent followed by newline and flush-left text" =: "[^1]\n\n[^1]: my note\n\n \nnot in note\n" =?> para (note (para "my note")) <> para "not in note" , "indent followed by newline and indented text" =: "[^1]\n\n[^1]: my note\n \n in note\n" =?> para (note (para "my note" <> para "in note")) , "recursive note" =: "[^1]\n\n[^1]: See [^1]\n" =?> para (note (para "See [^1]")) ] , testGroup "lhs" [ test (handleError . readMarkdown def{ readerExtensions = Set.insert Ext_literate_haskell $ readerExtensions def }) "inverse bird tracks and html" $ "> a\n\n< b\n\n
\n" =?> codeBlockWith ("",["sourceCode","literate","haskell"],[]) "a" <> codeBlockWith ("",["sourceCode","haskell"],[]) "b" <> rawBlock "html" "
\n\n" ] -- the round-trip properties frequently fail -- , testGroup "round trip" -- [ property "p_markdown_round_trip" p_markdown_round_trip -- ] , testGroup "definition lists" [ "no blank space" =: "foo1\n : bar\n\nfoo2\n : bar2\n : bar3\n" =?> definitionList [ (text "foo1", [plain (text "bar")]) , (text "foo2", [plain (text "bar2"), plain (text "bar3")]) ] , "blank space before first def" =: "foo1\n\n : bar\n\nfoo2\n\n : bar2\n : bar3\n" =?> definitionList [ (text "foo1", [para (text "bar")]) , (text "foo2", [para (text "bar2"), plain (text "bar3")]) ] , "blank space before second def" =: "foo1\n : bar\n\nfoo2\n : bar2\n\n : bar3\n" =?> definitionList [ (text "foo1", [plain (text "bar")]) , (text "foo2", [plain (text "bar2"), para (text "bar3")]) ] , "laziness" =: "foo1\n : bar\nbaz\n : bar2\n" =?> definitionList [ (text "foo1", [plain (text "bar" <> softbreak <> text "baz"), plain (text "bar2")]) ] , "no blank space before first of two paragraphs" =: "foo1\n : bar\n\n baz\n" =?> definitionList [ (text "foo1", [para (text "bar") <> para (text "baz")]) ] , "first line not indented" =: "foo\n: bar\n" =?> definitionList [ (text "foo", [plain (text "bar")]) ] , "list in definition" =: "foo\n: - bar\n" =?> definitionList [ (text "foo", [bulletList [plain (text "bar")]]) ] , "in div" =: "
foo\n: - bar\n
" =?> divWith nullAttr (definitionList [ (text "foo", [bulletList [plain (text "bar")]]) ]) ] , testGroup "+compact_definition_lists" [ test markdownCDL "basic compact list" $ "foo1\n: bar\n baz\nfoo2\n: bar2\n" =?> definitionList [ (text "foo1", [plain (text "bar" <> softbreak <> text "baz")]) , (text "foo2", [plain (text "bar2")]) ] ] , testGroup "lists" [ "issue #1154" =: " -
\n first div breaks\n
\n\n \n\n
\n with this div too.\n
\n" =?> bulletList [divWith nullAttr (para $ text "first div breaks") <> rawBlock "html" "" <> divWith nullAttr (para $ text "with this div too.")] , test markdownGH "issue #1636" $ unlines [ "* a" , "* b" , "* c" , " * d" ] =?> bulletList [ plain "a" , plain "b" , plain "c" <> bulletList [plain "d"] ] ] , testGroup "entities" [ "character references" =: "⟨ ö" =?> para (text "\10216 ö") , "numeric" =: ",DD" =?> para (text ",DD") , "in link title" =: "[link](/url \"title ⟨ ö ,\")" =?> para (link "/url" "title \10216 ö ," (text "link")) ] , testGroup "citations" [ "simple" =: "@item1" =?> para (cite [ Citation{ citationId = "item1" , citationPrefix = [] , citationSuffix = [] , citationMode = AuthorInText , citationNoteNum = 0 , citationHash = 0 } ] "@item1") , "key starts with digit" =: "@1657:huyghens" =?> para (cite [ Citation{ citationId = "1657:huyghens" , citationPrefix = [] , citationSuffix = [] , citationMode = AuthorInText , citationNoteNum = 0 , citationHash = 0 } ] "@1657:huyghens") ] , let citation = cite [Citation "cita" [] [] AuthorInText 0 0] (str "@cita") in testGroup "footnote/link following citation" -- issue #2083 [ "footnote" =: unlines [ "@cita[^note]" , "" , "[^note]: note" ] =?> para ( citation <> note (para $ str "note") ) , "normal link" =: "@cita [link](http://www.com)" =?> para ( citation <> space <> link "http://www.com" "" (str "link") ) , "reference link" =: unlines [ "@cita [link][link]" , "" , "[link]: http://www.com" ] =?> para ( citation <> space <> link "http://www.com" "" (str "link") ) , "short reference link" =: unlines [ "@cita [link]" , "" , "[link]: http://www.com" ] =?> para ( citation <> space <> link "http://www.com" "" (str "link") ) , "implicit header link" =: unlines [ "# Header" , "@cita [Header]" ] =?> headerWith ("header",[],[]) 1 (str "Header") <> para ( citation <> space <> link "#header" "" (str "Header") ) , "regular citation" =: "@cita [foo]" =?> para ( cite [Citation "cita" [] [Str "foo"] AuthorInText 0 0] (str "@cita" <> space <> str "[foo]") ) ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/EPUB.hs0000644000000000000000000000220412645626061017671 0ustar rootrootmodule Tests.Readers.EPUB (tests) where import Text.Pandoc.Options import Test.Framework import Test.HUnit (assertBool) import Test.Framework.Providers.HUnit import qualified Data.ByteString.Lazy as BL import Text.Pandoc.Readers.EPUB import Text.Pandoc.MediaBag (MediaBag, mediaDirectory) import Text.Pandoc.Error getMediaBag :: FilePath -> IO MediaBag getMediaBag fp = snd . handleError . readEPUB def <$> BL.readFile fp testMediaBag :: FilePath -> [(String, String, Int)] -> IO () testMediaBag fp bag = do actBag <- (mediaDirectory <$> getMediaBag fp) assertBool (show "MediaBag did not match:\nExpected: " ++ show bag ++ "\nActual: " ++ show actBag) (actBag == bag) featuresBag :: [(String, String, Int)] featuresBag = [("img/check.gif","image/gif",1340) ,("img/check.jpg","image/jpeg",2661) ,("img/check.png","image/png",2815) ,("img/multiscripts_and_greek_alphabet.png","image/png",10060) ] tests :: [Test] tests = [ testGroup "EPUB Mediabag" [ testCase "features bag" (testMediaBag "epub/img.epub" featuresBag) ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/LaTeX.hs0000644000000000000000000002651412645626061020125 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Readers.LaTeX (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Text.Pandoc.Builder import Text.Pandoc import Text.Pandoc.Error latex :: String -> Pandoc latex = handleError . readLaTeX def infix 4 =: (=:) :: ToString c => String -> (String, c) -> Test (=:) = test latex simpleTable' :: [Alignment] -> [[Blocks]] -> Blocks simpleTable' aligns = table "" (zip aligns (repeat 0.0)) (map (const mempty) aligns) tests :: [Test] tests = [ testGroup "basic" [ "simple" =: "word" =?> para "word" , "space" =: "some text" =?> para "some text" , "emphasized" =: "\\emph{emphasized}" =?> para (emph "emphasized") ] , testGroup "headers" [ "level 1" =: "\\section{header}" =?> headerWith ("header",[],[]) 1 "header" , "level 2" =: "\\subsection{header}" =?> headerWith ("header",[],[]) 2 "header" , "level 3" =: "\\subsubsection{header}" =?> headerWith ("header",[],[]) 3 "header" , "emph" =: "\\section{text \\emph{emph}}" =?> headerWith ("text-emph",[],[]) 1 ("text" <> space <> emph "emph") , "link" =: "\\section{text \\href{/url}{link}}" =?> headerWith ("text-link",[],[]) 1 ("text" <> space <> link "/url" "" "link") ] , testGroup "math" [ "escaped $" =: "$x=\\$4$" =?> para (math "x=\\$4") ] , testGroup "space and comments" [ "blank lines + space at beginning" =: "\n \n hi" =?> para "hi" , "blank lines + space + comments" =: "% my comment\n\n \n % another\n\nhi" =?> para "hi" , "comment in paragraph" =: "hi % this is a comment\nthere\n" =?> para "hi there" ] , testGroup "code blocks" [ "identifier" =: "\\begin{lstlisting}[label=test]\\end{lstlisting}" =?> codeBlockWith ("test", [], [("label","test")]) "" , "no identifier" =: "\\begin{lstlisting}\\end{lstlisting}" =?> codeBlock "" ] , testGroup "tables" [ "Single cell table" =: "\\begin{tabular}{|l|}Test\\\\\\end{tabular}" =?> simpleTable' [AlignLeft] [[plain "Test"]] , "Multi cell table" =: "\\begin{tabular}{|rl|}One & Two\\\\ \\end{tabular}" =?> simpleTable' [AlignRight,AlignLeft] [[plain "One", plain "Two"]] , "Multi line table" =: unlines [ "\\begin{tabular}{|c|}" , "One\\\\" , "Two\\\\" , "Three\\\\" , "\\end{tabular}" ] =?> simpleTable' [AlignCenter] [[plain "One"], [plain "Two"], [plain "Three"]] , "Empty table" =: "\\begin{tabular}{}\\end{tabular}" =?> simpleTable' [] [] , "Table with fixed column width" =: "\\begin{tabular}{|p{5cm}r|}One & Two\\\\ \\end{tabular}" =?> simpleTable' [AlignLeft,AlignRight] [[plain "One", plain "Two"]] , "Table with empty column separators" =: "\\begin{tabular}{@{}r@{}l}One & Two\\\\ \\end{tabular}" =?> simpleTable' [AlignRight,AlignLeft] [[plain "One", plain "Two"]] , "Table with custom column separators" =: unlines [ "\\begin{tabular}{@{($\\to$)}r@{\\hspace{2cm}}l}" , "One&Two\\\\" , "\\end{tabular}" ] =?> simpleTable' [AlignRight,AlignLeft] [[plain "One", plain "Two"]] , "Table with vertical alignment argument" =: "\\begin{tabular}[t]{r|r}One & Two\\\\ \\end{tabular}" =?> simpleTable' [AlignRight,AlignRight] [[plain "One", plain "Two"]] ] , testGroup "citations" [ natbibCitations , biblatexCitations ] , let hex = ['0'..'9']++['a'..'f'] in testGroup "Character Escapes" [ "Two-character escapes" =: concat ["^^"++[i,j] | i <- hex, j <- hex] =?> para (str ['\0'..'\255']) , "One-character escapes" =: concat ["^^"++[i] | i <- hex] =?> para (str $ ['p'..'y']++['!'..'&']) ] ] baseCitation :: Citation baseCitation = Citation{ citationId = "item1" , citationPrefix = [] , citationSuffix = [] , citationMode = AuthorInText , citationNoteNum = 0 , citationHash = 0 } rt :: String -> Inlines rt = rawInline "latex" natbibCitations :: Test natbibCitations = testGroup "natbib" [ "citet" =: "\\citet{item1}" =?> para (cite [baseCitation] (rt "\\citet{item1}")) , "suffix" =: "\\citet[p.~30]{item1}" =?> para (cite [baseCitation{ citationSuffix = toList $ text "p.\160\&30" }] (rt "\\citet[p.~30]{item1}")) , "suffix long" =: "\\citet[p.~30, with suffix]{item1}" =?> para (cite [baseCitation{ citationSuffix = toList $ text "p.\160\&30, with suffix" }] (rt "\\citet[p.~30, with suffix]{item1}")) , "multiple" =: "\\citeauthor{item1} \\citetext{\\citeyear{item1}; \\citeyear[p.~30]{item2}; \\citealp[see also][]{item3}}" =?> para (cite [baseCitation{ citationMode = AuthorInText } ,baseCitation{ citationMode = SuppressAuthor , citationSuffix = [Str "p.\160\&30"] , citationId = "item2" } ,baseCitation{ citationId = "item3" , citationPrefix = [Str "see",Space,Str "also"] , citationMode = NormalCitation } ] (rt "\\citetext{\\citeyear{item1}; \\citeyear[p.~30]{item2}; \\citealp[see also][]{item3}}")) , "group" =: "\\citetext{\\citealp[see][p.~34--35]{item1}; \\citealp[also][chap. 3]{item3}}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationPrefix = [Str "see"] , citationSuffix = [Str "p.\160\&34\8211\&35"] } ,baseCitation{ citationMode = NormalCitation , citationId = "item3" , citationPrefix = [Str "also"] , citationSuffix = [Str "chap.",Space,Str "3"] } ] (rt "\\citetext{\\citealp[see][p.~34--35]{item1}; \\citealp[also][chap. 3]{item3}}")) , "suffix and locator" =: "\\citep[pp.~33, 35--37, and nowhere else]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationSuffix = [Str "pp.\160\&33,",Space,Str "35\8211\&37,",Space,Str "and",Space,Str "nowhere",Space, Str "else"] }] (rt "\\citep[pp.~33, 35--37, and nowhere else]{item1}")) , "suffix only" =: "\\citep[and nowhere else]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationSuffix = toList $ text "and nowhere else" }] (rt "\\citep[and nowhere else]{item1}")) , "no author" =: "\\citeyearpar{item1}, and now Doe with a locator \\citeyearpar[p.~44]{item2}" =?> para (cite [baseCitation{ citationMode = SuppressAuthor }] (rt "\\citeyearpar{item1}") <> text ", and now Doe with a locator " <> cite [baseCitation{ citationMode = SuppressAuthor , citationSuffix = [Str "p.\160\&44"] , citationId = "item2" }] (rt "\\citeyearpar[p.~44]{item2}")) , "markup" =: "\\citep[\\emph{see}][p. \\textbf{32}]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationPrefix = [Emph [Str "see"]] , citationSuffix = [Str "p.",Space, Strong [Str "32"]] }] (rt "\\citep[\\emph{see}][p. \\textbf{32}]{item1}")) ] biblatexCitations :: Test biblatexCitations = testGroup "biblatex" [ "textcite" =: "\\textcite{item1}" =?> para (cite [baseCitation] (rt "\\textcite{item1}")) , "suffix" =: "\\textcite[p.~30]{item1}" =?> para (cite [baseCitation{ citationSuffix = toList $ text "p.\160\&30" }] (rt "\\textcite[p.~30]{item1}")) , "suffix long" =: "\\textcite[p.~30, with suffix]{item1}" =?> para (cite [baseCitation{ citationSuffix = toList $ text "p.\160\&30, with suffix" }] (rt "\\textcite[p.~30, with suffix]{item1}")) , "multiple" =: "\\textcites{item1}[p.~30]{item2}[see also][]{item3}" =?> para (cite [baseCitation{ citationMode = AuthorInText } ,baseCitation{ citationMode = NormalCitation , citationSuffix = [Str "p.\160\&30"] , citationId = "item2" } ,baseCitation{ citationId = "item3" , citationPrefix = [Str "see",Space,Str "also"] , citationMode = NormalCitation } ] (rt "\\textcites{item1}[p.~30]{item2}[see also][]{item3}")) , "group" =: "\\autocites[see][p.~34--35]{item1}[also][chap. 3]{item3}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationPrefix = [Str "see"] , citationSuffix = [Str "p.\160\&34\8211\&35"] } ,baseCitation{ citationMode = NormalCitation , citationId = "item3" , citationPrefix = [Str "also"] , citationSuffix = [Str "chap.",Space,Str "3"] } ] (rt "\\autocites[see][p.~34--35]{item1}[also][chap. 3]{item3}")) , "suffix and locator" =: "\\autocite[pp.~33, 35--37, and nowhere else]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationSuffix = [Str "pp.\160\&33,",Space,Str "35\8211\&37,",Space,Str "and",Space,Str "nowhere",Space, Str "else"] }] (rt "\\autocite[pp.~33, 35--37, and nowhere else]{item1}")) , "suffix only" =: "\\autocite[and nowhere else]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationSuffix = toList $ text "and nowhere else" }] (rt "\\autocite[and nowhere else]{item1}")) , "no author" =: "\\autocite*{item1}, and now Doe with a locator \\autocite*[p.~44]{item2}" =?> para (cite [baseCitation{ citationMode = SuppressAuthor }] (rt "\\autocite*{item1}") <> text ", and now Doe with a locator " <> cite [baseCitation{ citationMode = SuppressAuthor , citationSuffix = [Str "p.\160\&44"] , citationId = "item2" }] (rt "\\autocite*[p.~44]{item2}")) , "markup" =: "\\autocite[\\emph{see}][p. \\textbf{32}]{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation , citationPrefix = [Emph [Str "see"]] , citationSuffix = [Str "p.",Space, Strong [Str "32"]] }] (rt "\\autocite[\\emph{see}][p. \\textbf{32}]{item1}")) , "parencite" =: "\\parencite{item1}" =?> para (cite [baseCitation{ citationMode = NormalCitation }] (rt "\\parencite{item1}")) ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/Docx.hs0000644000000000000000000002405112645626061020037 0ustar rootrootmodule Tests.Readers.Docx (tests) where import Text.Pandoc.Options import Text.Pandoc.Readers.Native import Text.Pandoc.Definition import Tests.Helpers import Test.Framework import Test.HUnit (assertBool) import Test.Framework.Providers.HUnit import qualified Data.ByteString.Lazy as B import Text.Pandoc.Readers.Docx import Text.Pandoc.Writers.Native (writeNative) import qualified Data.Map as M import Text.Pandoc.MediaBag (MediaBag, lookupMedia, mediaDirectory) import Codec.Archive.Zip import Text.Pandoc.Error -- We define a wrapper around pandoc that doesn't normalize in the -- tests. Since we do our own normalization, we want to make sure -- we're doing it right. data NoNormPandoc = NoNormPandoc {unNoNorm :: Pandoc} deriving Show noNorm :: Pandoc -> NoNormPandoc noNorm = NoNormPandoc instance ToString NoNormPandoc where toString d = writeNative def{ writerStandalone = s } $ toPandoc d where s = case d of NoNormPandoc (Pandoc (Meta m) _) | M.null m -> False | otherwise -> True instance ToPandoc NoNormPandoc where toPandoc = unNoNorm compareOutput :: ReaderOptions -> FilePath -> FilePath -> IO (NoNormPandoc, NoNormPandoc) compareOutput opts docxFile nativeFile = do df <- B.readFile docxFile nf <- Prelude.readFile nativeFile let (p, _) = handleError $ readDocx opts df return $ (noNorm p, noNorm (handleError $ readNative nf)) testCompareWithOptsIO :: ReaderOptions -> String -> FilePath -> FilePath -> IO Test testCompareWithOptsIO opts name docxFile nativeFile = do (dp, np) <- compareOutput opts docxFile nativeFile return $ test id name (dp, np) testCompareWithOpts :: ReaderOptions -> String -> FilePath -> FilePath -> Test testCompareWithOpts opts name docxFile nativeFile = buildTest $ testCompareWithOptsIO opts name docxFile nativeFile testCompare :: String -> FilePath -> FilePath -> Test testCompare = testCompareWithOpts def getMedia :: FilePath -> FilePath -> IO (Maybe B.ByteString) getMedia archivePath mediaPath = do zf <- B.readFile archivePath >>= return . toArchive return $ findEntryByPath ("word/" ++ mediaPath) zf >>= (Just . fromEntry) compareMediaPathIO :: FilePath -> MediaBag -> FilePath -> IO Bool compareMediaPathIO mediaPath mediaBag docxPath = do docxMedia <- getMedia docxPath mediaPath let mbBS = case lookupMedia mediaPath mediaBag of Just (_, bs) -> bs Nothing -> error ("couldn't find " ++ mediaPath ++ " in media bag") docxBS = case docxMedia of Just bs -> bs Nothing -> error ("couldn't find " ++ mediaPath ++ " in media bag") return $ mbBS == docxBS compareMediaBagIO :: FilePath -> IO Bool compareMediaBagIO docxFile = do df <- B.readFile docxFile let (_, mb) = handleError $ readDocx def df bools <- mapM (\(fp, _, _) -> compareMediaPathIO fp mb docxFile) (mediaDirectory mb) return $ and bools testMediaBagIO :: String -> FilePath -> IO Test testMediaBagIO name docxFile = do outcome <- compareMediaBagIO docxFile return $ testCase name (assertBool ("Media didn't match media bag in file " ++ docxFile) outcome) testMediaBag :: String -> FilePath -> Test testMediaBag name docxFile = buildTest $ testMediaBagIO name docxFile tests :: [Test] tests = [ testGroup "inlines" [ testCompare "font formatting" "docx/inline_formatting.docx" "docx/inline_formatting.native" , testCompare "font formatting with character styles" "docx/char_styles.docx" "docx/char_styles.native" , testCompare "hyperlinks" "docx/links.docx" "docx/links.native" , testCompare "inline image" "docx/image.docx" "docx/image_no_embed.native" , testCompare "VML image" "docx/image_vml.docx" "docx/image_vml.native" , testCompare "inline image in links" "docx/inline_images.docx" "docx/inline_images.native" , testCompare "handling unicode input" "docx/unicode.docx" "docx/unicode.native" , testCompare "literal tabs" "docx/tabs.docx" "docx/tabs.native" , testCompare "special punctuation" "docx/special_punctuation.docx" "docx/special_punctuation.native" , testCompare "normalizing inlines" "docx/normalize.docx" "docx/normalize.native" , testCompare "normalizing inlines deep inside blocks" "docx/deep_normalize.docx" "docx/deep_normalize.native" , testCompare "move trailing spaces outside of formatting" "docx/trailing_spaces_in_formatting.docx" "docx/trailing_spaces_in_formatting.native" , testCompare "inline code (with VerbatimChar style)" "docx/inline_code.docx" "docx/inline_code.native" , testCompare "inline code in subscript and superscript" "docx/verbatim_subsuper.docx" "docx/verbatim_subsuper.native" ] , testGroup "blocks" [ testCompare "headers" "docx/headers.docx" "docx/headers.native" , testCompare "headers already having auto identifiers" "docx/already_auto_ident.docx" "docx/already_auto_ident.native" , testCompare "numbered headers automatically made into list" "docx/numbered_header.docx" "docx/numbered_header.native" , testCompare "i18n blocks (headers and blockquotes)" "docx/i18n_blocks.docx" "docx/i18n_blocks.native" , testCompare "lists" "docx/lists.docx" "docx/lists.native" , testCompare "definition lists" "docx/definition_list.docx" "docx/definition_list.native" , testCompare "custom defined lists in styles" "docx/german_styled_lists.docx" "docx/german_styled_lists.native" , testCompare "user deletes bullet after list item (=> part of item par)" "docx/dummy_item_after_list_item.docx" "docx/dummy_item_after_list_item.native" , testCompare "user deletes bullet after par (=> new par)" "docx/dummy_item_after_paragraph.docx" "docx/dummy_item_after_paragraph.native" , testCompare "footnotes and endnotes" "docx/notes.docx" "docx/notes.native" , testCompare "links in footnotes and endnotes" "docx/link_in_notes.docx" "docx/link_in_notes.native" , testCompare "blockquotes (parsing indent as blockquote)" "docx/block_quotes.docx" "docx/block_quotes_parse_indent.native" , testCompare "hanging indents" "docx/hanging_indent.docx" "docx/hanging_indent.native" , testCompare "tables" "docx/tables.docx" "docx/tables.native" , testCompare "tables with lists in cells" "docx/table_with_list_cell.docx" "docx/table_with_list_cell.native" , testCompare "code block" "docx/codeblock.docx" "docx/codeblock.native" , testCompare "dropcap paragraphs" "docx/drop_cap.docx" "docx/drop_cap.native" ] , testGroup "track changes" [ testCompare "insertion (default)" "docx/track_changes_insertion.docx" "docx/track_changes_insertion_accept.native" , testCompareWithOpts def{readerTrackChanges=AcceptChanges} "insert insertion (accept)" "docx/track_changes_insertion.docx" "docx/track_changes_insertion_accept.native" , testCompareWithOpts def{readerTrackChanges=RejectChanges} "remove insertion (reject)" "docx/track_changes_insertion.docx" "docx/track_changes_insertion_reject.native" , testCompare "deletion (default)" "docx/track_changes_deletion.docx" "docx/track_changes_deletion_accept.native" , testCompareWithOpts def{readerTrackChanges=AcceptChanges} "remove deletion (accept)" "docx/track_changes_deletion.docx" "docx/track_changes_deletion_accept.native" , testCompareWithOpts def{readerTrackChanges=RejectChanges} "insert deletion (reject)" "docx/track_changes_deletion.docx" "docx/track_changes_deletion_reject.native" , testCompareWithOpts def{readerTrackChanges=AllChanges} "keep insertion (all)" "docx/track_changes_deletion.docx" "docx/track_changes_deletion_all.native" , testCompareWithOpts def{readerTrackChanges=AllChanges} "keep deletion (all)" "docx/track_changes_deletion.docx" "docx/track_changes_deletion_all.native" ] , testGroup "media" [ testMediaBag "image extraction" "docx/image.docx" ] , testGroup "metadata" [ testCompareWithOpts def{readerStandalone=True} "metadata fields" "docx/metadata.docx" "docx/metadata.native" , testCompareWithOpts def{readerStandalone=True} "stop recording metadata with normal text" "docx/metadata_after_normal.docx" "docx/metadata_after_normal.native" ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/HTML.hs0000644000000000000000000000225012645626061017703 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Readers.HTML (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Text.Pandoc.Builder import Text.Pandoc import Text.Pandoc.Error html :: String -> Pandoc html = handleError . readHtml def tests :: [Test] tests = [ testGroup "base tag" [ test html "simple" $ "\"Stickman\"" =?> plain (image "http://www.w3schools.com/images/stickman.gif" "" (text "Stickman")) , test html "slash at end of base" $ "\"Stickman\"" =?> plain (image "http://www.w3schools.com/images/stickman.gif" "" (text "Stickman")) , test html "absolute URL" $ "\"Stickman\"" =?> plain (image "http://example.com/stickman.gif" "" (text "Stickman")) ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/Odt.hs0000644000000000000000000001420212645626061017665 0ustar rootrootmodule Tests.Readers.Odt (tests) where import Control.Monad ( liftM ) import Text.Pandoc.Options import Text.Pandoc.Readers.Native import Text.Pandoc.Readers.Markdown import Text.Pandoc.Definition import Text.Pandoc.Error import Tests.Helpers import Test.Framework --import Test.HUnit (assertBool) --import Test.Framework.Providers.HUnit import qualified Data.ByteString.Lazy as B import Text.Pandoc.Readers.Odt import Text.Pandoc.Writers.Native (writeNative) import qualified Data.Map as M --import Text.Pandoc.MediaBag (MediaBag, lookupMedia, mediaDirectory) --import Codec.Archive.Zip tests :: [Test] tests = testsComparingToMarkdown ++ testsComparingToNative testsComparingToMarkdown :: [Test] testsComparingToMarkdown = map nameToTest namesOfTestsComparingToMarkdown where nameToTest name = createTest compareOdtToMarkdown name (toOdtPath name) (toMarkdownPath name) toOdtPath name = "odt/odt/" ++ name ++ ".odt" toMarkdownPath name = "odt/markdown/" ++ name ++ ".md" testsComparingToNative :: [Test] testsComparingToNative = map nameToTest namesOfTestsComparingToNative where nameToTest name = createTest compareOdtToNative name (toOdtPath name) (toNativePath name) toOdtPath name = "odt/odt/" ++ name ++ ".odt" toNativePath name = "odt/native/" ++ name ++ ".native" newtype NoNormPandoc = NoNormPandoc {unNoNorm :: Pandoc} deriving ( Show ) instance ToString NoNormPandoc where toString d = writeNative def{ writerStandalone = s } $ toPandoc d where s = case d of NoNormPandoc (Pandoc (Meta m) _) | M.null m -> False | otherwise -> True instance ToPandoc NoNormPandoc where toPandoc = unNoNorm getNoNormVia :: (a -> Pandoc) -> String -> Either PandocError a -> NoNormPandoc getNoNormVia _ readerName (Left _) = error (readerName ++ " reader failed") getNoNormVia f _ (Right a) = NoNormPandoc (f a) type TestCreator = ReaderOptions -> FilePath -> FilePath -> IO (NoNormPandoc, NoNormPandoc) compareOdtToNative :: TestCreator compareOdtToNative opts odtPath nativePath = do nativeFile <- Prelude.readFile nativePath odtFile <- B.readFile odtPath let native = getNoNormVia id "native" $ readNative nativeFile let odt = getNoNormVia fst "odt" $ readOdt opts odtFile return (odt,native) compareOdtToMarkdown :: TestCreator compareOdtToMarkdown opts odtPath markdownPath = do markdownFile <- Prelude.readFile markdownPath odtFile <- B.readFile odtPath let markdown = getNoNormVia id "markdown" $ readMarkdown opts markdownFile let odt = getNoNormVia fst "odt" $ readOdt opts odtFile return (odt,markdown) createTest :: TestCreator -> TestName -> FilePath -> FilePath -> Test createTest creator name path1 path2 = buildTest $ liftM (test id name) (creator def path1 path2) {- -- getMedia :: FilePath -> FilePath -> IO (Maybe B.ByteString) getMedia archivePath mediaPath = do zf <- B.readFile archivePath >>= return . toArchive return $ findEntryByPath ("Pictures/" ++ mediaPath) zf >>= (Just . fromEntry) compareMediaPathIO :: FilePath -> MediaBag -> FilePath -> IO Bool compareMediaPathIO mediaPath mediaBag odtPath = do odtMedia <- getMedia odtPath mediaPath let mbBS = case lookupMedia mediaPath mediaBag of Just (_, bs) -> bs Nothing -> error ("couldn't find " ++ mediaPath ++ " in media bag") odtBS = case odtMedia of Just bs -> bs Nothing -> error ("couldn't find " ++ mediaPath ++ " in media bag") return $ mbBS == odtBS compareMediaBagIO :: FilePath -> IO Bool compareMediaBagIO odtFile = do df <- B.readFile odtFile let (_, mb) = readOdt def df bools <- mapM (\(fp, _, _) -> compareMediaPathIO fp mb odtFile) (mediaDirectory mb) return $ and bools testMediaBagIO :: String -> FilePath -> IO Test testMediaBagIO name odtFile = do outcome <- compareMediaBagIO odtFile return $ testCase name (assertBool ("Media didn't match media bag in file " ++ odtFile) outcome) testMediaBag :: String -> FilePath -> Test testMediaBag name odtFile = buildTest $ testMediaBagIO name odtFile -} -- namesOfTestsComparingToMarkdown :: [ String ] namesOfTestsComparingToMarkdown = [ "bold" -- , "citation" , "endnote" , "externalLink" , "footnote" , "headers" -- , "horizontalRule" -- , "image" , "italic" -- , "listBlocks" , "paragraph" , "strikeout" -- , "trackedChanges" , "underlined" ] namesOfTestsComparingToNative :: [ String ] namesOfTestsComparingToNative = [ "blockquote" , "orderedListMixed" , "orderedListRoman" , "orderedListSimple" , "referenceToChapter" , "referenceToListItem" , "referenceToText" , "simpleTable" -- , "table" , "unicode" , "unorderedList" ]pandoc-1.16.0.2~dfsg/tests/Tests/Readers/RST.hs0000644000000000000000000001535412645626061017620 0ustar rootroot{-# LANGUAGE OverloadedStrings, ScopedTypeVariables #-} module Tests.Readers.RST (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Tests.Arbitrary() import Text.Pandoc.Builder import Text.Pandoc import Text.Pandoc.Error rst :: String -> Pandoc rst = handleError . readRST def{ readerStandalone = True } infix 4 =: (=:) :: ToString c => String -> (String, c) -> Test (=:) = test rst tests :: [Test] tests = [ "line block with blank line" =: "| a\n|\n| b" =?> para (str "a") <> para (str "\160b") , testGroup "field list" [ "general" =: unlines [ "para" , "" , ":Hostname: media08" , ":IP address: 10.0.0.19" , ":Size: 3ru" , ":Version: 1" , ":Indentation: Since the field marker may be quite long, the second" , " and subsequent lines of the field body do not have to line up" , " with the first line, but they must be indented relative to the" , " field name marker, and they must line up with each other." , ":Parameter i: integer" , ":Final: item" , " on two lines" ] =?> ( doc $ para "para" <> definitionList [ (str "Hostname", [para "media08"]) , (text "IP address", [para "10.0.0.19"]) , (str "Size", [para "3ru"]) , (str "Version", [para "1"]) , (str "Indentation", [para "Since the field marker may be quite long, the second\nand subsequent lines of the field body do not have to line up\nwith the first line, but they must be indented relative to the\nfield name marker, and they must line up with each other."]) , (text "Parameter i", [para "integer"]) , (str "Final", [para "item\non two lines"]) ]) , "metadata" =: unlines [ "=====" , "Title" , "=====" , "--------" , "Subtitle" , "--------" , "" , ":Version: 1" ] =?> ( setMeta "version" (para "1") $ setMeta "title" ("Title" :: Inlines) $ setMeta "subtitle" ("Subtitle" :: Inlines) $ doc mempty ) , "with inline markup" =: unlines [ ":*Date*: today" , "" , ".." , "" , ":*one*: emphasis" , ":two_: reference" , ":`three`_: another one" , ":``four``: literal" , "" , ".. _two: http://example.com" , ".. _three: http://example.org" ] =?> ( setMeta "date" (str "today") $ doc $ definitionList [ (emph "one", [para "emphasis"]) , (link "http://example.com" "" "two", [para "reference"]) , (link "http://example.org" "" "three", [para "another one"]) , (code "four", [para "literal"]) ]) ] , "URLs with following punctuation" =: ("http://google.com, http://yahoo.com; http://foo.bar.baz.\n" ++ "http://foo.bar/baz_(bam) (http://foo.bar)") =?> para (link "http://google.com" "" "http://google.com" <> ", " <> link "http://yahoo.com" "" "http://yahoo.com" <> "; " <> link "http://foo.bar.baz" "" "http://foo.bar.baz" <> ". " <> softbreak <> link "http://foo.bar/baz_(bam)" "" "http://foo.bar/baz_(bam)" <> " (" <> link "http://foo.bar" "" "http://foo.bar" <> ")") , "Reference names with special characters" =: ("A-1-B_2_C:3:D+4+E.5.F_\n\n" ++ ".. _A-1-B_2_C:3:D+4+E.5.F: https://example.com\n") =?> para (link "https://example.com" "" "A-1-B_2_C:3:D+4+E.5.F") , testGroup "literal / line / code blocks" [ "indented literal block" =: unlines [ "::" , "" , " block quotes" , "" , " can go on for many lines" , "but must stop here"] =?> (doc $ codeBlock "block quotes\n\ncan go on for many lines" <> para "but must stop here") , "line block with 3 lines" =: "| a\n| b\n| c" =?> para ("a" <> linebreak <> "b" <> linebreak <> "c") , "quoted literal block using >" =: "::\n\n> quoted\n> block\n\nOrdinary paragraph" =?> codeBlock "> quoted\n> block" <> para "Ordinary paragraph" , "quoted literal block using | (not a line block)" =: "::\n\n| quoted\n| block\n\nOrdinary paragraph" =?> codeBlock "| quoted\n| block" <> para "Ordinary paragraph" , "class directive with single paragraph" =: ".. class:: special\n\nThis is a \"special\" paragraph." =?> divWith ("", ["special"], []) (para "This is a \"special\" paragraph.") , "class directive with two paragraphs" =: ".. class:: exceptional remarkable\n\n First paragraph.\n\n Second paragraph." =?> divWith ("", ["exceptional", "remarkable"], []) (para "First paragraph." <> para "Second paragraph.") , "class directive around literal block" =: ".. class:: classy\n\n::\n\n a\n b" =?> divWith ("", ["classy"], []) (codeBlock "a\nb")] , testGroup "interpreted text roles" [ "literal role prefix" =: ":literal:`a`" =?> para (code "a") , "literal role postfix" =: "`a`:literal:" =?> para (code "a") , "literal text" =: "``text``" =?> para (code "text") , "code role" =: ":code:`a`" =?> para (codeWith ("", ["sourceCode"], []) "a") , "inherited code role" =: ".. role:: codeLike(code)\n\n:codeLike:`a`" =?> para (codeWith ("", ["codeLike", "sourceCode"], []) "a") , "custom code role with language field" =: ".. role:: lhs(code)\n :language: haskell\n\n:lhs:`a`" =?> para (codeWith ("", ["lhs", "haskell","sourceCode"], []) "a") , "custom role with unspecified parent role" =: ".. role:: classy\n\n:classy:`text`" =?> para (spanWith ("", ["classy"], []) "text") , "role with recursive inheritance" =: ".. role:: haskell(code)\n.. role:: lhs(haskell)\n\n:lhs:`text`" =?> para (codeWith ("", ["lhs", "haskell", "sourceCode"], []) "text") , "unknown role" =: ":unknown:`text`" =?> para (str "text") ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Readers/Org.hs0000644000000000000000000013471412645626061017701 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Readers.Org (tests) where import Text.Pandoc.Definition import Test.Framework import Tests.Helpers import Text.Pandoc.Builder import Text.Pandoc import Data.List (intersperse) import Text.Pandoc.Error org :: String -> Pandoc org = handleError . readOrg def orgSmart :: String -> Pandoc orgSmart = handleError . readOrg def { readerSmart = True } infix 4 =: (=:) :: ToString c => String -> (String, c) -> Test (=:) = test org spcSep :: [Inlines] -> Inlines spcSep = mconcat . intersperse space simpleTable' :: Int -> [Blocks] -> [[Blocks]] -> Blocks simpleTable' n = table "" (take n $ repeat (AlignDefault, 0.0)) tests :: [Test] tests = [ testGroup "Inlines" $ [ "Plain String" =: "Hello, World" =?> para (spcSep [ "Hello,", "World" ]) , "Emphasis" =: "/Planet Punk/" =?> para (emph . spcSep $ ["Planet", "Punk"]) , "Strong" =: "*Cider*" =?> para (strong "Cider") , "Strong Emphasis" =: "/*strength*/" =?> para (emph . strong $ "strength") , "Strikeout" =: "+Kill Bill+" =?> para (strikeout . spcSep $ [ "Kill", "Bill" ]) , "Verbatim" =: "=Robot.rock()=" =?> para (code "Robot.rock()") , "Code" =: "~word for word~" =?> para (code "word for word") , "Math $..$" =: "$E=mc^2$" =?> para (math "E=mc^2") , "Math $$..$$" =: "$$E=mc^2$$" =?> para (displayMath "E=mc^2") , "Math \\[..\\]" =: "\\[E=ℎν\\]" =?> para (displayMath "E=ℎν") , "Math \\(..\\)" =: "\\(σ_x σ_p ≥ \\frac{ℏ}{2}\\)" =?> para (math "σ_x σ_p ≥ \\frac{ℏ}{2}") , "Symbol" =: "A * symbol" =?> para (str "A" <> space <> str "*" <> space <> "symbol") , "Superscript simple expression" =: "2^-λ" =?> para (str "2" <> superscript "-λ") , "Superscript multi char" =: "2^{n-1}" =?> para (str "2" <> superscript "n-1") , "Subscript simple expression" =: "a_n" =?> para (str "a" <> subscript "n") , "Subscript multi char" =: "a_{n+1}" =?> para (str "a" <> subscript "n+1") , "Linebreak" =: "line \\\\ \nbreak" =?> para ("line" <> linebreak <> "break") , "Inline note" =: "[fn::Schreib mir eine E-Mail]" =?> para (note $ para "Schreib mir eine E-Mail") , "Markup-chars not occuring on word break are symbols" =: unlines [ "this+that+ +so+on" , "seven*eight* nine*" , "+not+funny+" ] =?> para ("this+that+ +so+on" <> softbreak <> "seven*eight* nine*" <> softbreak <> strikeout "not+funny") , "No empty markup" =: "// ** __ ++ == ~~ $$" =?> para (spcSep [ "//", "**", "__", "++", "==", "~~", "$$" ]) , "Adherence to Org's rules for markup borders" =: "/t/& a/ / ./r/ (*l*) /e/! /b/." =?> para (spcSep [ emph $ "t/&" <> space <> "a" , "/" , "./r/" , "(" <> (strong "l") <> ")" , (emph "e") <> "!" , (emph "b") <> "." ]) , "Quotes are forbidden border chars" =: "/'nope/ *nope\"*" =?> para ("/'nope/" <> space <> "*nope\"*") , "Commata are forbidden border chars" =: "/nada,/" =?> para "/nada,/" , "Markup should work properly after a blank line" =: unlines ["foo", "", "/bar/"] =?> (para $ text "foo") <> (para $ emph $ text "bar") , "Inline math must stay within three lines" =: unlines [ "$a", "b", "c$", "$d", "e", "f", "g$" ] =?> para ((math "a\nb\nc") <> softbreak <> "$d" <> softbreak <> "e" <> softbreak <> "f" <> softbreak <> "g$") , "Single-character math" =: "$a$ $b$! $c$?" =?> para (spcSep [ math "a" , "$b$!" , (math "c") <> "?" ]) , "Markup may not span more than two lines" =: "/this *is +totally\nnice+ not*\nemph/" =?> para ("/this" <> space <> strong ("is" <> space <> strikeout ("totally" <> softbreak <> "nice") <> space <> "not") <> softbreak <> "emph/") , "Sub- and superscript expressions" =: unlines [ "a_(a(b)(c)d)" , "e^(f(g)h)" , "i_(jk)l)" , "m^()n" , "o_{p{q{}r}}" , "s^{t{u}v}" , "w_{xy}z}" , "1^{}2" , "3_{{}}" , "4^(a(*b(c*)d))" ] =?> para (mconcat $ intersperse softbreak [ "a" <> subscript "(a(b)(c)d)" , "e" <> superscript "(f(g)h)" , "i" <> (subscript "(jk)") <> "l)" , "m" <> (superscript "()") <> "n" , "o" <> subscript "p{q{}r}" , "s" <> superscript "t{u}v" , "w" <> (subscript "xy") <> "z}" , "1" <> (superscript "") <> "2" , "3" <> subscript "{}" , "4" <> superscript ("(a(" <> strong "b(c" <> ")d))") ]) , "Image" =: "[[./sunset.jpg]]" =?> (para $ image "./sunset.jpg" "" "") , "Explicit link" =: "[[http://zeitlens.com/][pseudo-random /nonsense/]]" =?> (para $ link "http://zeitlens.com/" "" ("pseudo-random" <> space <> emph "nonsense")) , "Self-link" =: "[[http://zeitlens.com/]]" =?> (para $ link "http://zeitlens.com/" "" "http://zeitlens.com/") , "Absolute file link" =: "[[/url][hi]]" =?> (para $ link "file:///url" "" "hi") , "Link to file in parent directory" =: "[[../file.txt][moin]]" =?> (para $ link "../file.txt" "" "moin") , "Empty link (for gitit interop)" =: "[[][New Link]]" =?> (para $ link "" "" "New Link") , "Image link" =: "[[sunset.png][dusk.svg]]" =?> (para $ link "sunset.png" "" (image "dusk.svg" "" "")) , "Image link with non-image target" =: "[[http://example.com][logo.png]]" =?> (para $ link "http://example.com" "" (image "logo.png" "" "")) , "Plain link" =: "Posts on http://zeitlens.com/ can be funny at times." =?> (para $ spcSep [ "Posts", "on" , link "http://zeitlens.com/" "" "http://zeitlens.com/" , "can", "be", "funny", "at", "times." ]) , "Angle link" =: "Look at for fnords." =?> (para $ spcSep [ "Look", "at" , link "http://moltkeplatz.de" "" "http://moltkeplatz.de" , "for", "fnords." ]) , "Absolute file link" =: "[[file:///etc/passwd][passwd]]" =?> (para $ link "file:///etc/passwd" "" "passwd") , "File link" =: "[[file:target][title]]" =?> (para $ link "target" "" "title") , "Anchor" =: "<> Link here later." =?> (para $ spanWith ("anchor", [], []) mempty <> "Link" <> space <> "here" <> space <> "later.") , "Inline code block" =: "src_emacs-lisp{(message \"Hello\")}" =?> (para $ codeWith ( "" , [ "commonlisp", "rundoc-block" ] , [ ("rundoc-language", "emacs-lisp") ]) "(message \"Hello\")") , "Inline code block with arguments" =: "src_sh[:export both :results output]{echo 'Hello, World'}" =?> (para $ codeWith ( "" , [ "bash", "rundoc-block" ] , [ ("rundoc-language", "sh") , ("rundoc-export", "both") , ("rundoc-results", "output") ] ) "echo 'Hello, World'") , "Inline code block with toggle" =: "src_sh[:toggle]{echo $HOME}" =?> (para $ codeWith ( "" , [ "bash", "rundoc-block" ] , [ ("rundoc-language", "sh") , ("rundoc-toggle", "yes") ] ) "echo $HOME") , "Citation" =: "[@nonexistent]" =?> let citation = Citation { citationId = "nonexistent" , citationPrefix = [] , citationSuffix = [] , citationMode = NormalCitation , citationNoteNum = 0 , citationHash = 0} in (para $ cite [citation] "[@nonexistent]") , "Citation containing text" =: "[see @item1 p. 34-35]" =?> let citation = Citation { citationId = "item1" , citationPrefix = [Str "see"] , citationSuffix = [Space ,Str "p.",Space,Str "34-35"] , citationMode = NormalCitation , citationNoteNum = 0 , citationHash = 0} in (para $ cite [citation] "[see @item1 p. 34-35]") , "Inline LaTeX symbol" =: "\\dots" =?> para "…" , "Inline LaTeX command" =: "\\textit{Emphasised}" =?> para (emph "Emphasised") , "Inline LaTeX math symbol" =: "\\tau" =?> para (emph "τ") , "Unknown inline LaTeX command" =: "\\notacommand{foo}" =?> para (rawInline "latex" "\\notacommand{foo}") , "MathML symbol in LaTeX-style" =: "There is a hackerspace in Lübeck, Germany, called nbsp (unicode symbol: '\\nbsp')." =?> para ("There is a hackerspace in Lübeck, Germany, called nbsp (unicode symbol: ' ').") , "MathML symbol in LaTeX-style, including braces" =: "\\Aacute{}stor" =?> para "Ástor" , "MathML copy sign" =: "\\copy" =?> para "©" , "LaTeX citation" =: "\\cite{Coffee}" =?> let citation = Citation { citationId = "Coffee" , citationPrefix = [] , citationSuffix = [] , citationMode = AuthorInText , citationNoteNum = 0 , citationHash = 0} in (para . cite [citation] $ rawInline "latex" "\\cite{Coffee}") ] , testGroup "Meta Information" $ [ "Comment" =: "# Nothing to see here" =?> (mempty::Blocks) , "Not a comment" =: "#-tag" =?> para "#-tag" , "Comment surrounded by Text" =: unlines [ "Before" , "# Comment" , "After" ] =?> mconcat [ para "Before" , para "After" ] , "Title" =: "#+TITLE: Hello, World" =?> let titleInline = toList $ "Hello," <> space <> "World" meta = setMeta "title" (MetaInlines titleInline) $ nullMeta in Pandoc meta mempty , "Author" =: "#+author: Albert /Emacs-Fanboy/ Krewinkel" =?> let author = toList . spcSep $ [ "Albert", emph "Emacs-Fanboy", "Krewinkel" ] meta = setMeta "author" (MetaInlines author) $ nullMeta in Pandoc meta mempty , "Date" =: "#+Date: Feb. *28*, 2014" =?> let date = toList . spcSep $ [ "Feb.", (strong "28") <> ",", "2014" ] meta = setMeta "date" (MetaInlines date) $ nullMeta in Pandoc meta mempty , "Description" =: "#+DESCRIPTION: Explanatory text" =?> let description = toList . spcSep $ [ "Explanatory", "text" ] meta = setMeta "description" (MetaInlines description) $ nullMeta in Pandoc meta mempty , "Properties drawer" =: unlines [ " :PROPERTIES:" , " :setting: foo" , " :END:" ] =?> (mempty::Blocks) , "Logbook drawer" =: unlines [ " :LogBook:" , " - State \"DONE\" from \"TODO\" [2014-03-03 Mon 11:00]" , " :END:" ] =?> (mempty::Blocks) , "Drawer surrounded by text" =: unlines [ "Before" , ":PROPERTIES:" , ":END:" , "After" ] =?> para "Before" <> para "After" , "Drawer start is the only text in first line of a drawer" =: unlines [ " :LOGBOOK: foo" , " :END:" ] =?> para (":LOGBOOK:" <> space <> "foo" <> softbreak <> ":END:") , "Drawers with unknown names are just text" =: unlines [ ":FOO:" , ":END:" ] =?> para (":FOO:" <> softbreak <> ":END:") , "Anchor reference" =: unlines [ "<> Target." , "" , "[[link-here][See here!]]" ] =?> (para (spanWith ("link-here", [], []) mempty <> "Target.") <> para (link "#link-here" "" ("See" <> space <> "here!"))) , "Search links are read as emph" =: "[[Wally][Where's Wally?]]" =?> (para (emph $ "Where's" <> space <> "Wally?")) , "Link to nonexistent anchor" =: unlines [ "<> Target." , "" , "[[link$here][See here!]]" ] =?> (para (spanWith ("link-here", [], []) mempty <> "Target.") <> para (emph ("See" <> space <> "here!"))) , "Link abbreviation" =: unlines [ "#+LINK: wp https://en.wikipedia.org/wiki/%s" , "[[wp:Org_mode][Wikipedia on Org-mode]]" ] =?> (para (link "https://en.wikipedia.org/wiki/Org_mode" "" ("Wikipedia" <> space <> "on" <> space <> "Org-mode"))) , "Link abbreviation, defined after first use" =: unlines [ "[[zl:non-sense][Non-sense articles]]" , "#+LINK: zl http://zeitlens.com/tags/%s.html" ] =?> (para (link "http://zeitlens.com/tags/non-sense.html" "" ("Non-sense" <> space <> "articles"))) , "Link abbreviation, URL encoded arguments" =: unlines [ "#+link: expl http://example.com/%h/foo" , "[[expl:Hello, World!][Moin!]]" ] =?> (para (link "http://example.com/Hello%2C%20World%21/foo" "" "Moin!")) , "Link abbreviation, append arguments" =: unlines [ "#+link: expl http://example.com/" , "[[expl:foo][bar]]" ] =?> (para (link "http://example.com/foo" "" "bar")) ] , testGroup "Basic Blocks" $ [ "Paragraph" =: "Paragraph\n" =?> para "Paragraph" , "First Level Header" =: "* Headline\n" =?> headerWith ("headline", [], []) 1 "Headline" , "Third Level Header" =: "*** Third Level Headline\n" =?> headerWith ("third-level-headline", [], []) 3 ("Third" <> space <> "Level" <> space <> "Headline") , "Compact Headers with Paragraph" =: unlines [ "* First Level" , "** Second Level" , " Text" ] =?> mconcat [ headerWith ("first-level", [], []) 1 ("First" <> space <> "Level") , headerWith ("second-level", [], []) 2 ("Second" <> space <> "Level") , para "Text" ] , "Separated Headers with Paragraph" =: unlines [ "* First Level" , "" , "** Second Level" , "" , " Text" ] =?> mconcat [ headerWith ("first-level", [], []) 1 ("First" <> space <> "Level") , headerWith ("second-level", [], []) 2 ("Second" <> space <> "Level") , para "Text" ] , "Headers not preceded by a blank line" =: unlines [ "** eat dinner" , "Spaghetti and meatballs tonight." , "** walk dog" ] =?> mconcat [ headerWith ("eat-dinner", [], []) 2 ("eat" <> space <> "dinner") , para $ spcSep [ "Spaghetti", "and", "meatballs", "tonight." ] , headerWith ("walk-dog", [], []) 2 ("walk" <> space <> "dog") ] , "Tagged headers" =: unlines [ "* Personal :PERSONAL:" , "** Call Mom :@PHONE:" , "** Call John :@PHONE:JOHN: " ] =?> let tagSpan t = spanWith ("", ["tag"], [("data-tag-name", t)]) mempty in mconcat [ headerWith ("personal", [], []) 1 ("Personal" <> tagSpan "PERSONAL") , headerWith ("call-mom", [], []) 2 ("Call Mom" <> tagSpan "@PHONE") , headerWith ("call-john", [], []) 2 ("Call John" <> tagSpan "@PHONE" <> tagSpan "JOHN") ] , "Untagged header containing colons" =: "* This: is not: tagged" =?> headerWith ("this-is-not-tagged", [], []) 1 "This: is not: tagged" , "Header starting with strokeout text" =: unlines [ "foo" , "" , "* +thing+ other thing" ] =?> mconcat [ para "foo" , headerWith ("thing-other-thing", [], []) 1 ((strikeout "thing") <> " other thing") ] , "Comment Trees" =: unlines [ "* COMMENT A comment tree" , " Not much going on here" , "** This will be dropped" , "* Comment tree above" ] =?> headerWith ("comment-tree-above", [], []) 1 "Comment tree above" , "Nothing but a COMMENT header" =: "* COMMENT Test" =?> (mempty::Blocks) , "Tree with :noexport:" =: unlines [ "* Should be ignored :archive:noexport:old:" , "** Old stuff" , " This is not going to be exported" ] =?> (mempty::Blocks) , "Subtree with :noexport:" =: unlines [ "* Exported" , "** This isn't exported :noexport:" , "*** This neither" , "** But this is" ] =?> mconcat [ headerWith ("exported", [], []) 1 "Exported" , headerWith ("but-this-is", [], []) 2 "But this is" ] , "Paragraph starting with an asterisk" =: "*five" =?> para "*five" , "Paragraph containing asterisk at beginning of line" =: unlines [ "lucky" , "*star" ] =?> para ("lucky" <> softbreak <> "*star") , "Example block" =: unlines [ ": echo hello" , ": echo dear tester" ] =?> codeBlockWith ("", ["example"], []) "echo hello\necho dear tester\n" , "Example block surrounded by text" =: unlines [ "Greetings" , ": echo hello" , ": echo dear tester" , "Bye" ] =?> mconcat [ para "Greetings" , codeBlockWith ("", ["example"], []) "echo hello\necho dear tester\n" , para "Bye" ] , "Horizontal Rule" =: unlines [ "before" , "-----" , "after" ] =?> mconcat [ para "before" , horizontalRule , para "after" ] , "Not a Horizontal Rule" =: "----- five dashes" =?> (para $ spcSep [ "-----", "five", "dashes" ]) , "Comment Block" =: unlines [ "#+BEGIN_COMMENT" , "stuff" , "bla" , "#+END_COMMENT"] =?> (mempty::Blocks) , "Figure" =: unlines [ "#+caption: A very courageous man." , "#+name: goodguy" , "[[edward.jpg]]" ] =?> para (image "edward.jpg" "fig:goodguy" "A very courageous man.") , "Unnamed figure" =: unlines [ "#+caption: A great whistleblower." , "[[snowden.png]]" ] =?> para (image "snowden.png" "" "A great whistleblower.") , "Figure with `fig:` prefix in name" =: unlines [ "#+caption: Used as a metapher in evolutionary biology." , "#+name: fig:redqueen" , "[[the-red-queen.jpg]]" ] =?> para (image "the-red-queen.jpg" "fig:redqueen" "Used as a metapher in evolutionary biology.") , "Footnote" =: unlines [ "A footnote[1]" , "" , "[1] First paragraph" , "" , "second paragraph" ] =?> para (mconcat [ "A", space, "footnote" , note $ mconcat [ para ("First" <> space <> "paragraph") , para ("second" <> space <> "paragraph") ] ]) , "Two footnotes" =: unlines [ "Footnotes[fn:1][fn:2]" , "" , "[fn:1] First note." , "" , "[fn:2] Second note." ] =?> para (mconcat [ "Footnotes" , note $ para ("First" <> space <> "note.") , note $ para ("Second" <> space <> "note.") ]) , "Footnote followed by header" =: unlines [ "Another note[fn:yay]" , "" , "[fn:yay] This is great!" , "" , "** Headline" ] =?> mconcat [ para (mconcat [ "Another", space, "note" , note $ para ("This" <> space <> "is" <> space <> "great!") ]) , headerWith ("headline", [], []) 2 "Headline" ] ] , testGroup "Lists" $ [ "Simple Bullet Lists" =: ("- Item1\n" ++ "- Item2\n") =?> bulletList [ plain "Item1" , plain "Item2" ] , "Indented Bullet Lists" =: (" - Item1\n" ++ " - Item2\n") =?> bulletList [ plain "Item1" , plain "Item2" ] , "Unindented *" =: ("- Item1\n" ++ "* Item2\n") =?> bulletList [ plain "Item1" ] <> headerWith ("item2", [], []) 1 "Item2" , "Multi-line Bullet Lists" =: ("- *Fat\n" ++ " Tony*\n" ++ "- /Sideshow\n" ++ " Bob/") =?> bulletList [ plain $ strong ("Fat" <> softbreak <> "Tony") , plain $ emph ("Sideshow" <> softbreak <> "Bob") ] , "Nested Bullet Lists" =: ("- Discovery\n" ++ " + One More Time\n" ++ " + Harder, Better, Faster, Stronger\n" ++ "- Homework\n" ++ " + Around the World\n"++ "- Human After All\n" ++ " + Technologic\n" ++ " + Robot Rock\n") =?> bulletList [ mconcat [ plain "Discovery" , bulletList [ plain ("One" <> space <> "More" <> space <> "Time") , plain ("Harder," <> space <> "Better," <> space <> "Faster," <> space <> "Stronger") ] ] , mconcat [ plain "Homework" , bulletList [ plain ("Around" <> space <> "the" <> space <> "World") ] ] , mconcat [ plain ("Human" <> space <> "After" <> space <> "All") , bulletList [ plain "Technologic" , plain ("Robot" <> space <> "Rock") ] ] ] , "Bullet List with Decreasing Indent" =: (" - Discovery\n\ \ - Human After All\n") =?> mconcat [ bulletList [ plain "Discovery" ] , bulletList [ plain ("Human" <> space <> "After" <> space <> "All")] ] , "Header follows Bullet List" =: (" - Discovery\n\ \ - Human After All\n\ \* Homework") =?> mconcat [ bulletList [ plain "Discovery" , plain ("Human" <> space <> "After" <> space <> "All") ] , headerWith ("homework", [], []) 1 "Homework" ] , "Bullet List Unindented with trailing Header" =: ("- Discovery\n\ \- Homework\n\ \* NotValidListItem") =?> mconcat [ bulletList [ plain "Discovery" , plain "Homework" ] , headerWith ("notvalidlistitem", [], []) 1 "NotValidListItem" ] , "Simple Ordered List" =: ("1. Item1\n" ++ "2. Item2\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ plain "Item1" , plain "Item2" ] in orderedListWith listStyle listStructure , "Simple Ordered List with Parens" =: ("1) Item1\n" ++ "2) Item2\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ plain "Item1" , plain "Item2" ] in orderedListWith listStyle listStructure , "Indented Ordered List" =: (" 1. Item1\n" ++ " 2. Item2\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ plain "Item1" , plain "Item2" ] in orderedListWith listStyle listStructure , "Nested Ordered Lists" =: ("1. One\n" ++ " 1. One-One\n" ++ " 2. One-Two\n" ++ "2. Two\n" ++ " 1. Two-One\n"++ " 2. Two-Two\n") =?> let listStyle = (1, DefaultStyle, DefaultDelim) listStructure = [ mconcat [ plain "One" , orderedList [ plain "One-One" , plain "One-Two" ] ] , mconcat [ plain "Two" , orderedList [ plain "Two-One" , plain "Two-Two" ] ] ] in orderedListWith listStyle listStructure , "Ordered List in Bullet List" =: ("- Emacs\n" ++ " 1. Org\n") =?> bulletList [ (plain "Emacs") <> (orderedList [ plain "Org"]) ] , "Bullet List in Ordered List" =: ("1. GNU\n" ++ " - Freedom\n") =?> orderedList [ (plain "GNU") <> bulletList [ (plain "Freedom") ] ] , "Definition List" =: unlines [ "- PLL :: phase-locked loop" , "- TTL ::" , " transistor-transistor logic" , "- PSK :: phase-shift keying" , "" , " a digital modulation scheme" ] =?> definitionList [ ("PLL", [ plain $ "phase-locked" <> space <> "loop" ]) , ("TTL", [ plain $ "transistor-transistor" <> space <> "logic" ]) , ("PSK", [ mconcat [ para $ "phase-shift" <> space <> "keying" , para $ spcSep [ "a", "digital" , "modulation", "scheme" ] ] ]) ] , "Definition list with multi-word term" =: " - Elijah Wood :: He plays Frodo" =?> definitionList [ ("Elijah" <> space <> "Wood", [plain $ "He" <> space <> "plays" <> space <> "Frodo"])] , "Compact definition list" =: unlines [ "- ATP :: adenosine 5' triphosphate" , "- DNA :: deoxyribonucleic acid" , "- PCR :: polymerase chain reaction" , "" ] =?> definitionList [ ("ATP", [ plain $ spcSep [ "adenosine", "5'", "triphosphate" ] ]) , ("DNA", [ plain $ spcSep [ "deoxyribonucleic", "acid" ] ]) , ("PCR", [ plain $ spcSep [ "polymerase", "chain", "reaction" ] ]) ] , "Definition List With Trailing Header" =: "- definition :: list\n\ \- cool :: defs\n\ \* header" =?> mconcat [ definitionList [ ("definition", [plain "list"]) , ("cool", [plain "defs"]) ] , headerWith ("header", [], []) 1 "header" ] , "Definition lists double-colon markers must be surrounded by whitespace" =: "- std::cout" =?> bulletList [ plain "std::cout" ] , "Loose bullet list" =: unlines [ "- apple" , "" , "- orange" , "" , "- peach" ] =?> bulletList [ para "apple" , para "orange" , para "peach" ] , "Recognize preceding paragraphs in non-list contexts" =: unlines [ "CLOSED: [2015-10-19 Mon 15:03]" , "- Note taken on [2015-10-19 Mon 13:24]" ] =?> mconcat [ para "CLOSED: [2015-10-19 Mon 15:03]" , bulletList [ plain "Note taken on [2015-10-19 Mon 13:24]" ] ] ] , testGroup "Tables" [ "Single cell table" =: "|Test|" =?> simpleTable' 1 mempty [[plain "Test"]] , "Multi cell table" =: "| One | Two |" =?> simpleTable' 2 mempty [ [ plain "One", plain "Two" ] ] , "Multi line table" =: unlines [ "| One |" , "| Two |" , "| Three |" ] =?> simpleTable' 1 mempty [ [ plain "One" ] , [ plain "Two" ] , [ plain "Three" ] ] , "Empty table" =: "||" =?> simpleTable' 1 mempty mempty , "Glider Table" =: unlines [ "| 1 | 0 | 0 |" , "| 0 | 1 | 1 |" , "| 1 | 1 | 0 |" ] =?> simpleTable' 3 mempty [ [ plain "1", plain "0", plain "0" ] , [ plain "0", plain "1", plain "1" ] , [ plain "1", plain "1", plain "0" ] ] , "Table between Paragraphs" =: unlines [ "Before" , "| One | Two |" , "After" ] =?> mconcat [ para "Before" , simpleTable' 2 mempty [ [ plain "One", plain "Two" ] ] , para "After" ] , "Table with Header" =: unlines [ "| Species | Status |" , "|--------------+--------------|" , "| cervisiae | domesticated |" , "| paradoxus | wild |" ] =?> simpleTable [ plain "Species", plain "Status" ] [ [ plain "cervisiae", plain "domesticated" ] , [ plain "paradoxus", plain "wild" ] ] , "Table with final hline" =: unlines [ "| cervisiae | domesticated |" , "| paradoxus | wild |" , "|--------------+--------------|" ] =?> simpleTable' 2 mempty [ [ plain "cervisiae", plain "domesticated" ] , [ plain "paradoxus", plain "wild" ] ] , "Table in a box" =: unlines [ "|---------|---------|" , "| static | Haskell |" , "| dynamic | Lisp |" , "|---------+---------|" ] =?> simpleTable' 2 mempty [ [ plain "static", plain "Haskell" ] , [ plain "dynamic", plain "Lisp" ] ] , "Table with alignment row" =: unlines [ "| Numbers | Text | More |" , "| | | |" , "| 1 | One | foo |" , "| 2 | Two | bar |" ] =?> table "" (zip [AlignCenter, AlignRight, AlignDefault] [0, 0, 0]) [] [ [ plain "Numbers", plain "Text", plain "More" ] , [ plain "1" , plain "One" , plain "foo" ] , [ plain "2" , plain "Two" , plain "bar" ] ] , "Pipe within text doesn't start a table" =: "Ceci n'est pas une | pipe " =?> para (spcSep [ "Ceci", "n'est", "pas", "une", "|", "pipe" ]) , "Missing pipe at end of row" =: "|incomplete-but-valid" =?> simpleTable' 1 mempty [ [ plain "incomplete-but-valid" ] ] , "Table with differing row lengths" =: unlines [ "| Numbers | Text " , "|-" , "| | |" , "| 1 | One | foo |" , "| 2" ] =?> table "" (zip [AlignCenter, AlignRight, AlignDefault] [0, 0, 0]) [ plain "Numbers", plain "Text" , plain mempty ] [ [ plain "1" , plain "One" , plain "foo" ] , [ plain "2" , plain mempty , plain mempty ] ] , "Table with caption" =: unlines [ "#+CAPTION: Hitchhiker's Multiplication Table" , "| x | 6 |" , "| 9 | 42 |" ] =?> table "Hitchhiker's Multiplication Table" [(AlignDefault, 0), (AlignDefault, 0)] [] [ [ plain "x", plain "6" ] , [ plain "9", plain "42" ] ] ] , testGroup "Blocks and fragments" [ "Source block" =: unlines [ " #+BEGIN_SRC haskell" , " main = putStrLn greeting" , " where greeting = \"moin\"" , " #+END_SRC" ] =?> let attr' = ("", ["haskell"], []) code' = "main = putStrLn greeting\n" ++ " where greeting = \"moin\"\n" in codeBlockWith attr' code' , "Source block between paragraphs" =: unlines [ "Low German greeting" , " #+BEGIN_SRC haskell" , " main = putStrLn greeting" , " where greeting = \"Moin!\"" , " #+END_SRC" ] =?> let attr' = ("", ["haskell"], []) code' = "main = putStrLn greeting\n" ++ " where greeting = \"Moin!\"\n" in mconcat [ para $ spcSep [ "Low", "German", "greeting" ] , codeBlockWith attr' code' ] , "Source block with rundoc/babel arguments" =: unlines [ "#+BEGIN_SRC emacs-lisp :exports both" , "(progn (message \"Hello, World!\")" , " (+ 23 42))" , "#+END_SRC" ] =?> let classes = [ "commonlisp" -- as kate doesn't know emacs-lisp syntax , "rundoc-block" ] params = [ ("rundoc-language", "emacs-lisp") , ("rundoc-exports", "both") ] code' = unlines [ "(progn (message \"Hello, World!\")" , " (+ 23 42))" ] in codeBlockWith ("", classes, params) code' , "Source block with results and :exports both" =: unlines [ "#+BEGIN_SRC emacs-lisp :exports both" , "(progn (message \"Hello, World!\")" , " (+ 23 42))" , "#+END_SRC" , "" , "#+RESULTS:" , ": 65"] =?> let classes = [ "commonlisp" -- as kate doesn't know emacs-lisp syntax , "rundoc-block" ] params = [ ("rundoc-language", "emacs-lisp") , ("rundoc-exports", "both") ] code' = unlines [ "(progn (message \"Hello, World!\")" , " (+ 23 42))" ] results' = "65\n" in codeBlockWith ("", classes, params) code' <> codeBlockWith ("", ["example"], []) results' , "Source block with results and :exports code" =: unlines [ "#+BEGIN_SRC emacs-lisp :exports code" , "(progn (message \"Hello, World!\")" , " (+ 23 42))" , "#+END_SRC" , "" , "#+RESULTS:" , ": 65" ] =?> let classes = [ "commonlisp" -- as kate doesn't know emacs-lisp syntax , "rundoc-block" ] params = [ ("rundoc-language", "emacs-lisp") , ("rundoc-exports", "code") ] code' = unlines [ "(progn (message \"Hello, World!\")" , " (+ 23 42))" ] in codeBlockWith ("", classes, params) code' , "Source block with results and :exports results" =: unlines [ "#+BEGIN_SRC emacs-lisp :exports results" , "(progn (message \"Hello, World!\")" , " (+ 23 42))" , "#+END_SRC" , "" , "#+RESULTS:" , ": 65" ] =?> let results' = "65\n" in codeBlockWith ("", ["example"], []) results' , "Source block with results and :exports none" =: unlines [ "#+BEGIN_SRC emacs-lisp :exports none" , "(progn (message \"Hello, World!\")" , " (+ 23 42))" , "#+END_SRC" , "" , "#+RESULTS:" , ": 65" ] =?> rawBlock "html" "" , "Source block with toggling header arguments" =: unlines [ "#+BEGIN_SRC sh :noeval" , "echo $HOME" , "#+END_SRC" ] =?> let classes = [ "bash", "rundoc-block" ] params = [ ("rundoc-language", "sh"), ("rundoc-noeval", "yes") ] in codeBlockWith ("", classes, params) "echo $HOME\n" , "Example block" =: unlines [ "#+begin_example" , "A chosen representation of" , "a rule." , "#+eND_exAMPle" ] =?> codeBlockWith ("", ["example"], []) "A chosen representation of\na rule.\n" , "HTML block" =: unlines [ "#+BEGIN_HTML" , "" , "#+END_HTML" ] =?> rawBlock "html" "\n" , "Quote block" =: unlines [ "#+BEGIN_QUOTE" , "/Niemand/ hat die Absicht, eine Mauer zu errichten!" , "#+END_QUOTE" ] =?> blockQuote (para (spcSep [ emph "Niemand", "hat", "die", "Absicht," , "eine", "Mauer", "zu", "errichten!" ])) , "Verse block" =: unlines [ "The first lines of Goethe's /Faust/:" , "#+begin_verse" , "Habe nun, ach! Philosophie," , "Juristerei und Medizin," , "Und leider auch Theologie!" , "Durchaus studiert, mit heißem Bemühn." , "#+end_verse" ] =?> mconcat [ para $ spcSep [ "The", "first", "lines", "of" , "Goethe's", emph "Faust" <> ":"] , para $ mconcat [ spcSep [ "Habe", "nun,", "ach!", "Philosophie," ] , linebreak , spcSep [ "Juristerei", "und", "Medizin," ] , linebreak , spcSep [ "Und", "leider", "auch", "Theologie!" ] , linebreak , spcSep [ "Durchaus", "studiert,", "mit", "heißem", "Bemühn." ] ] ] , "Verse block with newlines" =: unlines [ "#+BEGIN_VERSE" , "foo" , "" , "bar" , "#+END_VERSE" ] =?> para ("foo" <> linebreak <> linebreak <> "bar") , "LaTeX fragment" =: unlines [ "\\begin{equation}" , "X_i = \\begin{cases}" , " G_{\\alpha(i)} & \\text{if }\\alpha(i-1) = \\alpha(i)\\\\" , " C_{\\alpha(i)} & \\text{otherwise}" , " \\end{cases}" , "\\end{equation}" ] =?> rawBlock "latex" (unlines [ "\\begin{equation}" , "X_i = \\begin{cases}" , " G_{\\alpha(i)} & \\text{if }\\alpha(i-1) =" ++ " \\alpha(i)\\\\" , " C_{\\alpha(i)} & \\text{otherwise}" , " \\end{cases}" , "\\end{equation}" ]) , "Code block with caption" =: unlines [ "#+CAPTION: Functor laws in Haskell" , "#+NAME: functor-laws" , "#+BEGIN_SRC haskell" , "fmap id = id" , "fmap (p . q) = (fmap p) . (fmap q)" , "#+END_SRC" ] =?> divWith nullAttr (mappend (plain $ spanWith ("", ["label"], []) (spcSep [ "Functor", "laws", "in", "Haskell" ])) (codeBlockWith ("functor-laws", ["haskell"], []) (unlines [ "fmap id = id" , "fmap (p . q) = (fmap p) . (fmap q)" ]))) , "Convert blank lines in blocks to single newlines" =: unlines [ "#+begin_html" , "" , "boring" , "" , "#+end_html" ] =?> rawBlock "html" "\nboring\n\n" , "Non-letter chars in source block parameters" =: unlines [ "#+BEGIN_SRC C :tangle xxxx.c :city Zürich" , "code body" , "#+END_SRC" ] =?> let classes = [ "c", "rundoc-block" ] params = [ ("rundoc-language", "C") , ("rundoc-tangle", "xxxx.c") , ("rundoc-city", "Zürich") ] in codeBlockWith ( "", classes, params) "code body\n" ] , testGroup "Smart punctuation" [ test orgSmart "quote before ellipses" ("'...hi'" =?> para (singleQuoted "…hi")) , test orgSmart "apostrophe before emph" ("D'oh! A l'/aide/!" =?> para ("D’oh! A l’" <> emph "aide" <> "!")) , test orgSmart "apostrophe in French" ("À l'arrivée de la guerre, le thème de l'«impossibilité du socialisme»" =?> para "À l’arrivée de la guerre, le thème de l’«impossibilité du socialisme»") , test orgSmart "Quotes cannot occur at the end of emphasized text" ("/say \"yes\"/" =?> para ("/say" <> space <> doubleQuoted "yes" <> "/")) , test orgSmart "Dashes are allowed at the borders of emphasis'" ("/foo---/" =?> para (emph "foo—")) , test orgSmart "Single quotes can be followed by emphasized text" ("Singles on the '/meat market/'" =?> para ("Singles on the " <> (singleQuoted $ emph "meat market"))) , test orgSmart "Double quotes can be followed by emphasized text" ("Double income, no kids: \"/DINK/\"" =?> para ("Double income, no kids: " <> (doubleQuoted $ emph "DINK"))) ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/0000755000000000000000000000000012645626061016656 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/Tests/Writers/Native.hs0000644000000000000000000000101112645626061020431 0ustar rootrootmodule Tests.Writers.Native (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() p_write_rt :: Pandoc -> Bool p_write_rt d = read (writeNative def{ writerStandalone = True } d) == d p_write_blocks_rt :: [Block] -> Bool p_write_blocks_rt bs = length bs > 20 || read (writeNative def (Pandoc nullMeta bs)) == bs tests :: [Test] tests = [ property "p_write_rt" p_write_rt , property "p_write_blocks_rt" p_write_blocks_rt ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/Markdown.hs0000644000000000000000000001176012645626061021001 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} module Tests.Writers.Markdown (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() markdown :: (ToString a, ToPandoc a) => a -> String markdown = writeMarkdown def . toPandoc {- "my test" =: X =?> Y is shorthand for test markdown "my test" $ X =?> Y which is in turn shorthand for test markdown "my test" (X,Y) -} infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test markdown tests :: [Test] tests = [ "indented code after list" =: (orderedList [ para "one" <> para "two" ] <> codeBlock "test") =?> "1. one\n\n two\n\n\n\n test" , "list with tight sublist" =: bulletList [ plain "foo" <> bulletList [ plain "bar" ], plain "baz" ] =?> "- foo\n - bar\n- baz\n" ] ++ [shortcutLinkRefsTests] shortcutLinkRefsTests :: Test shortcutLinkRefsTests = let infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test (writeMarkdown (def {writerReferenceLinks = True}) . toPandoc) in testGroup "Shortcut reference links" [ "Simple link (shortcutable)" =: (para (link "/url" "title" "foo")) =?> "[foo]\n\n [foo]: /url \"title\"" , "Followed by another link (unshortcutable)" =: (para ((link "/url1" "title1" "first") <> (link "/url2" "title2" "second"))) =?> unlines [ "[first][][second]" , "" , " [first]: /url1 \"title1\"" , " [second]: /url2 \"title2\"" ] , "Followed by space and another link (unshortcutable)" =: (para ((link "/url1" "title1" "first") <> " " <> (link "/url2" "title2" "second"))) =?> unlines [ "[first][] [second]" , "" , " [first]: /url1 \"title1\"" , " [second]: /url2 \"title2\"" ] , "Reference link is used multiple times (unshortcutable)" =: (para ((link "/url1" "" "foo") <> (link "/url2" "" "foo") <> (link "/url3" "" "foo"))) =?> unlines [ "[foo][][foo][1][foo][2]" , "" , " [foo]: /url1" , " [1]: /url2" , " [2]: /url3" ] , "Reference link is used multiple times (unshortcutable)" =: (para ((link "/url1" "" "foo") <> " " <> (link "/url2" "" "foo") <> " " <> (link "/url3" "" "foo"))) =?> unlines [ "[foo][] [foo][1] [foo][2]" , "" , " [foo]: /url1" , " [1]: /url2" , " [2]: /url3" ] , "Reference link is followed by text in brackets" =: (para ((link "/url" "" "link") <> "[text in brackets]")) =?> unlines [ "[link][]\\[text in brackets\\]" , "" , " [link]: /url" ] , "Reference link is followed by space and text in brackets" =: (para ((link "/url" "" "link") <> " [text in brackets]")) =?> unlines [ "[link][] \\[text in brackets\\]" , "" , " [link]: /url" ] , "Reference link is followed by RawInline" =: (para ((link "/url" "" "link") <> rawInline "markdown" "[rawText]")) =?> unlines [ "[link][][rawText]" , "" , " [link]: /url" ] , "Reference link is followed by space and RawInline" =: (para ((link "/url" "" "link") <> space <> rawInline "markdown" "[rawText]")) =?> unlines [ "[link][] [rawText]" , "" , " [link]: /url" ] , "Reference link is followed by RawInline with space" =: (para ((link "/url" "" "link") <> rawInline "markdown" " [rawText]")) =?> unlines [ "[link][] [rawText]" , "" , " [link]: /url" ] , "Reference link is followed by citation" =: (para ((link "/url" "" "link") <> cite [Citation "author" [] [] NormalCitation 0 0] (str "[@author]"))) =?> unlines [ "[link][][@author]" , "" , " [link]: /url" ] , "Reference link is followed by space and citation" =: (para ((link "/url" "" "link") <> space <> cite [Citation "author" [] [] NormalCitation 0 0] (str "[@author]"))) =?> unlines [ "[link][] [@author]" , "" , " [link]: /url" ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/Docbook.hs0000644000000000000000000002523212645626061020576 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.Docbook (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() docbook :: (ToString a, ToPandoc a) => a -> String docbook = writeDocbook def{ writerWrapText = WrapNone } . toPandoc {- "my test" =: X =?> Y is shorthand for test docbook "my test" $ X =?> Y which is in turn shorthand for test docbook "my test" (X,Y) -} infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test docbook lineblock :: Blocks lineblock = para ("some text" <> linebreak <> "and more lines" <> linebreak <> "and again") lineblock_out :: [String] lineblock_out = [ "some text" , "and more lines" , "and again" ] tests :: [Test] tests = [ testGroup "line blocks" [ "none" =: para "This is a test" =?> unlines [ "" , " This is a test" , "" ] , "basic" =: lineblock =?> unlines lineblock_out , "blockquote" =: blockQuote lineblock =?> unlines ( [ "
" ] ++ lineblock_out ++ [ "
" ] ) , "footnote" =: para ("This is a test" <> note lineblock <> " of footnotes") =?> unlines ( [ "" , " This is a test" ] ++ lineblock_out ++ [ " of footnotes" , "" ] ) ] , testGroup "compact lists" [ testGroup "bullet" [ "compact" =: bulletList [plain "a", plain "b", plain "c"] =?> unlines [ "" , " " , " " , " a" , " " , " " , " " , " " , " b" , " " , " " , " " , " " , " c" , " " , " " , "" ] , "loose" =: bulletList [para "a", para "b", para "c"] =?> unlines [ "" , " " , " " , " a" , " " , " " , " " , " " , " b" , " " , " " , " " , " " , " c" , " " , " " , "" ] ] , testGroup "ordered" [ "compact" =: orderedList [plain "a", plain "b", plain "c"] =?> unlines [ "" , " " , " " , " a" , " " , " " , " " , " " , " b" , " " , " " , " " , " " , " c" , " " , " " , "" ] , "loose" =: orderedList [para "a", para "b", para "c"] =?> unlines [ "" , " " , " " , " a" , " " , " " , " " , " " , " b" , " " , " " , " " , " " , " c" , " " , " " , "" ] ] , testGroup "definition" [ "compact" =: definitionList [ ("an", [plain "apple" ]) , ("a", [plain "banana"]) , ("an", [plain "orange"])] =?> unlines [ "" , " " , " " , " an" , " " , " " , " " , " apple" , " " , " " , " " , " " , " " , " a" , " " , " " , " " , " banana" , " " , " " , " " , " " , " " , " an" , " " , " " , " " , " orange" , " " , " " , " " , "" ] , "loose" =: definitionList [ ("an", [para "apple" ]) , ("a", [para "banana"]) , ("an", [para "orange"])] =?> unlines [ "" , " " , " " , " an" , " " , " " , " " , " apple" , " " , " " , " " , " " , " " , " a" , " " , " " , " " , " banana" , " " , " " , " " , " " , " " , " an" , " " , " " , " " , " orange" , " " , " " , " " , "" ] ] ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/LaTeX.hs0000644000000000000000000000602112645626061020166 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.LaTeX (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() latex :: (ToString a, ToPandoc a) => a -> String latex = writeLaTeX def{ writerHighlight = True } . toPandoc latexListing :: (ToString a, ToPandoc a) => a -> String latexListing = writeLaTeX def{ writerListings = True } . toPandoc {- "my test" =: X =?> Y is shorthand for test latex "my test" $ X =?> Y which is in turn shorthand for test latex "my test" (X,Y) -} infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test latex tests :: [Test] tests = [ testGroup "code blocks" [ "in footnotes" =: note (para "hi" <> codeBlock "hi") =?> "\\footnote{hi\n\n\\begin{Verbatim}\nhi\n\\end{Verbatim}\n}" , test latexListing "identifier" $ codeBlockWith ("id",[],[]) "hi" =?> ("\\begin{lstlisting}[label=id]\nhi\n\\end{lstlisting}" :: String) , test latexListing "no identifier" $ codeBlock "hi" =?> ("\\begin{lstlisting}\nhi\n\\end{lstlisting}" :: String) ] , testGroup "definition lists" [ "with internal link" =: definitionList [(link "#go" "" (str "testing"), [plain (text "hi there")])] =?> "\\begin{description}\n\\tightlist\n\\item[{\\protect\\hyperlink{go}{testing}}]\nhi there\n\\end{description}" ] , testGroup "math" [ "escape |" =: para (math "\\sigma|_{\\{x\\}}") =?> "\\(\\sigma|_{\\{x\\}}\\)" ] , testGroup "headers" [ "unnumbered header" =: headerWith ("foo",["unnumbered"],[]) 1 (text "Header 1" <> note (plain $ text "note")) =?> "\\section*{\\texorpdfstring{Header 1\\footnote{note}}{Header 1}}\\label{foo}\n\\addcontentsline{toc}{section}{Header 1}\n" , "in list item" =: bulletList [header 2 (text "foo")] =?> "\\begin{itemize}\n\\item ~\n \\subsection{foo}\n\\end{itemize}" , "in definition list item" =: definitionList [(text "foo", [header 2 (text "bar"), para $ text "baz"])] =?> "\\begin{description}\n\\item[foo] ~ \n\\subsection{bar}\n\nbaz\n\\end{description}" , "containing image" =: header 1 (image "imgs/foo.jpg" "" (text "Alt text")) =?> "\\section{\\texorpdfstring{\\protect\\includegraphics{imgs/foo.jpg}}{Alt text}}" ] , testGroup "inline code" [ "struck out and highlighted" =: strikeout (codeWith ("",["haskell"],[]) "foo" <> space <> str "bar") =?> "\\sout{\\mbox{\\VERB|\\NormalTok{foo}|} bar}" , "struck out and not highlighted" =: strikeout (code "foo" <> space <> str "bar") =?> "\\sout{\\texttt{foo} bar}" , "single quotes" =: code "dog's" =?> "\\texttt{dog\\textquotesingle{}s}" ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/Docx.hs0000644000000000000000000001055012645626061020110 0ustar rootrootmodule Tests.Writers.Docx (tests) where import Text.Pandoc.Options import Text.Pandoc.Readers.Native import Text.Pandoc.Definition import Tests.Helpers import Test.Framework import Text.Pandoc.Readers.Docx import Text.Pandoc.Writers.Docx import Text.Pandoc.Error import System.FilePath (()) type Options = (WriterOptions, ReaderOptions) compareOutput :: Options -> FilePath -> IO (Pandoc, Pandoc) compareOutput opts nativeFile = do nf <- Prelude.readFile nativeFile let wopts = fst opts df <- writeDocx wopts{writerUserDataDir = Just (".." "data")} (handleError $ readNative nf) let (p, _) = handleError $ readDocx (snd opts) df return (p, handleError $ readNative nf) testCompareWithOptsIO :: Options -> String -> FilePath -> IO Test testCompareWithOptsIO opts name nativeFile = do (dp, np) <- compareOutput opts nativeFile return $ test id name (dp, np) testCompareWithOpts :: Options -> String -> FilePath -> Test testCompareWithOpts opts name nativeFile = buildTest $ testCompareWithOptsIO opts name nativeFile testCompare :: String -> FilePath -> Test testCompare = testCompareWithOpts def tests :: [Test] tests = [ testGroup "inlines" [ testCompare "font formatting" "docx/inline_formatting_writer.native" , testCompare "font formatting with character styles" "docx/char_styles.native" , testCompare "hyperlinks" "docx/links_writer.native" , testCompare "inline image" "docx/image_no_embed_writer.native" , testCompare "inline image in links" "docx/inline_images_writer.native" , testCompare "handling unicode input" "docx/unicode.native" , testCompare "literal tabs" "docx/tabs.native" , testCompare "normalizing inlines" "docx/normalize.native" , testCompare "normalizing inlines deep inside blocks" "docx/deep_normalize.native" , testCompare "move trailing spaces outside of formatting" "docx/trailing_spaces_in_formatting.native" , testCompare "inline code (with VerbatimChar style)" "docx/inline_code.native" , testCompare "inline code in subscript and superscript" "docx/verbatim_subsuper.native" ] , testGroup "blocks" [ testCompare "headers" "docx/headers.native" , testCompare "headers already having auto identifiers" "docx/already_auto_ident.native" , testCompare "numbered headers automatically made into list" "docx/numbered_header.native" , testCompare "i18n blocks (headers and blockquotes)" "docx/i18n_blocks.native" -- Continuation does not survive round-trip , testCompare "lists" "docx/lists_writer.native" , testCompare "definition lists" "docx/definition_list.native" , testCompare "custom defined lists in styles" "docx/german_styled_lists.native" , testCompare "footnotes and endnotes" "docx/notes.native" , testCompare "blockquotes (parsing indent as blockquote)" "docx/block_quotes_parse_indent.native" , testCompare "hanging indents" "docx/hanging_indent.native" -- tables headers do not survive round-trip, should look into that , testCompare "tables" "docx/tables.native" , testCompare "tables with lists in cells" "docx/table_with_list_cell.native" , testCompare "code block" "docx/codeblock.native" , testCompare "dropcap paragraphs" "docx/drop_cap.native" ] , testGroup "metadata" [ testCompareWithOpts (def,def{readerStandalone=True}) "metadata fields" "docx/metadata.native" , testCompareWithOpts (def,def{readerStandalone=True}) "stop recording metadata with normal text" "docx/metadata_after_normal.native" ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/HTML.hs0000644000000000000000000000215612645626061017762 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.HTML (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() html :: (ToString a, ToPandoc a) => a -> String html = writeHtmlString def{ writerWrapText = WrapNone } . toPandoc {- "my test" =: X =?> Y is shorthand for test html "my test" $ X =?> Y which is in turn shorthand for test html "my test" (X,Y) -} infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test html tests :: [Test] tests = [ testGroup "inline code" [ "basic" =: code "@&" =?> "@&" , "haskell" =: codeWith ("",["haskell"],[]) ">>=" =?> ">>=" , "nolanguage" =: codeWith ("",["nolanguage"],[]) ">>=" =?> ">>=" ] , testGroup "images" [ "alt with formatting" =: image "/url" "title" ("my " <> emph "image") =?> "\"my" ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/Plain.hs0000644000000000000000000000070512645626061020257 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.Plain (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test (writePlain def . toPandoc) tests :: [Test] tests = [ "strongly emphasized text to uppercase" =: strong "Straße" =?> "STRASSE" ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/RST.hs0000644000000000000000000000665512645626061017676 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.RST (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test (writeRST def{ writerHighlight = True } . toPandoc) tests :: [Test] tests = [ testGroup "rubrics" [ "in list item" =: bulletList [header 2 (text "foo")] =?> "- .. rubric:: foo" , "in definition list item" =: definitionList [(text "foo", [header 2 (text "bar"), para $ text "baz"])] =?> unlines [ "foo" , " .. rubric:: bar" , "" , " baz"] , "in block quote" =: blockQuote (header 1 (text "bar")) =?> " .. rubric:: bar" , "with id" =: blockQuote (headerWith ("foo",[],[]) 1 (text "bar")) =?> unlines [ " .. rubric:: bar" , " :name: foo"] , "with id class" =: blockQuote (headerWith ("foo",["baz"],[]) 1 (text "bar")) =?> unlines [ " .. rubric:: bar" , " :name: foo" , " :class: baz"] ] , testGroup "headings" [ "normal heading" =: header 1 (text "foo") =?> unlines [ "foo" , "==="] -- note: heading normalization is only done in standalone mode , test (writeRST def{ writerStandalone = True, writerTemplate = "$body$\n" } . toPandoc) "heading levels" $ header 1 (text "Header 1") <> header 3 (text "Header 2") <> header 2 (text "Header 2") <> header 1 (text "Header 1") <> header 4 (text "Header 2") <> header 5 (text "Header 3") <> header 3 (text "Header 2") =?> unlines [ "Header 1" , "========" , "" , "Header 2" , "--------" , "" , "Header 2" , "--------" , "" , "Header 1" , "========" , "" , "Header 2" , "--------" , "" , "Header 3" , "~~~~~~~~" , "" , "Header 2" , "--------"] , test (writeRST def{ writerStandalone = True, writerTemplate = "$body$\n" } . toPandoc) "minimal heading levels" $ header 2 (text "Header 1") <> header 3 (text "Header 2") <> header 2 (text "Header 1") <> header 4 (text "Header 2") <> header 5 (text "Header 3") <> header 3 (text "Header 2") =?> unlines [ "Header 1" , "========" , "" , "Header 2" , "--------" , "" , "Header 1" , "========" , "" , "Header 2" , "--------" , "" , "Header 3" , "~~~~~~~~" , "" , "Header 2" , "--------"] ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/AsciiDoc.hs0000644000000000000000000000433112645626061020671 0ustar rootrootmodule Tests.Writers.AsciiDoc (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() asciidoc :: (ToString a, ToPandoc a) => a -> String asciidoc = writeAsciiDoc def{ writerWrapText = WrapNone } . toPandoc tests :: [Test] tests = [ testGroup "emphasis" [ test asciidoc "emph word before" $ para (text "foo" <> emph (text "bar")) =?> "foo__bar__" , test asciidoc "emph word after" $ para (emph (text "foo") <> text "bar") =?> "__foo__bar" , test asciidoc "emph quoted" $ para (doubleQuoted (emph (text "foo"))) =?> "``__foo__''" , test asciidoc "strong word before" $ para (text "foo" <> strong (text "bar")) =?> "foo**bar**" , test asciidoc "strong word after" $ para (strong (text "foo") <> text "bar") =?> "**foo**bar" , test asciidoc "strong quoted" $ para (singleQuoted (strong (text "foo"))) =?> "`**foo**'" ] , testGroup "tables" [ test asciidoc "empty cells" $ simpleTable [] [[mempty],[mempty]] =?> unlines [ "[cols=\"\",]" , "|====" , "|" , "|" , "|====" ] , test asciidoc "multiblock cells" $ simpleTable [] [[para (text "Para 1") <> para (text "Para 2")]] =?> unlines [ "[cols=\"\",]" , "|=====" , "a|" , "Para 1" , "" , "Para 2" , "" , "|=====" ] ] ] pandoc-1.16.0.2~dfsg/tests/Tests/Writers/ConTeXt.hs0000644000000000000000000000372412645626061020544 0ustar rootroot{-# LANGUAGE OverloadedStrings #-} module Tests.Writers.ConTeXt (tests) where import Test.Framework import Text.Pandoc.Builder import Text.Pandoc import Tests.Helpers import Tests.Arbitrary() context :: (ToString a, ToPandoc a) => a -> String context = writeConTeXt def . toPandoc context' :: (ToString a, ToPandoc a) => a -> String context' = writeConTeXt def{ writerWrapText = WrapNone } . toPandoc {- "my test" =: X =?> Y is shorthand for test context "my test" $ X =?> Y which is in turn shorthand for test context "my test" (X,Y) -} infix 4 =: (=:) :: (ToString a, ToPandoc a) => String -> (a, String) -> Test (=:) = test context tests :: [Test] tests = [ testGroup "inline code" [ "with '}'" =: code "}" =?> "\\mono{\\}}" , "without '}'" =: code "]" =?> "\\type{]}" , property "code property" $ \s -> null s || if '{' `elem` s || '}' `elem` s then (context' $ code s) == "\\mono{" ++ (context' $ str s) ++ "}" else (context' $ code s) == "\\type{" ++ s ++ "}" ] , testGroup "headers" [ "level 1" =: headerWith ("my-header",[],[]) 1 "My header" =?> "\\section[my-header]{My header}" ] , testGroup "bullet lists" [ "nested" =: bulletList [ plain (text "top") <> bulletList [ plain (text "next") <> bulletList [plain (text "bot")] ] ] =?> unlines [ "\\startitemize[packed]" , "\\item" , " top" , " \\startitemize[packed]" , " \\item" , " next" , " \\startitemize[packed]" , " \\item" , " bot" , " \\stopitemize" , " \\stopitemize" , "\\stopitemize" ] ] ] pandoc-1.16.0.2~dfsg/tests/lhs-test.latex+lhs0000644000000000000000000000424712645626061017510 0ustar rootroot\documentclass[]{article} \usepackage{lmodern} \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} \fi % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} \usepackage{hyperref} \hypersetup{unicode=true, pdfborder={0 0 0}, breaklinks=true} \urlstyle{same} % don't use monospace font for urls \usepackage{listings} \lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{} \IfFileExists{parskip.sty}{% \usepackage{parskip} }{% else \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} } \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} \setcounter{secnumdepth}{0} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} \fi \date{} \begin{document} \section{lhs test}\label{lhs-test} \texttt{unsplit} is an arrow that takes a pair of values and combines them to return a single value: \begin{code} unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d unsplit = arr . uncurry -- arr (\op (x,y) -> x `op` y) \end{code} \texttt{(***)} combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). \begin{verbatim} f *** g = first f >>> second g \end{verbatim} Block quote: \begin{quote} foo bar \end{quote} \end{document} pandoc-1.16.0.2~dfsg/tests/writer.icml0000644000000000000000000044446112645626061016314 0ustar rootroot $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle Courier New $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle $ID/NormalCharacterStyle LeftAlign . 10 $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle Courier New $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle LeftAlign . 10 $ID/NormalParagraphStyle LeftAlign . 30 $ID/NormalParagraphStyle LeftAlign . 20 $ID/NormalParagraphStyle LeftAlign . 20 $ID/NormalParagraphStyle LeftAlign . 20 $ID/NormalParagraphStyle LeftAlign . 10 $ID/NormalParagraphStyle LeftAlign . 10 $ID/NormalParagraphStyle LeftAlign . 10 $ID/NormalParagraphStyle $ID/NormalParagraphStyle Courier New $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle Courier New $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle Courier New $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle LeftAlign . 20 $ID/NormalParagraphStyle LeftAlign . 20 $ID/NormalParagraphStyle a, b, c, d... $ID/NormalParagraphStyle $ID/NormalParagraphStyle A, B, C, D... $ID/NormalParagraphStyle A, B, C, D... $ID/NormalParagraphStyle i, ii, iii, iv... $ID/NormalParagraphStyle $ID/NormalParagraphStyle i, ii, iii, iv... $ID/NormalParagraphStyle I, II, III, IV... $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle $ID/NormalParagraphStyle A, B, C, D... $ID/NormalParagraphStyle $ID/NormalParagraphStyle This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite.
Headers
Level 2 with an
Level 3 with emphasis
Level 4
Level 5
Level 1
Level 2 with emphasis
Level 3
with no blank line
Level 2
with no blank line
Paragraphs
Here’s a regular paragraph.
In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.
Here’s one with a bullet. * criminey.
There should be a hard line break here.
Block Quotes
E-mail style:
This is a block quote. It is pretty short.
Code in a block quote:
sub status { print "working"; }
A list:
item one
item two
Nested block quotes:
nested
nested
This should not be a block quote: 2 > 1.
And a following paragraph.
Code Blocks
Code:
---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab
And:
this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{
Lists
Unordered
Asterisks tight:
asterisk 1
asterisk 2
asterisk 3
Asterisks loose:
asterisk 1
asterisk 2
asterisk 3
Pluses tight:
Plus 1
Plus 2
Plus 3
Pluses loose:
Plus 1
Plus 2
Plus 3
Minuses tight:
Minus 1
Minus 2
Minus 3
Minuses loose:
Minus 1
Minus 2
Minus 3
Ordered
Tight:
First
Second
Third
and:
One
Two
Three
Loose using tabs:
First
Second
Third
and using spaces:
One
Two
Three
Multiple paragraphs:
Item 1, graf one.
Item 1. graf two. The quick brown fox jumped over the lazy dog’s back.
Item 2.
Item 3.
Nested
Tab
Tab
Tab
Here’s another:
First
Second:
Fee
Fie
Foe
Third
Same thing but with paragraphs:
First
Second:
Fee
Fie
Foe
Third
Tabs and spaces
this is a list item indented with tabs
this is a list item indented with spaces
this is an example list item indented with tabs
this is an example list item indented with spaces
Fancy list markers
begins with 2
and now 3
with a continuation
sublist with roman numerals, starting with 4
more items
a subsublist
a subsublist
Nesting:
Upper Alpha
Upper Roman.
Decimal start with 6
Lower alpha with paren
Autonumbering:
Autonumber.
More.
Nested.
Should not be a list item:
M.A. 2007
B. Williams
Definition Lists
Tight using spaces:
apple
red fruit
orange
orange fruit
banana
yellow fruit
Tight using tabs:
apple
red fruit
orange
orange fruit
banana
yellow fruit
Loose:
apple
red fruit
orange
orange fruit
banana
yellow fruit
Multiple blocks with italics:
apple
red fruit
contains seeds, crisp, pleasant to taste
orange
orange fruit
{ orange code block }
orange block quote
Multiple definitions, tight:
apple
red fruit
computer
orange
orange fruit
bank
Multiple definitions, loose:
apple
red fruit
computer
orange
orange fruit
bank
Blank line after term, indented marker, alternate markers:
apple
red fruit
computer
orange
orange fruit
sublist
sublist
HTML Blocks
Simple block on one line:
foo
And nested without indentation:
foo
bar
Interpreted markdown in a table:
This is emphasized
And this is strong
Here’s a simple block:
foo
This should be a code block, though:
<div> foo </div>
As should this:
<div>foo</div>
Now, nested:
foo
This should just be an HTML comment:
Multiline:
Code block:
<!-- Comment -->
Just plain comment, with trailing spaces on the line:
Code:
<hr />
Hr’s:
Inline Markup
This is emphasized , and so is this .
This is strong , and so is this .
An .
This is strong and em.
So is this word.
This is strong and em.
So is this word.
This is code: > , $ , \ , \$ , <html> .
This is strikeout .
Superscripts: a bc d a hello a hello there .
Subscripts: H 2 O, H 23 O, H many of them O.
These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d.
Smart quotes, ellipses, dashes
Hello, said the spider. Shelob is my name.
A , B , and C are letters.
Oak, elm, and beech are names of trees. So is pine.
He said, I want to go. Were you alive in the 70’s?
Here is some quoted code and a .
Some dashes: one—two — three—four — five.
Dashes between numbers: 5–7, 255–66, 1987–1999.
Ellipses…and…and….
LaTeX

2 + 2 = 4
x y
α ω
223
p -Tree
Here’s some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$
Here’s one that has a line break in it: α + ω × x 2 .
These shouldn’t be math:
To get the famous equation, write $e = mc^2$ .
$22,000 is a lot of money. So is $34,000. (It worked if lot is emphasized.)
Shoes ($20) and socks ($5).
Escaped $ : $73 this should be emphasized 23$.
Here’s a LaTeX table:
Special Characters
Here is some unicode:
I hat: Î
o umlaut: ö
section: §
set membership: ∈
copyright: ©
AT&T has an ampersand in their name.
AT&T is another way to write it.
This & that.
4 < 5.
6 > 5.
Backslash: \
Backtick: `
Asterisk: *
Underscore: _
Left brace: {
Right brace: }
Left bracket: [
Right bracket: ]
Left paren: (
Right paren: )
Greater-than: >
Hash: #
Period: .
Bang: !
Plus: +
Minus: -
Links
Explicit
Just a .
.
.
.




.
Reference
Foo .
Foo .
Foo .
With .
by itself should be a link.
Indented .
Indented .
Indented .
This should [not][] be a link.
[not]: /url
Foo .
Foo .
With ampersands
Here’s a .
Here’s a link with an amersand in the link text: .
Here’s an .
Here’s an .
Autolinks
With an ampersand:
In a list?

It should.
An e-mail address:
Blockquoted:
Auto-links should not occur here: <http://example.com/>
or here: <http://example.com/>
Images
From Voyage dans la Lune by Georges Melies (1902):
$ID/Embedded
lalune
Here is a movie $ID/Embedded icon.
Footnotes
Here is a footnote reference, Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. and another. Here’s the long note. This one contains multiple blocks.
Subsequent blocks are indented to show that they belong to the footnote (as with list items).
{ <code> }
If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.
This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note. This is easier to type. Inline notes may contain and ] verbatim characters, as well as [bracketed text].

Notes can go in quotes. In quote.
And in list items. In list.
This paragraph should not be part of the note, as it is not indented.
Black HyperlinkURLDestination/http%3a//google.com Black HyperlinkURLDestination/http%3a//example.com/ Black HyperlinkURLDestination/mailto%3anobody@nowhere.net Black HyperlinkURLDestination/http%3a//example.com/ Black HyperlinkURLDestination/http%3a//example.com/?foo=1&bar=2 Black HyperlinkURLDestination//script?foo=1&bar=2 Black HyperlinkURLDestination//script?foo=1&bar=2 Black HyperlinkURLDestination/http%3a//att.com/ Black HyperlinkURLDestination/http%3a//example.com/?foo=1&bar=2 Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url Black HyperlinkURLDestination//url Black HyperlinkURLDestination//url Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination/ Black HyperlinkURLDestination/mailto%3anobody@nowhere.net Black HyperlinkURLDestination//url/with_underscore Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination//url/ Black HyperlinkURLDestination/http%3a//example.com/?foo=1&bar=2 Black HyperlinkURLDestination//url Black HyperlinkURLDestination//url
pandoc-1.16.0.2~dfsg/tests/docbook-reader.docbook0000644000000000000000000010067012645626061020343 0ustar rootroot
Pandoc Test Suite John MacFarlane Anonymous July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. Headers Level 2 with an <ulink url="/url">embedded link</ulink> Level 3 with <emphasis>emphasis</emphasis> Level 4 Level 5 Hi. Level 1 Level 2 with <emphasis>emphasis</emphasis> Level 3 with no blank line Level 2 with no blank line Paragraphs Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. Block Quotes E-mail style:
This is a block quote. It is pretty short.
Code in a block quote: sub status { print "working"; } % ls A list: item one item two Nested block quotes:
nested
nested
This should not be a block quote: 2 > 1. And a following paragraph.
Code Blocks Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ Lists Unordered Asterisks loose: asterisk 1 asterisk 2 asterisk 3 Pluses loose: Plus 1 Plus 2 Plus 3 Minuses loose: Minus 1 Minus 2 Minus 3 Ordered First Second Third and using spaces: One Two Three Multiple paragraphs: Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. Item 2. Item 3. Nested Tab Tab Tab Here’s another: First Second: Fee Fie Foe Third Same thing but with paragraphs: First Second: Fee Fie Foe Third Tabs and spaces this is a list item indented with tabs this is a list item indented with spaces this is an example list item indented with tabs this is an example list item indented with spaces Fancy list markers begins with 2 and now 3 with a continuation sublist with roman numerals, starting with 4 more items a subsublist a subsublist Nesting: Upper Alpha Upper Roman. Decimal start with 6 Lower alpha with paren Autonumbering: Autonumber. More. Nested. Should not be a list item: M.A. 2007 B. Williams Callout Simple. A __letrec is equivalent to a normal Haskell &let;. &GHC; compiled the body of our list comprehension into a loop named go_s1YC. If our &case; expression matches the empty list, we return the empty list. This is reassuringly familiar. Definition Lists apple red fruit orange orange fruit banana yellow fruit Multiple blocks with italics: apple red fruit contains seeds, crisp, pleasant to taste orange orange fruit { orange code block }
orange block quote
Multiple definitions, loose: apple red fruit computer orange orange fruit bank Blank line after term, indented marker, alternate markers: apple red fruit computer orange orange fruit sublist sublist
Inline Markup This is emphasized, and so is this. This is strong, and so is this. An emphasized link. This is strong and em. So is this word. This is strong and em. So is this word. This is code: >, $, \, \$, <html>. More code: Class and Type This is strikeout. Superscripts: abcd ahello ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. Smart quotes, ellipses, dashes Hello, said the spider. Shelob is my name. A, B, and C are letters. He said, I want to go. Were you alive in the 70’s? Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. e = m c 2 1 e = m c 2 e = m c 2 Special Characters Here is some unicode: I hat: Î o umlaut: ö section: § set membership: ∈ copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - Links Explicit Just a URL. URL and title. URL and title. URL and title. URL and title URL and title with_underscore nobody@nowhere.net Empty. Reference Foo bar. Foo bar. Foo bar. With embedded [brackets]. b by itself should be a link. Indented once. Indented twice. Indented thrice. This should [not][] be a link. [not]: /url Foo bar. Foo biz. With ampersands Here’s a link with an ampersand in the URL. Here’s a link with an amersand in the link text: AT&T. Here’s an inline link. Here’s an inline link in pointy braces. Autolinks With an ampersand: http://example.com/?foo=1&bar=2 In a list? http://example.com/ It should. An e-mail address: nobody@nowhere.net
Blockquoted: http://example.com/
Auto-links should not occur here: <http://example.com/> or here: <http://example.com/>
Images From Voyage dans la Lune by Georges Melies (1902):
lalune fig caption lalune alt text shadowed by fig caption
Here is a movie icon. And here a second movie alt text icon. And here a third movie alt text icon. lalune no figure alt text
Footnotes Here is a footnote reference, Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. and another. Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { <code> } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note. This is easier to type. Inline notes may contain links and ] verbatim characters, as well as [bracketed text].
Notes can go in quotes. In quote.
And in list items. In list. This paragraph should not be part of the note, as it is not indented.
Tables Simple table with caption: Demonstration of simple table syntax. Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
Simple table without caption: Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Demonstration of simple table syntax. Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
Multiline table with caption: Here's the caption. It may span multiple lines. Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.
Multiline table without caption: Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. Table without column headers: 12 12 12 12 123 123 123 123 1 1 1 1 Multiline table without column headers: First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.
pandoc-1.16.0.2~dfsg/tests/writer.plain0000644000000000000000000002130012645626061016452 0ustar rootrootPandoc Test Suite John MacFarlane; Anonymous July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. ------------------------------------------------------------------------------ HEADERS Level 2 with an embedded link Level 3 with _emphasis_ Level 4 Level 5 LEVEL 1 Level 2 with _emphasis_ Level 3 with no blank line Level 2 with no blank line ------------------------------------------------------------------------------ PARAGRAPHS Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break here. ------------------------------------------------------------------------------ BLOCK QUOTES E-mail style: This is a block quote. It is pretty short. Code in a block quote: sub status { print "working"; } A list: 1. item one 2. item two Nested block quotes: nested nested This should not be a block quote: 2 > 1. And a following paragraph. ------------------------------------------------------------------------------ CODE BLOCKS Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ ------------------------------------------------------------------------------ LISTS Unordered Asterisks tight: - asterisk 1 - asterisk 2 - asterisk 3 Asterisks loose: - asterisk 1 - asterisk 2 - asterisk 3 Pluses tight: - Plus 1 - Plus 2 - Plus 3 Pluses loose: - Plus 1 - Plus 2 - Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 Ordered Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. 2. Item 2. 3. Item 3. Nested - Tab - Tab - Tab Here’s another: 1. First 2. Second: - Fee - Fie - Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: - Fee - Fie - Foe 3. Third Tabs and spaces - this is a list item indented with tabs - this is a list item indented with spaces - this is an example list item indented with tabs - this is an example list item indented with spaces Fancy list markers (2) begins with 2 (3) and now 3 with a continuation iv. sublist with roman numerals, starting with 4 v. more items (A) a subsublist (B) a subsublist Nesting: A. Upper Alpha I. Upper Roman. (6) Decimal start with 6 c) Lower alpha with paren Autonumbering: 1. Autonumber. 2. More. 1. Nested. Should not be a list item: M.A. 2007 B. Williams ------------------------------------------------------------------------------ DEFINITION LISTS Tight using spaces: apple red fruit orange orange fruit banana yellow fruit Tight using tabs: apple red fruit orange orange fruit banana yellow fruit Loose: apple red fruit orange orange fruit banana yellow fruit Multiple blocks with italics: _apple_ red fruit contains seeds, crisp, pleasant to taste _orange_ orange fruit { orange code block } orange block quote Multiple definitions, tight: apple red fruit computer orange orange fruit bank Multiple definitions, loose: apple red fruit computer orange orange fruit bank Blank line after term, indented marker, alternate markers: apple red fruit computer orange orange fruit 1. sublist 2. sublist HTML BLOCKS Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is _emphasized_ And this is STRONG Here’s a simple block: foo This should be a code block, though:
foo
As should this:
foo
Now, nested: foo This should just be an HTML comment: Multiline: Code block: Just plain comment, with trailing spaces on the line: Code:
Hr’s: ------------------------------------------------------------------------------ INLINE MARKUP This is _emphasized_, and so _is this_. This is STRONG, and so IS THIS. An _emphasized link_. _THIS IS STRONG AND EM._ So is _THIS_ word. _THIS IS STRONG AND EM._ So is _THIS_ word. This is code: >, $, \, \$, . ~~This is _strikeout_.~~ Superscripts: abcd a_hello_ ahello there. Subscripts: H₂O, H₂₃O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ------------------------------------------------------------------------------ SMART QUOTES, ELLIPSES, DASHES “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘code’ and a “quoted link”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ------------------------------------------------------------------------------ LATEX - - 2 + 2 = 4 - x ∈ y - α ∧ ω - 223 - p-Tree - Here’s some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ - Here’s one that has a line break in it: α + ω × x². These shouldn’t be math: - To get the famous equation, write $e = mc^2$. - $22,000 is a _lot_ of money. So is $34,000. (It worked if “lot” is emphasized.) - Shoes ($20) and socks ($5). - Escaped $: $73 _this should be emphasized_ 23$. Here’s a LaTeX table: ------------------------------------------------------------------------------ SPECIAL CHARACTERS Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - ------------------------------------------------------------------------------ LINKS Explicit Just a URL. URL and title. URL and title. URL and title. URL and title URL and title with_underscore Email link Empty. Reference Foo bar. Foo bar. Foo bar. With embedded [brackets]. b by itself should be a link. Indented once. Indented twice. Indented thrice. This should [not][] be a link. [not]: /url Foo bar. Foo biz. With ampersands Here’s a link with an ampersand in the URL. Here’s a link with an amersand in the link text: AT&T. Here’s an inline link. Here’s an inline link in pointy braces. Autolinks With an ampersand: http://example.com/?foo=1&bar=2 - In a list? - http://example.com/ - It should. An e-mail address: nobody@nowhere.net Blockquoted: http://example.com/ Auto-links should not occur here: or here: ------------------------------------------------------------------------------ IMAGES From “Voyage dans la Lune” by Georges Melies (1902): [lalune] Here is a movie [movie] icon. ------------------------------------------------------------------------------ FOOTNOTES Here is a footnote reference,[1] and another.[2] This should _not_ be a footnote reference, because it contains a space.[^my note] Here is an inline note.[3] Notes can go in quotes.[4] 1. And in list items.[5] This paragraph should not be part of the note, as it is not indented. [1] Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. [2] Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. [3] This is _easier_ to type. Inline notes may contain links and ] verbatim characters, as well as [bracketed text]. [4] In quote. [5] In list. pandoc-1.16.0.2~dfsg/tests/tables.dokuwiki0000644000000000000000000000323412645626061017141 0ustar rootrootSimple table with caption: Demonstration of simple table syntax. ^ Right^Left ^ Center ^Default^ | 12|12 | 12 |12 | | 123|123 | 123 |123 | | 1|1 | 1 |1 | Simple table without caption: ^ Right^Left ^ Center ^Default^ | 12|12 | 12 |12 | | 123|123 | 123 |123 | | 1|1 | 1 |1 | Simple table indented two spaces: Demonstration of simple table syntax. ^ Right^Left ^ Center ^Default^ | 12|12 | 12 |12 | | 123|123 | 123 |123 | | 1|1 | 1 |1 | Multiline table with caption: Here's the caption. It may span multiple lines. ^ Centered Header ^Left Aligned ^ Right Aligned^Default aligned ^ | First |row | 12.0|Example of a row that spans multiple lines. | | Second |row | 5.0|Here's another one. Note the blank line between rows. | Multiline table without caption: ^ Centered Header ^Left Aligned ^ Right Aligned^Default aligned ^ | First |row | 12.0|Example of a row that spans multiple lines. | | Second |row | 5.0|Here's another one. Note the blank line between rows. | Table without column headers: | 12|12 | 12 | 12| | 123|123 | 123 | 123| | 1|1 | 1 | 1| Multiline table without column headers: | First |row | 12.0|Example of a row that spans multiple lines. | | Second |row | 5.0|Here's another one. Note the blank line between rows.| pandoc-1.16.0.2~dfsg/tests/writer.opendocument0000644000000000000000000035307312645626061020066 0ustar rootroot Pandoc Test Suite John MacFarlane Anonymous July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. Headers Level 2 with an embedded link Level 3 with emphasis Level 4 Level 5 Level 1 Level 2 with emphasis Level 3 with no blank line Level 2 with no blank line Paragraphs Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line breakhere. Block Quotes E-mail style: This is a block quote. It is pretty short. Code in a block quote: sub status { print "working"; } A list: item one item two Nested block quotes: nested nested This should not be a block quote: 2 > 1. And a following paragraph. Code Blocks Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ Lists Unordered Asterisks tight: asterisk 1 asterisk 2 asterisk 3 Asterisks loose: asterisk 1 asterisk 2 asterisk 3 Pluses tight: Plus 1 Plus 2 Plus 3 Pluses loose: Plus 1 Plus 2 Plus 3 Minuses tight: Minus 1 Minus 2 Minus 3 Minuses loose: Minus 1 Minus 2 Minus 3 Ordered Tight: First Second Third and: One Two Three Loose using tabs: First Second Third and using spaces: One Two Three Multiple paragraphs: Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. Item 2. Item 3. Nested Tab Tab Tab Here’s another: First Second: Fee Fie Foe Third Same thing but with paragraphs: First Second: Fee Fie Foe Third Tabs and spaces this is a list item indented with tabs this is a list item indented with spaces this is an example list item indented with tabs this is an example list item indented with spaces Fancy list markers begins with 2 and now 3 with a continuation sublist with roman numerals, starting with 4 more items a subsublist a subsublist Nesting: Upper Alpha Upper Roman. Decimal start with 6 Lower alpha with paren Autonumbering: Autonumber. More. Nested. Should not be a list item: M.A. 2007 B. Williams Definition Lists Tight using spaces: apple red fruit orange orange fruit banana yellow fruit Tight using tabs: apple red fruit orange orange fruit banana yellow fruit Loose: apple red fruit orange orange fruit banana yellow fruit Multiple blocks with italics: apple red fruitcontains seeds, crisp, pleasant to taste orange orange fruit{ orange code block }orange block quote Multiple definitions, tight: apple red fruit computer orange orange fruit bank Multiple definitions, loose: apple red fruit computer orange orange fruit bank Blank line after term, indented marker, alternate markers: apple red fruit computer orange orange fruit sublist sublist HTML Blocks Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is emphasized And this is strong Here’s a simple block: foo This should be a code block, though: <div> foo </div> As should this: <div>foo</div> Now, nested: foo This should just be an HTML comment: Multiline: Code block: <!-- Comment --> Just plain comment, with trailing spaces on the line: Code: <hr /> Hr’s: Inline Markup This is emphasized, and so is this. This is strong, and so is this. An emphasized link. This is strong and em. So is this word. This is strong and em. So is this word. This is code: >, $, \, \$, <html>. This is strikeout. Superscripts: abcd ahello ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. Smart quotes, ellipses, dashes “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘code’ and a “quoted link”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. LaTeX 2 + 2 = 4 x ∈ y α ∧ ω 223 p-Tree Here’s some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ Here’s one that has a line break in it: α + ω × x2. These shouldn’t be math: To get the famous equation, write $e = mc^2$. $22,000 is a lot of money. So is $34,000. (It worked if “lot” is emphasized.) Shoes ($20) and socks ($5). Escaped $: $73 this should be emphasized 23$. Here’s a LaTeX table: Special Characters Here is some unicode: I hat: Î o umlaut: ö section: § set membership: ∈ copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - Links Explicit Just a URL. URL and title. URL and title. URL and title. URL and title URL and title with_underscore Email link Empty. Reference Foo bar. Foo bar. Foo bar. With embedded [brackets]. b by itself should be a link. Indented once. Indented twice. Indented thrice. This should [not][] be a link. [not]: /url Foo bar. Foo biz. With ampersands Here’s a link with an ampersand in the URL. Here’s a link with an amersand in the link text: AT&T. Here’s an inline link. Here’s an inline link in pointy braces. Autolinks With an ampersand: http://example.com/?foo=1&bar=2 In a list? http://example.com/ It should. An e-mail address: nobody@nowhere.net Blockquoted: http://example.com/ Auto-links should not occur here: <http://example.com/> or here: <http://example.com/> Images From “Voyage dans la Lune” by Georges Melies (1902): lalune Here is a movie icon. Footnotes Here is a footnote reference,1Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. and another.2Here’s the long note. This one contains multiple blocks.Subsequent blocks are indented to show that they belong to the footnote (as with list items).{ <code> }If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note.3This is easier to type. Inline notes may contain links and ] verbatim characters, as well as [bracketed text]. Notes can go in quotes.4In quote. And in list items.5In list. This paragraph should not be part of the note, as it is not indented. pandoc-1.16.0.2~dfsg/tests/html-reader.native0000644000000000000000000006247012645626061017542 0ustar rootrootPandoc (Meta {unMeta = fromList [("generator",MetaInlines [Str "pandoc"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",Space,Str "John",Space,Str "Gruber's",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,HorizontalRule ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embedded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embedded",Space,Str "link"] ("/url","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 4 ("level-4",[],[]) [Str "Level",Space,Str "4"] ,Header 5 ("level-5",[],[]) [Str "Level",Space,Str "5"] ,Header 1 ("level-1",[],[]) [Str "Level",Space,Str "1"] ,Header 2 ("level-2-with-emphasis",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 3 ("level-3",[],[]) [Str "Level",Space,Str "3"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 2 ("level-2",[],[]) [Str "Level",Space,Str "2"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,HorizontalRule ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here's",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",Space,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",Space,Str "list",Space,Str "item.",Space,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",Space,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",Space,Str "looked",Space,Str "like",Space,Str "a",Space,Str "list",Space,Str "item."] ,Para [Str "Here's",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",Space,Str "*",Space,Str "criminey."] ,Para [Str "There",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "hard",Space,Str "line",Space,Str "break",LineBreak,Str "here."] ,HorizontalRule ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "E-mail",Space,Str "style:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",Space,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,BlockQuote [Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,Para [Str "A",Space,Str "list:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "item",Space,Str "one"]] ,[Plain [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"]] ,BlockQuote [Para [Str "nested"]]] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "block",Space,Str "quote:",Space,Str "2",Space,Str ">",Space,Str "1."] ,Para [Str "Box-style:"] ,BlockQuote [Para [Str "Example:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}"] ,BlockQuote [OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "do",Space,Str "laundry"]] ,[Plain [Str "take",Space,Str "out",Space,Str "the",Space,Str "trash"]]]] ,Para [Str "Here's",Space,Str "a",Space,Str "nested",Space,Str "one:"] ,BlockQuote [Para [Str "Joe",Space,Str "said:"] ,BlockQuote [Para [Str "Don't",Space,Str "quote",Space,Str "me."]]] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,HorizontalRule ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}\n\nthis code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,HorizontalRule ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "tight:"] ,BulletList [[Plain [Str "Plus",Space,Str "1"]] ,[Plain [Str "Plus",Space,Str "2"]] ,[Plain [Str "Plus",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "tight:"] ,BulletList [[Plain [Str "Minus",Space,Str "1"]] ,[Plain [Str "Minus",Space,Str "2"]] ,[Plain [Str "Minus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Para [Str "and:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "One"]] ,[Plain [Str "Two"]] ,[Plain [Str "Three"]]] ,Para [Str "Loose",Space,Str "using",Space,Str "tabs:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog's",Space,Str "back."]] ,[Para [Str "Item",Space,Str "2."]] ,[Para [Str "Item",Space,Str "3."]]] ,Para [Str "List",Space,Str "styles:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [] ,OrderedList (1,LowerRoman,DefaultDelim) [] ,OrderedList (1,LowerRoman,DefaultDelim) [] ,OrderedList (1,DefaultStyle,DefaultDelim) [] ,OrderedList (1,LowerRoman,DefaultDelim) [] ,OrderedList (1,LowerRoman,DefaultDelim) [] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"]]]]]]] ,Para [Str "Here's",Space,Str "another:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "First"]] ,[Plain [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Plain [Str "Third"]]] ,Para [Str "Same",Space,Str "thing",Space,Str "but",Space,Str "with",Space,Str "paragraphs:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Header 2 ("tabs-and-spaces",[],[]) [Str "Tabs",Space,Str "and",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"]]]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,DefaultDelim) [[Plain [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,DefaultDelim) [[Plain [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",Space,Str "starting",Space,Str "with",Space,Str "4"]] ,[Plain [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,DefaultDelim) [[Plain [Str "a",Space,Str "subsublist"]] ,[Plain [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,DefaultDelim) [[Plain [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,DefaultDelim) [[Plain [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,DefaultDelim) [[Plain [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,DefaultDelim) [[Plain [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Autonumber."]] ,[Plain [Str "More."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Nested."]]]]] ,HorizontalRule ,Header 2 ("definition",[],[]) [Str "Definition"] ,DefinitionList [([Str "Violin"], [[Plain [Str "Stringed",Space,Str "musical",Space,Str "instrument."]] ,[Plain [Str "Torture",Space,Str "device."]]]) ,([Str "Cello",LineBreak,Str "Violoncello"], [[Plain [Str "Low-voiced",Space,Str "stringed",Space,Str "instrument."]]])] ,HorizontalRule ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",Space,Str "this"],Str "."] ,Para [Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",Space,Strong [Str "is",Space,Str "this"],Str "."] ,Para [Str "Empty",Space,Strong [],Space,Str "and",Space,Emph [],Str "."] ,Para [Str "An",Space,Emph [Link ("",[],[]) [Str "emphasized",Space,Str "link"] ("/url","")],Str "."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",Space,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",Space,Code ("",[],[]) "",Str "."] ,Para [Str "This",Space,Str "is",Space,SmallCaps [Str "small",Space,Str "caps"],Str "."] ,HorizontalRule ,Header 1 ("smart-quotes-ellipses-dashes",[],[]) [Str "Smart",Space,Str "quotes,",Space,Str "ellipses,",Space,Str "dashes"] ,Para [Str "\"Hello,\"",Space,Str "said",Space,Str "the",Space,Str "spider.",Space,Str "\"'Shelob'",Space,Str "is",Space,Str "my",Space,Str "name.\""] ,Para [Str "'A',",Space,Str "'B',",Space,Str "and",Space,Str "'C'",Space,Str "are",Space,Str "letters."] ,Para [Str "'Oak,'",Space,Str "'elm,'",Space,Str "and",Space,Str "'beech'",Space,Str "are",Space,Str "names",Space,Str "of",Space,Str "trees.",Space,Str "So",Space,Str "is",Space,Str "'pine.'"] ,Para [Str "'He",Space,Str "said,",Space,Str "\"I",Space,Str "want",Space,Str "to",Space,Str "go.\"'",Space,Str "Were",Space,Str "you",Space,Str "alive",Space,Str "in",Space,Str "the",Space,Str "70's?"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "quoted",Space,Str "'",Code ("",[],[]) "code",Str "'",Space,Str "and",Space,Str "a",Space,Str "\"",Link ("",[],[]) [Str "quoted",Space,Str "link"] ("http://example.com/?foo=1&bar=2",""),Str "\"."] ,Para [Str "Some",Space,Str "dashes:",Space,Str "one---two",Space,Str "---",Space,Str "three--four",Space,Str "--",Space,Str "five."] ,Para [Str "Dashes",Space,Str "between",Space,Str "numbers:",Space,Str "5-7,",Space,Str "255-66,",Space,Str "1987-1999."] ,Para [Str "Ellipses...and.",Space,Str ".",Space,Str ".and",Space,Str ".",Space,Str ".",Space,Str ".",Space,Str "."] ,HorizontalRule ,Header 1 ("latex",[],[]) [Str "LaTeX"] ,BulletList [[Plain [Str "\\cite[22-23]{smith.1899}"]] ,[Plain [Str "\\doublespacing"]] ,[Plain [Str "$2+2=4$"]] ,[Plain [Str "$x",Space,Str "\\in",Space,Str "y$"]] ,[Plain [Str "$\\alpha",Space,Str "\\wedge",Space,Str "\\omega$"]] ,[Plain [Str "$223$"]] ,[Plain [Str "$p$-Tree"]] ,[Plain [Str "$\\frac{d}{dx}f(x)=\\lim_{h\\to",Space,Str "0}\\frac{f(x+h)-f(x)}{h}$"]] ,[Plain [Str "Here's",Space,Str "one",Space,Str "that",Space,Str "has",Space,Str "a",Space,Str "line",Space,Str "break",Space,Str "in",Space,Str "it:",Space,Str "$\\alpha",Space,Str "+",Space,Str "\\omega",Space,Str "\\times",Space,Str "x^2$."]]] ,Para [Str "These",Space,Str "shouldn't",Space,Str "be",Space,Str "math:"] ,BulletList [[Plain [Str "To",Space,Str "get",Space,Str "the",Space,Str "famous",Space,Str "equation,",Space,Str "write",Space,Code ("",[],[]) "$e = mc^2$",Str "."]] ,[Plain [Str "$22,000",Space,Str "is",Space,Str "a",Space,Emph [Str "lot"],Space,Str "of",Space,Str "money.",Space,Str "So",Space,Str "is",Space,Str "$34,000.",Space,Str "(It",Space,Str "worked",Space,Str "if",Space,Str "\"lot\"",Space,Str "is",Space,Str "emphasized.)"]] ,[Plain [Str "Escaped",Space,Code ("",[],[]) "$",Str ":",Space,Str "$73",Space,Emph [Str "this",Space,Str "should",Space,Str "be",Space,Str "emphasized"],Space,Str "23$."]]] ,Para [Str "Here's",Space,Str "a",Space,Str "LaTeX",Space,Str "table:"] ,Para [Str "\\begin{tabular}{|l|l|}\\hline",Space,Str "Animal",Space,Str "&",Space,Str "Number",Space,Str "\\\\",Space,Str "\\hline",Space,Str "Dog",Space,Str "&",Space,Str "2",Space,Str "\\\\",Space,Str "Cat",Space,Str "&",Space,Str "1",Space,Str "\\\\",Space,Str "\\hline",Space,Str "\\end{tabular}"] ,HorizontalRule ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Plain [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Plain [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Plain [Str "section:",Space,Str "\167"]] ,[Plain [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Plain [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "AT&T",Space,Str "is",Space,Str "another",Space,Str "way",Space,Str "to",Space,Str "write",Space,Str "it."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "`"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,HorizontalRule ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by two spaces"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by a tab"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with \"quotes\" in it")] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with single quotes")] ,Para [Str "Email",Space,Str "link",Space,Str "(nobody",Space,Str "[at]",Space,Str "nowhere.net)"] ,Para [Link ("",[],[]) [Str "Empty"] ("",""),Str "."] ,Header 2 ("reference",[],[]) [Str "Reference"] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "With",Space,Link ("",[],[]) [Str "embedded",Space,Str "[brackets]"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "b"] ("/url/",""),Space,Str "by",Space,Str "itself",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "link."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "once"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "twice"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "thrice"] ("/url",""),Str "."] ,Para [Str "This",Space,Str "should",Space,Str "[not]",Space,Str "be",Space,Str "a",Space,Str "link."] ,CodeBlock ("",[],[]) "[not]: /url" ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/","Title with \"quotes\" inside"),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "biz"] ("/url/","Title with \"quote\" inside"),Str "."] ,Header 2 ("with-ampersands",[],[]) [Str "With",Space,Str "ampersands"] ,Para [Str "Here's",Space,Str "a",Space,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here's",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",Space,Link ("",[],[]) [Str "AT&T"] ("http://att.com/","AT&T"),Str "."] ,Para [Str "Here's",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link"] ("/script?foo=1&bar=2",""),Str "."] ,Para [Str "Here's",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link",Space,Str "in",Space,Str "pointy",Space,Str "braces"] ("/script?foo=1&bar=2",""),Str "."] ,Header 2 ("autolinks",[],[]) [Str "Autolinks"] ,Para [Str "With",Space,Str "an",Space,Str "ampersand:",Space,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2","")] ,BulletList [[Plain [Str "In",Space,Str "a",Space,Str "list?"]] ,[Plain [Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,[Plain [Str "It",Space,Str "should."]]] ,Para [Str "An",Space,Str "e-mail",Space,Str "address:",Space,Str "nobody",Space,Str "[at]",Space,Str "nowhere.net"] ,BlockQuote [Para [Str "Blockquoted:",Space,Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,Para [Str "Auto-links",Space,Str "should",Space,Str "not",Space,Str "occur",Space,Str "here:",Space,Code ("",[],[]) ""] ,CodeBlock ("",[],[]) "or here: " ,HorizontalRule ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Str "\"Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune\"",Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "lalune"] ("lalune.jpg","Voyage dans la Lune")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [Str "movie"] ("movie.jpg",""),Space,Str "icon."] ,HorizontalRule ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "footnote",Space,Str "reference",Link ("",[],[]) [Str "(1)"] ("#note_1",""),Str ",",Space,Str "and",Space,Str "another",Link ("",[],[]) [Str "(longnote)"] ("#note_longnote",""),Str ".",Space,Str "This",Space,Str "should",Space,Emph [Str "not"],Space,Str "be",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Space,Str "because",Space,Str "it",Space,Str "contains",Space,Str "a",Space,Str "space^(my",Space,Str "note)."] ,Para [Link ("",[],[]) [Str "(1)"] ("#ref_1",""),Space,Str "Here",Space,Str "is",Space,Str "the",Space,Str "footnote.",Space,Str "It",Space,Str "can",Space,Str "go",Space,Str "anywhere",Space,Str "in",Space,Str "the",Space,Str "document,",Space,Str "not",Space,Str "just",Space,Str "at",Space,Str "the",Space,Str "end."] ,Para [Link ("",[],[]) [Str "(longnote)"] ("#ref_longnote",""),Space,Str "Here's",Space,Str "the",Space,Str "other",Space,Str "note.",Space,Str "This",Space,Str "one",Space,Str "contains",Space,Str "multiple",Space,Str "blocks."] ,Para [Str "Caret",Space,Str "characters",Space,Str "are",Space,Str "used",Space,Str "to",Space,Str "indicate",Space,Str "that",Space,Str "the",Space,Str "blocks",Space,Str "all",Space,Str "belong",Space,Str "to",Space,Str "a",Space,Str "single",Space,Str "footnote",Space,Str "(as",Space,Str "with",Space,Str "block",Space,Str "quotes)."] ,CodeBlock ("",[],[]) " { }" ,Para [Str "If",Space,Str "you",Space,Str "want,",Space,Str "you",Space,Str "can",Space,Str "use",Space,Str "a",Space,Str "caret",Space,Str "at",Space,Str "the",Space,Str "beginning",Space,Str "of",Space,Str "every",Space,Str "line,",Space,Str "as",Space,Str "with",Space,Str "blockquotes,",Space,Str "but",Space,Str "all",Space,Str "that",Space,Str "you",Space,Str "need",Space,Str "is",Space,Str "a",Space,Str "caret",Space,Str "at",Space,Str "the",Space,Str "beginning",Space,Str "of",Space,Str "the",Space,Str "first",Space,Str "line",Space,Str "of",Space,Str "the",Space,Str "block",Space,Str "and",Space,Str "any",Space,Str "preceding",Space,Str "blank",Space,Str "lines."] ,Para [Str "text",Space,Emph [Str "Leading",Space,Str "space"]] ,Para [Emph [Str "Trailing",Space,Str "space"],Space,Str "text"] ,Para [Str "text",Space,Emph [Str "Leading",Space,Str "spaces"]] ,Para [Emph [Str "Trailing",Space,Str "spaces"],Space,Str "text"] ,Header 1 ("tables",[],[]) [Str "Tables"] ,Header 2 ("tables-with-headers",[],[]) [Str "Tables",Space,Str "with",Space,Str "Headers"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.3333333333333333,0.3333333333333333,0.3333333333333333] [[Plain [Str "X"]] ,[Plain [Str "Y"]] ,[Plain [Str "Z"]]] [[[Plain [Str "1"]] ,[Para [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,Header 2 ("tables-without-headers",[],[]) [Str "Tables",Space,Str "without",Space,Str "Headers"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,HorizontalRule ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]]]] ,Header 2 ("empty-tables",[],[]) [Str "Empty",Space,Str "Tables"] ,Para [Str "This",Space,Str "section",Space,Str "should",Space,Str "be",Space,Str "empty."]] pandoc-1.16.0.2~dfsg/tests/epub/0000755000000000000000000000000012645626062015051 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/epub/formatting.native0000644000000000000000000017403712645626062020447 0ustar rootroot[Para [Span ("front.xhtml",[],[]) []] ,Div ("",["section"],[]) [Header 1 ("",[],[]) [Str "EPUB",Space,Str "3",Space,Str "Styling",Space,Str "Test",Space,Str "Document:",Space,Str "0101"] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "Status",Space,Str "of",Space,Str "this",Space,Str "Document"] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "currently",Space,Str "considered",Space,Span ("",["status"],[]) [Str "[UNDER",Space,Str "DEVELOPMENT]"],Space,Str "by",Space,Str "the",Space,Str "IDPF."] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "part",Space,Str "of",Space,Str "version",Space,Span ("",["version"],[]) [Str "X.X"],Space,Str "of",Space,Str "the",Space,Str "EPUB",Space,Str "3.0",Space,Str "Compliance",Space,Str "Test",Space,Str "Suite",Space,Str "released",SoftBreak,Str "on",Space,RawInline (Format "html") "",Str "."] ,Para [Str "Before",Space,Str "using",Space,Str "this",Space,Str "publication",Space,Str "to",Space,Str "evaluate",Space,Str "reading",Space,Str "systems,",Space,Str "testers",Space,Str "are",Space,Str "strongly",Space,Str "encouraged",Space,Str "to",SoftBreak,Str "verify",Space,Str "that",Space,Str "they",Space,Str "have",Space,Str "the",Space,Str "latest",Space,Str "release",Space,Str "by",Space,Str "checking",Space,Str "the",Space,Str "current",Space,Str "release",Space,Str "version",Space,Str "and",Space,Str "date",Space,Str "of",SoftBreak,Str "the",Space,Str "test",Space,Str "suite",Space,Str "at",Space,Link ("",[],[]) [Str "TBD"] ("http://idpf.org/","")] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "one",Space,Str "of",Space,Str "several",Space,Str "that",Space,Str "currently",Space,Str "comprise",Space,Str "the",Space,Str "EPUB",Space,Str "3",Space,Str "conformance",Space,Str "test",Space,Str "suite",SoftBreak,Str "for",Space,Str "reflowable",Space,Str "content.",Space,Str "The",Space,Str "complete",Space,Str "test",Space,Str "suite",Space,Str "includes",Space,Str "all",Space,Str "of",Space,Str "the",Space,Str "following",Space,Str "publications:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "."]]]] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "About",Space,Str "this",Space,Str "Document"] ,Para [Str "This",Space,Str "document",Space,Str "focuses",Space,Str "on",Space,Str "human-evaluated",Space,Str "binary",Space,Str "(pass/fail)",Space,Str "tests",Space,Str "in",Space,Str "a",SoftBreak,Str "reflowable",Space,Str "context.",Space,Str "Tests",Space,Str "for",Space,Str "fixed-layout",Space,Str "content",Space,Str "and",Space,Str "other",Space,Str "individual",Space,Str "tests",Space,Str "that",SoftBreak,Str "require",Space,Str "a",Space,Str "dedicated",Space,Str "epub",Space,Str "file",Space,Str "are",Space,Str "available",Space,Str "in",Space,Str "additional",Space,Str "sibling",Space,Str "documents;",Space,Str "refer",Space,Str "to",SoftBreak,Str "the",Space,Link ("",[],[]) [Str "test",Space,Str "suite",SoftBreak,Str "wiki"] ("https://github.com/mgylling/epub-testsuite/wiki/Overview",""),Space,Str "(",Code ("",[],[]) "https://github.com/mgylling/epub-testsuite/wiki/Overview",Str ")",Space,Str "for",Space,Str "additional",SoftBreak,Str "information."]] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "Conventions"] ,Para [Str "The",Space,Str "following",Space,Str "conventions",Space,Str "are",Space,Str "used",Space,Str "throughout",Space,Str "the",Space,Str "document:"] ,DefinitionList [([Str "1.",Space,Str "Locating",Space,Str "a",Space,Str "test"], [[Div ("",["ctest"],[]) [Para [Str "Tests",Space,Str "for",Space,Emph [Str "required"],Space,Str "Reading",Space,Str "System",Space,Str "functionality",Space,Str "are",SoftBreak,Str "preceded",Space,Str "by",Space,Str "the",Space,Str "label:",Space,Span ("",["nature"],[("style","display: inline; font-size: 100%")]) [Str "[REQUIRED]"]]] ,Div ("",["otest"],[]) [Para [Str "Tests",Space,Str "for",Space,Emph [Str "optional"],Space,Str "Reading",Space,Str "System",Space,Str "functionality",Space,Str "are",SoftBreak,Str "preceded",Space,Str "by",Space,Str "the",Space,Str "label:",Space,Span ("",["nature"],[("style","display: inline; font-size: 100%")]) [Str "[OPTIONAL]"]]]]]) ,([Str "2.",Space,Str "Performing",Space,Str "the",Space,Str "test"], [[Plain [Str "Each",Space,Str "test",Space,Str "includes",Space,Str "a",Space,Str "description",Space,Str "of",Space,Str "its",Space,Str "purpose",Space,Str "followed",Space,Str "by",Space,Str "the",Space,Str "actual",Space,Strong [Str "test",Space,Str "statement,",SoftBreak,Str "which",Space,Str "can",Space,Str "always",Space,Str "be",Space,Str "evaluated",Space,Str "to",Space,Str "true",Space,Str "or",Space,Str "false"],Str ".",Space,Str "These",Space,Str "statements",Space,Str "typically",Space,Str "have",Space,Str "the",Space,Str "form:",SoftBreak,Str "\"If",Space,Str "[some",Space,Str "condition],",Space,Str "the",Space,Str "test",Space,Str "passes\"."]]]) ,([Str "3.",Space,Str "Scoring",Space,Str "in",Space,Str "the",Space,Str "results",Space,Str "form"], [[Plain [Str "@@@TODO",Space,Str "provide",Space,Str "info",Space,Str "on",Space,Str "where",Space,Str "to",Space,Str "get",Space,Str "the",Space,Str "results",Space,Str "form"]]])]]] ,Para [Span ("styling-xhtml-001.xhtml",[],[]) []] ,Div ("styling-xhtml-001.xhtml#epub-css",["section"],[]) [Header 1 ("",[],[]) [Str "EPUB",Space,Str "Style",Space,Str "Sheets"] ,Para [Str "This",Space,Str "section",Space,Str "contains",Space,Str "tests",Space,Str "for",Space,Str "styling",Space,Str "and",Space,Str "layout."]] ,Para [Span ("styling-xhtml-003.xhtml",[],[]) []] ,Div ("styling-xhtml-003.xhtml#style-110",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-110"],Space,Str "Multi-Column",Space,Str "Layouts"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "CSS Multi-Column Layout",Space,Str "properties",Space,Str "are",Space,Str "supported."] ,Div ("",["multicol"],[]) [Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "text",Space,Str "is",Space,Str "rendered",Space,Str "in",Space,Str "three",Space,Str "columns,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Para [Span ("styling-xhtml-002.xhtml",[],[]) []] ,Div ("styling-xhtml-002.xhtml#style-lists",["section"],[]) [Header 2 ("",[],[]) [Str "Lists"] ,Div ("styling-xhtml-002.xhtml#style-list-style-type",["section"],[]) [Header 3 ("",[],[]) [Str "The",Space,Code ("",[],[]) "list-style-type",Space,Str "property"] ,Div ("styling-xhtml-002.xhtml#style-009",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-009"],Space,Code ("",[],[]) "decimal"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "decimal",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "decimal",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-010",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-010"],Space,Code ("",[],[]) "circle"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "circle",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "circle",Space,Str "markers,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-011",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-011"],Space,Code ("",[],[]) "square"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "square",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "square",Space,Str "markers,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-012",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-012"],Space,Code ("",[],[]) "disc"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "disc",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "disc",Space,Str "markers,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-013",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-013"],Space,Code ("",[],[]) "lower-latin"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "lower-latin",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "lower-latin",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-014",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-014"],Space,Code ("",[],[]) "lower-roman"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "lower-roman",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "lower-roman",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-015",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-015"],Space,Code ("",[],[]) "upper-alpha"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "upper-alpha",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "upper-alpha",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-016",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-016"],Space,Code ("",[],[]) "hiragana"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "hiragana",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "hiragana",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-017",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-017"],Space,Code ("",[],[]) "hiragana-iroha"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "hiragana-iroha",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "hiragana-iroha",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-018",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-018"],Space,Code ("",[],[]) "katakana"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "katakana",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "katakana",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-019",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-019"],Space,Code ("",[],[]) "katakana-iroha"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "katakana-iroha",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "katakana-iroha",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-020",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-020"],Space,Code ("",[],[]) "upper-roman"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "upper-roman",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "upper-roman",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-021",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-021"],Space,Code ("",[],[]) "upper-latin"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "upper-latin",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "upper-latin",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-022",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-022"],Space,Code ("",[],[]) "lower-alpha"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "lower-alpha",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "lower-alpha",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-023",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-023"],Space,Code ("",[],[]) "lower-greek"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "lower-greek",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "lower-greek",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-024",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-024"],Space,Code ("",[],[]) "armenian"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "armenian",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "armenian",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-025",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-025"],Space,Code ("",[],[]) "cjk-ideographic"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "cjk-ideographic",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "cjk-ideographic",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-026",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-026"],Space,Code ("",[],[]) "decimal-leading-zero"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "decimal-leading-zero",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "decimal-leading-zero",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-027",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-027"],Space,Code ("",[],[]) "georgian"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "georgian",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "georgian",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-028",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-028"],Space,Code ("",[],[]) "hebrew"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "hebrew",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "hebrew",Space,Str "markers",Space,Str "in",Space,Str "ascending",Space,Str "order,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-029",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-029"],Space,Code ("",[],[]) "none"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-type",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "none",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "no",Space,Str "markers,",Space,Str "the",Space,Str "test",Space,Str "passes."]]] ,Div ("styling-xhtml-002.xhtml#style-list-style",["section"],[]) [Header 3 ("",[],[]) [Str "The",Space,Code ("",[],[]) "list-style",Space,Str "property"] ,Div ("styling-xhtml-002.xhtml#style-030",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-030"],Space,Str "images"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style",Space,Str "shorthand",Space,Str "property",Space,Str "is",Space,Str "supported",Space,Str "using",Space,Str "a",Space,Str "gif",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "the",Space,Str "purple",Space,Str "and",Space,Str "aqua",Space,Str "square",Space,Str "bullet",Space,Str "the",Space,Str "test",Space,Str "passes."]]] ,Div ("styling-xhtml-002.xhtml#style-list-style-position",["section"],[]) [Header 3 ("",[],[]) [Str "The",Space,Code ("",[],[]) "list-style-position",Space,Str "property"] ,Div ("styling-xhtml-002.xhtml#style-040",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-040"],Space,Str "The",Space,Code ("",[],[]) "list-style-position",Space,Str "property:",Space,Code ("",[],[]) "inside"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-position",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "inside",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]] ,[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]] ,[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "markers",Space,Str "inside",Space,Str "the",Space,Str "indentation,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-041",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-041"],Space,Str "The",Space,Code ("",[],[]) "list-style-position",Space,Str "property:",Space,Code ("",[],[]) "outside"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "list-style-position",Space,Str "property",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "outside",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ul",Space,Str "element."] ,BulletList [[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]] ,[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]] ,[Plain [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat."]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "has",Space,Str "the",Space,Str "default",Space,Str "setting",Space,Str "(marker",Space,Str "outside",Space,Str "the",Space,Str "indentation),",Space,Str "the",Space,Str "test",Space,Str "passes."]]] ,Div ("styling-xhtml-002.xhtml#style-list-start",["section"],[]) [Header 3 ("",[],[]) [Str "The",Space,Str "HTML",Space,Code ("",[],[]) "start",Space,Str "attribute"] ,Div ("styling-xhtml-002.xhtml#style-050",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-050"],Space,Str "Without",Space,Code ("",[],[]) "list-style-type",Space,Str "set"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "start",Space,Str "attribute",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element",Space,Str "with",Space,Str "no",Space,Code ("",[],[]) "list-style-type",Space,Str "property."] ,OrderedList (25,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "starts",Space,Str "at",Space,Str "25,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-002.xhtml#style-051",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-051"],Space,Str "With",Space,Code ("",[],[]) "list-style-type",Space,Str "set"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "start",Space,Str "attribute",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "a",Space,Code ("",[],[]) "ol",Space,Str "element",Space,Str "with",Space,Str "a",Space,Code ("",[],[]) "list-style-type",Space,Str "property."] ,OrderedList (50,DefaultStyle,DefaultDelim) [[Plain [Str "Lorem"]] ,[Plain [Str "Ipsum"]] ,[Plain [Str "Dolor"]] ,[Plain [Str "Sit"]] ,[Plain [Str "Amet"]]] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "list",Space,Str "starts",Space,Str "at",Space,Str "'L'",Space,Str "(50),",Space,Str "the",Space,Str "test",Space,Str "passes."]]]] ,Para [Span ("styling-xhtml-004.xhtml",[],[]) []] ,Div ("styling-xhtml-004.xhtml#style-media-rules",["section"],[]) [Header 2 ("",[],[]) [Code ("",[],[]) "@media",Space,Str "Rules"] ,Div ("styling-xhtml-004.xhtml#style-210",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-210"],Space,Code ("",[],[]) "all"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "all",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-211",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-211"],Space,Code ("",[],[]) "screen"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "screen",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-212",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-212"],Space,Code ("",[],[]) "handheld"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "handheld",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-213",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-213"],Space,Code ("",[],[]) "tv"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "tv",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-220",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-220"],Space,Code ("",[],[]) "orientation:landscape"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "orientation:landscape",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\"",Space,Str "when",Space,Str "the",Space,Str "device",Space,Str "is",Space,Str "held",Space,Str "in",Space,Str "landscape",Space,Str "mode,",Space,Str "and",Space,Str "the",Space,Str "device",Space,Str "supports",Space,Str "multiple",Space,Str "orientations,",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-221",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-221"],Space,Code ("",[],[]) "orientation:portrait"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "orientation:portrait",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\"",Space,Str "when",Space,Str "the",Space,Str "device",Space,Str "is",Space,Str "held",Space,Str "in",Space,Str "portrait",Space,Str "mode,",Space,Str "and",Space,Str "the",Space,Str "device",Space,Str "supports",Space,Str "multiple",Space,Str "orientations,",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-230",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-230"],Space,Code ("",[],[]) "min-width"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "min-width:200px",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-231",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-231"],Space,Code ("",[],[]) "max-width"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "max-width:2000px",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-240",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-240"],Space,Code ("",[],[]) "min-device-width"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "min-device-width:200px",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("styling-xhtml-004.xhtml#style-241",["section","ctest"],[]) [Header 3 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-241"],Space,Code ("",[],[]) "max-device-width"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "@media",Space,Str "rule",Space,Str "set",Space,Str "to",Space,Code ("",[],[]) "max-device-width:2000px",Space,Str "is",Space,Str "supported."] ,Para [Str "FAIL"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "reads",Space,Str "\"FAIL\",",Space,Str "the",Space,Str "test",Space,Str "fails."]]] ,Para [Span ("styling-xhtml-005.xhtml",[],[]) []] ,Div ("styling-xhtml-005.xhtml#style-text-xform",["section"],[]) [Header 2 ("",[],[]) [Str "The",Space,Code ("",[],[]) "text-transform",Space,Str "property"] ,Div ("styling-xhtml-005.xhtml#style-310",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-310"],Space,Code ("",[],[]) "uppercase"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "text-transform",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "uppercase",Space,Str "is",Space,Str "supported."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "is",Space,Str "in",Space,Str "upper",Space,Str "case,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-005.xhtml#style-311",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-311"],Space,Code ("",[],[]) "capitalize"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "text-transform",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "capitalize",Space,Str "is",Space,Str "supported."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "If",Space,Str "each",Space,Str "first",Space,Str "letter",Space,Str "of",Space,Str "each",Space,Str "word",Space,Str "in",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "is",Space,Str "in",Space,Str "upper",Space,Str "case,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-005.xhtml#style-312",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-312"],Space,Code ("",[],[]) "lowercase"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "text-transform",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "lowercase",Space,Str "is",Space,Str "supported."] ,Para [Str "Lorem",Space,Str "ipsum",Space,Str "dolor",Space,Str "sit",Space,Str "amet,",Space,Str "consectetur",Space,Str "adipisicing",Space,Str "elit,",Space,Str "sed",Space,Str "do",Space,Str "eiusmod",Space,Str "tempor",Space,Str "incididunt",Space,Str "ut",Space,Str "labore",Space,Str "et",Space,Str "dolore",Space,Str "magna",Space,Str "aliqua.",Space,Str "Ut",Space,Str "enim",Space,Str "ad",Space,Str "minim",Space,Str "veniam,",Space,Str "quis",Space,Str "nostrud",Space,Str "exercitation",Space,Str "ullamco",Space,Str "laboris",Space,Str "nisi",Space,Str "ut",Space,Str "aliquip",Space,Str "ex",Space,Str "ea",Space,Str "commodo",Space,Str "consequat.",Space,Str "Duis",Space,Str "aute",Space,Str "irure",Space,Str "dolor",Space,Str "in",Space,Str "reprehenderit",Space,Str "in",Space,Str "voluptate",Space,Str "velit",Space,Str "esse",Space,Str "cillum",Space,Str "dolore",Space,Str "eu",Space,Str "fugiat",Space,Str "nulla",Space,Str "pariatur.",Space,Str "Excepteur",Space,Str "sint",Space,Str "occaecat",Space,Str "cupidatat",Space,Str "non",Space,Str "proident,",Space,Str "sunt",Space,Str "in",Space,Str "culpa",Space,Str "qui",Space,Str "officia",Space,Str "deserunt",Space,Str "mollit",Space,Str "anim",Space,Str "id",Space,Str "est",Space,Str "laborum."] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "paragraph",Space,Str "is",Space,Str "in",Space,Str "lower",Space,Str "case,",Space,Str "the",Space,Str "test",Space,Str "passes."]]] ,Para [Span ("styling-xhtml-006.xhtml",[],[]) []] ,Div ("styling-xhtml-006.xhtml#style-ruby",["section"],[]) [Header 2 ("",[],[]) [Str "The",Space,Code ("",[],[]) "epub-ruby-position",Space,Str "property"] ,Div ("styling-xhtml-006.xhtml#style-410",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-410"],Space,Code ("",[],[]) "over"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "-epub-ruby-position",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "over",Space,Str "is",Space,Str "supported."] ,Plain [RawInline (Format "html") "",Strong [Str "Lorem",Space,Str "Ipsum"],Space,RawInline (Format "html") "",Str "(",RawInline (Format "html") "",RawInline (Format "html") "",Str "Lorem",Space,Str "Ipsum",RawInline (Format "html") "",RawInline (Format "html") "",Str ")",RawInline (Format "html") "",RawInline (Format "html") ""] ,Para [Str "If",Space,Str "the",Space,Str "Ruby",Space,Str "text",Space,Str "is",Space,Str "positioned",Space,Str "on",Space,Str "the",Space,Link ("",[],[]) [Str "over"] ("http://www.w3.org/TR/css3-writing-modes/#over",""),Space,Str "side",Space,Str "of",Space,Str "the",Space,Str "ruby",Space,Str "base,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-006.xhtml#style-411",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-411"],Space,Code ("",[],[]) "under"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "-epub-ruby-position",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "under",Space,Str "is",Space,Str "supported."] ,Plain [RawInline (Format "html") "",Strong [Str "Lorem",Space,Str "Ipsum"],Space,RawInline (Format "html") "",Str "(",RawInline (Format "html") "",RawInline (Format "html") "",Str "Lorem",Space,Str "Ipsum",RawInline (Format "html") "",RawInline (Format "html") "",Str ")",RawInline (Format "html") "",RawInline (Format "html") ""] ,Para [Str "If",Space,Str "the",Space,Str "Ruby",Space,Str "text",Space,Str "is",Space,Str "positioned",Space,Str "on",Space,Str "the",Space,Link ("",[],[]) [Str "under"] ("http://www.w3.org/TR/css3-writing-modes/#under",""),Space,Str "side",Space,Str "of",Space,Str "the",Space,Str "ruby",Space,Str "base,",Space,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("styling-xhtml-006.xhtml#style-412",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "style-412"],Space,Code ("",[],[]) "inter-character"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "-epub-ruby-position",Space,Str "property",Space,Str "set",Space,Str "to",Space,Str "inter-caracter",Space,Str "is",Space,Str "supported."] ,Plain [RawInline (Format "html") "",Strong [Str "Lorem",Space,Str "Ipsum"],Space,RawInline (Format "html") "",Str "(",RawInline (Format "html") "",RawInline (Format "html") "",Str "Lorem",Space,Str "Ipsum",RawInline (Format "html") "",RawInline (Format "html") "",Str ")",RawInline (Format "html") "",RawInline (Format "html") ""] ,Para [Str "If",Space,Str "the",Space,Str "Ruby",Space,Str "text",Space,Str "is",Space,Str "positioned",Space,Str "on",Space,Str "the",Space,Str "right",Space,Str "side",Space,Str "of",Space,Str "the",Space,Str "base",Space,Str "text,",Space,Str "the",Space,Str "test",Space,Str "passes."]]]] pandoc-1.16.0.2~dfsg/tests/epub/features.epub0000644000000000000000000020150212645626062017544 0ustar rootrootPK 7h9EEPUB/UT )$TE$Tux PK 1Q E EPUB/css/UT 6S$Tux PKXC5EPUB/css/base.cssUT V[iR$Tux S[0+"[V 6`x"3ɽ4o%v%ӴWT3:>sxL`{.{I2 -*4PtW~|[2eI~?<Ǔ%1 n!6 a dX-֌:hϖ,)+`F2 ElY S6 #zFGϚW2H5*]&5ň\{phVhF; =wd:36-H=1Υ+(œC%$k3% %Bj ;&TUߐ6_ft6-I=2VË)rAWTgXXھ,㶅t[iٞU.ui/lPg`5#l|%Jͧeq9/$^)EH<#X {XnFtxkPTm~ Bͥ K.):/PKDX~EPUB/css/svg.cssUT XS$Tux ]A EbRc (F6 Ķ .wW:TkcؕGg88i흿G:2O.ƃRڶ>Zh72%860‚%sPGfxPKK3DnCeEPUB/css/math.cssUT >1R$Tux uMN0FV$"5DjM±ElGTwhFx3s|$Oծbo2ĐR!c]i|˺]}dx7Ӥ,hN>y~$F r޴CM4%Wي%6]oݽdheBh+GT|ݙ,VA_ IV߲T8-"~>}IBl'PK h9E EPUB/xhtml/UT $T$Tux PKXCjN2=g !EPUB/xhtml/nav.xhtmlUT V[iR$Tux Z[S8~nj^vg\ hw˔ }Tl%b[IN~$;$vlYsѧGKe[sib9YoG={<? ŅIj]vǏcA$gԍzl"GXB7#`7HsAd*'O'#DZHD’Yڎ7{n1ь/3KD?O`c!5$! 5O % ؞|*Q5ʜk<‰Tk6V/( 2xdc-SxKE,ɂc~X^m 0'Rl NST# sq aV=%q xCfD&Qĥ߭3 BWj:@fJpF 7߮so7 m0#ǭ XpRf/U\ՐFw ؅yy9Atw?lRiv_I-hx׺Zۺ/VVġ~жz&m( Zj TgE|p"I٪ABAW2d>8FYRZ }~Lo5%3 G>X+c_>G>-tIՎLb:KHBkv yӺa9ÂX.rdǛ]1vp#<ۃn:fN(wYq SC1gcuO$4{En_w[+*Sh{{e~'Ԩ_jMl_>Wt!27o5k\9/!ÞK!e.#r:-s.zdڢ;^ž5Qbcۋ2ON@bv:@Mz gH n=}V 2y21sV e5JXɺ^v2VqeN^$=)G9^DC$"(MKj2kdxJ>TgOB. />? $6?Duϑ}]jd{~jPK|g9E9s T#EPUB/xhtml/content-mathml-001.xhtmlUT $T$Tux \oψ%ܝ}HmHQŊ\ \eIY%%ŵoP <hs(} گtw!~si˖wvfvvYr{;68B+Z{]5Q_]#/`~uubN&tjS9‰ېsCo{}zfUtaA!?C@W<f#BW?c_5P/83qB(g(FA#&{DŽlq#]?wUW +؆2q$x2.?9t:o߂VK𤋮!IF4س}:@>zu"~.0:CKٔw ;2*l-N*&oڸXGY6dZh 8#_u:YFL[,>,rs0JOI+2Cwp=z􋈡 Y–0Ҵh:_aNai2zeT=gHҭ`Y.Gޣsfz\N.( Je@畋=Asc? c7%Ɓ"+Pvฑź0sBWQ,1ElxR\6,;,)Dۨ=j~kA\]uyL &hdTVwy~Gdxiw>x5H` +@6rQ,Ɔ͹ya2 BP4dg}Xl5[A>;`~—6\BEVJquqvZw3dla@pD [6BXA\sf67|0<,x#;eF5ƔgtBlL3υVѧ8P@MkѫG/)ݔkd/ aw&ΣQ6be,/L鶐qgZT9'hZT@DHBXD*rRS QIAmA5@rU)iuE9spuԞhHCJz2/i"Uyf>Ith2+fzkBÍ4+ ͋xSYR=T ۞Cx <u؇1ÞL[>ih]gWoK} 51{X?GmH2 x뱠vs-L~EZ$*vZ;w,D۲QIm{ϳ9⃱}Ch{,߾Jn{1O.kY7|\j7b_rq9ymYrN*IzY&d6٫Hز>w'ߜbM+rÑ/ EY=Rk Wx'㒧 ]tAYf[Iu׷ <~'^\Cҗ͂^2.YƂl#l̳ arTz {WGɚl.Dۈ[;0O:?xzǕʚx%L`/d-:1.L O'GΣ >RY[grfhdM!&!1'f ڃs5\SGPKh9E #EPUB/xhtml/content-switch-001.xhtmlUT $T$Tux Vߏ8~f ו61 յKC+W TU`ambl@; $4u+|3<3!x3N H HƩxҏw+&< k~Fg?]Ębf7c_vqyyɶC+rAqvpB;$6.JOOGp%\i0SZ5&JX (ȦT]:0]Sj`kX1f`=oWl5\5XxԌ1f&5QBA& `΂mUHoxe\ȑm" tEܔ hۿfCҁY"/ixeQHe0A8Ǡ#.BM&ET xiPi[l<ĈxER&mb&Z_D5y{z,=Sqc::낶;a &N#P*yblee*-/z ⬇|:* &*;\χvZłAqUdkMn%9ZX˼0}Zjjsaq% 0]M.W׿aPi!Jv:=OAZOeDک {V .ޞ"zT ʒ[>;x;3 B֕&/U)D3%fM8άTQ sajm4kxS(r 20CBIJ%Ɏ=݀Er.tTGYQ* ;Jh vÖR;D屮$ZHL$Z8Q n.M<:ohVF- MKvowrje+L.15u&arQȃD(! x6fLoQε9F4+ IE@Y)h&Tr 1IjA5Ӵp \aZR^T ךAv9ocGUAыՌMX$Eӆ1jOہXI-D Ut|N +ii} X`qхW[|Fa@'6r\cɢY8m'8iظT 9< SRq AV1cQL}8@ikEsPhK߉^b,?hi=Yɜb]&ٚ(lxJ^p)17Jn%}ޛ7opٚ^GY=3* ەFP7PK 1Q E EPUB/img/UT 6S$Tux PKXC6%L',EPUB/img/multiscripts_and_greek_alphabet.pngUT V[iR$Tux mwVQEg9뎘o AP~6ղ} TvTJ-#[F;Ybq_.wg5~ :=}x: W(*((pGc)Eʤ͞xxߞqT{t7[-;AȎTEM\](^IdDɮ`kW¾+^p讘 1@,i4r#׷eckZf#00`m|E uDIMIũv{wIt52,i,5dŻS|x~g 3ٞecg63cYJfv~5YsphhiC'6"Q!},+3Ӹ 0rۻ;s[F m(9e.[q6<\o^W>r;$ۛ븎Atllnml V~l'G<;0rrrB4,vĴolI-o.e!oMA {RpZ(!$wqĚr^vze`ePIIc.rO8!bJKAzz>W+lS=+*b J]D9_mݖSx?SX5/_>k|^@ M7m-̂[ڜiv8f.kJ'Z@ L#h1.PNYLkZ~shH7&Q3Q9= sOp:KO'6c%%"W7$qppШmŅ\wF\tRc 9Eo*pe(\˿~C;wh`O8A;SDDp_cAAfE% D*Jc^%:/JCY%Q4 e#<-h݈a-插}DEۣFyzet]fy -,-߼ySh3pc±focHEQ]@u 3\$j~é盐014X;˧x͘6U9i{Gwf׭Iׯ_ j$L z8OcHHڐU&]jPWh|x(xL┰x5ߥ'3hzW2BSvŶ#ݼKqdAvKKK%%k~ Za345&L`l*G(=''c;I=me~b ldccG03 R+uA=߾}Bg+E/}.=7~o6_$N&8n4ΰz6,ƊUTHhhe~56bP<0@(ۢ3OZV??? C2&߻ ˽GbF>5pݞF>stcUW8a>;TBzI6MIųymH ?K]TFtvvRX P--/,`=&UqTᛟ?h!0D^ {o:;}e~vVc^žaQZ*]Pph}T"z\NdZEjHHȟǻgd rEdptl_A*SkJod3#v3‚0Mau0~*Tkjd/A0x`|tt)T2BLZ6An`βxjQi VU{q8"-c<[5)=$9~a5|͡=ƍ;@+ Ng $JPag+sn}JeE؎t)Kd_ww#1Qücd,jC8ǹٷNQB^tXg9ٹ܄krׇ -';_vQY>J^xu>wsua? Ԅw@>|U/ʈ"86\+Fp'EUikh6Lia!ⷬ瞇3)ȶ aEX0S\7bG+1:R7:E0ϗ<wKN8*VIx gsIwZl'ēnkiܼ uw>#",&7R6^{=ԥQGSxYYYUv/7z=TUoNMM=R1zf=U%0?LlGWgg2DmeiIl:Kz8)LYMނ::Cv`E*ջ6W31\uŭcu1\Ɩu*ɳkkjϯa Ȥ}ۍWf*12~"v6;;KoPءZ*7k1r:%k'fƲw3c ]r$$t|D`XІT0=%,ܜ1;T֔{##yyWW&@g?O||NjJz>N^pBZQ~5^g;::4rvA?)@Bu62t F7;$캕suH}>^[]]}/hVX5OO#-C+&&&.e(1Bl>+$/m&ffRzġ!Q} ?9YKIS;"k:j>* ?Uơ0_uvt^ EKyfԼbcS/,fpv(ac y$ꛊu^tL ?;{0߅a9]8C\ld < @VAch~, xQOCf@|!;ܜ0̮L3'(􇸋hT)|FF}_[JJ#Cp!-ԧu߭[/aJStF?uj0-af7jϭx, 1[H|IkXu #)1C%9X{9'O =Oú~}ŸSK] }]l;ok&@ +ѩzӷrp?ERWӭlY]舖I{ocAT * >Wj͉ \@|R265L;0# b):T?B)Q8Wl25-Nݻ >2hFk^-Muu_h-VV^"HIظkBY%m!PBF@CHBw8ZҩWUvT'iut6)q&l_Bua)a3<FE;@ZE<22JȘ(6Hx-}֪WQ+*7N@L=w~XEt,"->)\H8Mb5bdp&dg;I/9ҒB4gVjTZ$<ϟY \hpj~f)*+Z&􏶑ZZy^ CÇ^*U@[šU]հzU].)0L% ӊ*w35$}4lPpkCC8$$$h|ILL sL`jpXlB:[{Tp2zgEBW7DfaT5~Ԅ'&~8H./*\ǀ[5-~,,,p:/:s!+JfhhXX\WPPP봻'A9ٍU38#V  k 44D;2ܫB?`rl*CtӧOd#ccB6,{KP0g1׭N`ܼOO25:-*{MPBkA߫DkEQϻy"׭#82B0D!%yŽRh 4{Ӕ;iCTP#'}%Ż{= lmj9HՅ6Jp@ s !Gh9t&DsKZ\/~4Dx/heC# @W}rj&\DA}0>݀[ 2*hgȈ;N=E DP.wkaa~Α+ /sҰ^E= X VXfDLDja!q]]LOs!k7qd dб"/o@gފQOZ !)h]jVNe 嶙xQt(]Hf?𤵓ccJaBksuo<MkɌK衐PP}*Q픞`ù kh&""BQkŸVh?'LKVAhk@SXaIVnKWP?KaǿJš "oxc6 A _es[3GߥH5( y&,}u71h)䛀U.'gP*?>{u \<=J  P3[dڮFLfwT 7Y1Mt9h'V9IG3J0J̺["cc?VJ:kk%`3 11AY\_0?xQUT%3suI2ZX\RC#'m]Ȕ44y$_Vo^nC'.;ۙkr?]̞7w_ Ln4BQ<0iuטe}~fPP7!>A4ɚKHFgO@+Ŋ:[E=@Y5Э<=XV>VV~K3X͑᱐or/JH$?^ᾯu}Bj]YE%J þ;Qޣ`xZX[1Y`zX5u.zqq?=sU)dG[ cz+fi/n`'GFj/T{[L;=)So`57RAx=&j$x߾}|hrSeoI{vb A Y'Q{LT4''iMHfq~$uxy:3Lu õފz-{ UnP>in޻'--}~Tu_?+ؼ'_J*/=es̜g~mj |(Zޔ^ϪB+EGx<gf$ ->0^ݲ?zWoI+M:\Tz(|q)ߥW7ܸ'ܜٜ zӎg9)}_}/_~eujx>8VowMgkinWQ?PzݫRk_ O&20m#S'&q's[vԧ?i\gbό;w)>in,6i˅Kh[(^'^1nAUe:vyf-0lֲQy%[W9oW:>g]wfcYYgv4vΥGOn(y.^&ea}UI}9lޕ#cgk5m͘?-bHm[jyif?k&?֒S']If 0PK XClEPUB/img/nonimage.xyzUT V[iR$Tux FAILPK XC EPUB/img/check.pngUT V[iR$Tux PNG  IHDR.2~sRGBgAMA a pHYsod IDATXGYTTWF1guML*A`hC/`2aSD@%JJ@ԬYݍ1ꪉk]E ̰yhe~ZF*t<0@G6(edUO7.wB{($a(r/Y4$}=id}0ժ@B@7rY e@ArxfcTX/ LTehq3jȇA(+:{_{G&^;MF/p^j=eXTqi1ދ>ΐltdɭ1@ȺgD,\sE: )7`rYAӽT)1(w 1QY Y 6b>G[Jߧ@h1+kAqNFl}7_a9O\}J58qJR&| "}=e$~^(nZMgpv!-R$ Z~2zQ8nQ ~E}lmұWΑD;Dani63|7)AC|E2%YU=ry@6Ż)jiݒMvK b6 &vΙZÊ0$H{>Z27 D5rmZ&m"r;zl$#uwyDSV9y `>ia$;}s/( L93ۊw¸zyB od[=Y ؤp~6y?ۯq_MJiCϥiE\=~B Me$~'~ZU{,2Nz]RTJrQI]LgY"b.@ @P_P<  [n kάeB~He *.Yf'.v-Bi31-لd9~%m n)GUF0Ao ԡFVYLtH© Xi Zy2^*}mOslR$-AVE! Jz;~Hlk̫  9`pAx(㱎3IW_oBYںۨSрGѶAY1K {z?`8hXzK*ϠO.#~\P\{?w=y:4q)G7nhmkmio9v߯^#Rfc}*a@0T)MBj1[4@u~H& m&oWVOcw^ ؀IENDB`PKXCXF89EPUB/img/Skype_logo.pngUT V[iR$Tux {Sqw(P8ŵP/Pܽ(VܮS8G7/d3dgwg/r[ADo ~I@5Sx_-H7"ߎ5$ih *hozLfQ')-<\jc]$`c&3Pv78!DhHZî Y$W J"K_4as#{=$Wv kU>;!7.Q!4xo?o0{l8XsACO[I7--м8eOwր@PE(i`kճZl~$_Rf&(JycGfU-DZ#u+׌l_i29E]݊xfyhzR <0Ē]ƬBY TPj9gMS~ǬpI|Ep+x`P8l0R3E0y&5$6) <n.k6h *+`Jɇ7Gr=3Rln>h143]cUڣę>G5l:-+sۢgLkf蔰z c}BcSyn4P`nE'K!qdl`a> WoOƬEI?P-)%0+f: ~P3 \ rKAĺX RKx-e FfP Pg3(3x6SY:@hA . 8]*78LX}-Ur]& [fӣ>G*ry0V{hzd͈I.ҶZ_w^Y8u>ʯE]@mF E[:pG%U6+v'3cllN ^_ztha_xsSr oS (lqQȋ>PJ6 2R @ RK췢cj+oD.ڒl܃q{t^(e 2 ZžlLPRb)8ɲzgO9sB#v#lQ>֠{L&랦/o~{G5t{X>3Ɠh=~ڟ' ~E DY Zr\ 5{ŧ[88أC,*N13RUHZ0zjd}.;D4U!12U$ tQ$Cʨ;?kҢ2w䲈dKmT"'ũ1󶌉B0~]r+}e}D QUFrP`o?+Nֈ)Ôe Hp{n/ D.,ZVL7x]ozh0`\[Q+NgFHQR S$QOd Ahf6;΢Lmឪ@@|f{[y,!fX60i ԁ#3A/ \:\$ٞvx+kωۛnf˶?Z@$ ]pH\CQqډbj?!I\(.$dE7vcD$.=N%#+7$+iaX܍q3Mnɫ7_#E.(Ilcn =b.kӥmQ0l0k0f6x33k&Ғ}o3VLh=IKl~&:z=b-cc%wm7# )u8RB4K%7s#]%L׋ LmL: c&&%GA q] qOɠ{)S'QMPO.,a觏|>TPbZج;(LK&i[Ql=j9^^c3W-,!xr9^C&iD.Ȗ~Aw?kQ%Κl wgȇBtm-„v~'wDajTY>H zpk7ybcxpV&_U_\_ABo,L4k>k9 >7$(5<1 Dyoa^3RjVZj3$`&zR& Pw)JyAdWG~ʢi%/IE8'3,@*k Dkm񗀀=e5bl x+Ȉur qB/AN8]4=(Ԃ$]gi 'bڊ }"WO C5*BvԠ9er%f٫1DzBBP:c{–@/zg/8l $ ͎XѾ'c3KfN\V/%};J@%G;^ҟʯvz`Xz9SM3D׽0i5l4¾>'?pBe0܃ $$4v 5郯ך 4aJ~SfmZ,' L%µt´1/x|ܫöoOJM9&_b7?&ylr!mws "+Vk%95Ye`jJa!sPZI8G.VAF== ~Tqfb`>uFzɖ l2~[xij%"Zk]6 jL%KFK>w%Kjx#~GcMԀ!8 _0{JJ[X 9fJyJ0 35; XެkO r/ 4#e7@0/?Lx/#V s > ZW=j/^X9h)Ǘ/d̘Qˊ#&`38hĈ+=3 t7KyjC}jD'U'R[}FY q 54{#l9'z A3MֱY>NAL'/:M %iզʮ&5"C28x+%/4 MA?y}_N$Xz+ƶXP  ߤ^d`\.L|pI4e&fNOTx'gznti(=i;o܃3 s.'l%3Xmj^j$v۸!*hg9i˞E?at^9_Szں}Y;{锺,r_XY~o(+ﬡNGuR nJavWqJiM)wE/-/9AkFR'o %8fN%Mx{uV͍!Uq^"{F!uۘJlCzoQK\%:MZR+OAq[8UusVמדgr  /ը)y^#S9jܳ]E5 dG"'0&JcGeJ(ٟ@UXDJdgc͡i1<dž_H&q?jUHWfT~sCZܫ#±UoB=v,{Xy1͓w-!$EĦ şN]Y$=WV%Ol93яxX IYuډ\Y'6 7v kO%d8Xke}RP ޥ~/<$efS d!īKi~ )84Iui-ph~|7jEGas/@a:]}_ע[Rb}u5MMКP}۩p X Z`  RaD\'h6CWr5]~y_]zwjrRZ|%E̾nWb7%y|Y2-XV%G=|+?YO珮W:F1n;׾p43$>4Qz5et8Tq%:8&Z%:~yAy]56^9~GR,$f>eY:I DyB՞fc.0>)tTe_6IVS@o{(Brwwe'mkqy%]Ea싩ofRjt^k D;,f.a:QgcKx< jRC;ʣ Ycss( 'c~n95D,FhUg?r`W1KD=YBu~DŽ 6PA| ZƼczU0zNv wȔ3oꄽIߎ%T׺y7`/$'';ksm楏Uȹr O)ῌumWd h0~ ?D1Ur gMA? }(7P؛y"(dzoIٛGVf3pd^߆ \Mӑa 1 @s + ?Lr=XziSGbCdg dcCERW}k̳j_Kk7y7oQ=7* wIDW\""|IMT?8:4?M("\bYB(&3yB.ڨQ fjr&޷vϫ%%ifEr@WF7d 9@+"<G\?3,v|t4NW&ץe);Q`|[lߙtTL4CŔPvROpg2b+/A1"9,raf-]j ]ƳRxd]ap>Zo4rm㦫kX͚ 4q8_ȷʨu N*iJJUM1tX_8pwghyf "k[4ԛ2⏜nyǣʿߝjBNJ}, y{C nCk]7߬dQS7h;L$9m/L_ >W B%(WНϷүd 6K$%j6X^Nl&`jЋ4IR4!̠j56L.I~yqaKi6E~'dIN8hc AT19vHwc/x+ Q_j"Mcb +zFpm璯HlXX1uhV #֜F []O0a,)j ;-/.+K1 ^NEΕT9 ]'$;W*1VQN+CNwCr,a% 5YLŇ9* Z}NuEi,)NFx~aZHPjv \V|NyE$ʑ<R)*K S }mcYb Sϯ;Z94 #wdYyKHb!s/6 j"q69npH|VS7D>7F)J;Fgݖy2 = ID߽mA|<|mdt$Qg oǢ&U!mGܾ/\lR9.Ze1pv/U[O7g?Wa\(,,b%TљxHHټYl~ h.Em لVuﱾ,ٳt#v+MP~x-Z]lN.,l}G22dD2#8xNk1u}\ la[XƘtZږ'*rb CljGjD`aosەc|̸ JaC/|r?\`0aJ!|OEJ9A\5,YdW0>^7p( ~% B~7W<d;Ɯ,qО{Es}"?/{4$R&w&dmnŸ)=rS6k{odMya`PT+N8~WvDfϾ&=E~akcFj|fLn8SH{Pj:i͏\i_ lQy@r٬ߟRPTۮsv3Q . Wr(dk<}W'Qʜ.H_䶺ñ-A1 RgQoS 69?0Mn|hrNmN r~R}yN2F@! 2=&% @+BFlљc7 ϶c3\~;U#F2Wv2&K4er| pq۔;S1kˏˊqĆ i܄Ǖ*Vni\ ʽ@ i(&':3YT'|I}FW\-ӖQgq*Ra}R)yL}z#FVԆM>&RJ!%4`&²~yOXջ\D41_չk =LhJvL 5ĒE;+VQoM0y]#ollncr^)FkrĚ$60kEώfI3%n7AeAcZ kaf3$KKf}Vփ)6< 8tmT^@;Gs*$-:c8D¯P$ΎY}zlVh_Qiq&&03ďG:oG-kT=iE׵S*!ȍ[819E[pEJf*+$z o|-ۡ]LlR*GH-r/lj֗:M,(PikvYъFxz`{La&yʹjO,GP:~H`54N͒yl7 d%LAgL+ }%s *?p΁OA-(G㖣 #bf5q [M5;nL onU  Jfř{S:}ex 64ZppSaدkb]3*Gt0mɘ5pH]g.VlFxFѴ9vzpN+ 2Rj3&E%Ax.1\!;3dzTMD40Q׻lg33CAOP!$tjtJͰUrPGS>LyO9qc0+ycRex:w vgL:eڇm~1QD tu]/BKVi 6 `/~3f`ED~Fcrp1\;5~81t77sRZ攡S0,5 2"6619m[lvCyX`%n"nS=甙ELOn.Ӽ& ~|_ı bg4 _|`s2|x,\.-(&aofט:uu!1SփANsw}ju-+d߉׫ .FY8-6M|T d#BVț?D}` }vW`.yM|+npijGZ~mW«Oı] o F;@mVǙ#Q۳rbHj_ ,1lۢ $%c?'e8/y#PW.TcT~-e1_"qģҰEN(yϨ_pP3wUCN;إPq+|?AyǿG[VY7ZN:@> qg-*Tz/ _$+;yttɿ%a ޔ߽UC #vr;j]RW ŠlHrm΢{pM C&)AlmzQ3zW~dJELowt΅@u +dž{q-{>"Z vg&}/fßU"r^H s+(d׺ÉEnx0mϖl&FVJdZ 6Wm&՛  >ck9}J,u,\M߯{ňAz(1H|K|e鑎F*)5}c+z4bb+Ƕ]lmt ==Fc~1LxZ0ͥ Os@[_^孁4^Ӫ~(JўFGU(FZ |O9aTJovVkRJyX6lc )lF}h%=cfm2ϓ9nCkO`RB`u:Vky$E-31~ދ9,'2`J1 8ze$VE?$-~d<6,\oG9OW<!ϷS!?Vg?=}^$:+ѱÞ_I/qxѸ&sw3z,"tie3?׋<30RVq*)z6.+ޟ'FpRdۨN"Iy T6P#=*9:o*P9a}ǏGyK 9?4^EA_xLw$ oHwE˜^}1PܮW 뢥$NlX[~Ļ0h<ڒw' B},y@}kgg;$_K3R#)}h{GS khAZdاx;D2klS6z*Ǧ r]jw 1W8$SjLeT  eQM\U.@ rN wEn%&|Ea>GKmgOcef)R! ˹HO099 n1Q^,L[JN7ʫ'#]H'd? ([JɉJk/(WP|ېޜa {0ݜ{|0ړ Z#i@|GݝNռ!cr,$+*>!Y`؃e cPRЏKx9Cu,biÃ"ױdCw$'(/Bq#Eks"?EUaB$^zb:P@}m/;ա(p- y]V%NI54aem{hvr',DDt=QzdKSkW+(VtSםN 6  ` ;T:Ơfw 5"qEJ3E-|)/mlŒqݳ/["ֱ]uuD [NJ/&Hjs1.6%M>-,pTB&0 Z)^nt'LCݎ=%NY}?xI2'OD ϧ3E3% mFM ,otoGeP=93j]`{!bf;k)%cbpaZY B%o5HL'\s=is!~75l)z3; {21PTq;V-긒̻AHVJ Pl;I;jrqZ09:LsEwAHA7\H'~F*﮴u 'U.Rec J9fL3ZtـMr]ݬ'ffl[_eߎ#mlYoK.?sQvZ|b$q"(&ӏG;fN{e>ps b~2d%Pnd~wU rajw,2Ρ5rQt^ ;A8JQk;8\F(h6sb\BPgC28ye#`x2aD!^)!ԉ?]0,ՊR1L|vLƍ^"5Oiނ鲠M=쾒džS ۊiO)iX,IqubVMnD!0+lX Է4k8;y0KEE zFgL=d6PAjl ӴzAݭ Fxl9II> o #D18>*^FH_q+(QuU :$VzLT:ΚuJ_+ix}7Ix!"?[i_9riy֣÷|}.l뮌u1jSH};^OX;Qk@~3leo;7e:HOxTkt ѵxXog~*y>FdR 8E 'Mt<(v\WV!rW gw x |Qƪ∌ߛ _FlkS#/ewY箷\AMMUxL4q-$~6]lF؏og3 ۔eSBJ?7pV0\:|~܋D'kneJY_R"r&mBkc :Ez.>_O+07@fȋ}|*tl;ìx-9a3N:O܀3D&[u˖mu^G: tN@ÈF`JKm*^g9&lT "&I+O5*8{ҾQi/@zdr  |O/Q~d;4nͺVKWf:ط©`B4W+qBiR~$7!2L-EuvlhƠQON07 ]!_Kߣ_2s0 TlH l{|||#K_%m;BzUW@go gxWN %` =/I>_Hׯ00ip/_QUT+mPK XC EPUB/img/fallback.pngUT V[iR$Tux PNG  IHDR.2~sRGBgAMA a pHYsod IDATXGYTTWF1guML*A`hC/`2aSD@%JJ@ԬYݍ1ꪉk]E ̰yhe~ZF*t<0@G6(edUO7.wB{($a(r/Y4$}=id}0ժ@B@7rY e@ArxfcTX/ LTehq3jȇA(+:{_{G&^;MF/p^j=eXTqi1ދ>ΐltdɭ1@ȺgD,\sE: )7`rYAӽT)1(w 1QY Y 6b>G[Jߧ@h1+kAqNFl}7_a9O\}J58qJR&| "}=e$~^(nZMgpv!-R$ Z~2zQ8nQ ~E}lmұWΑD;Dani63|7)AC|E2%YU=ry@6Ż)jiݒMvK b6 &vΙZÊ0$H{>Z27 D5rmZ&m"r;zl$#uwyDSV9y `>ia$;}s/( L93ۊw¸zyB od[=Y ؤp~6y?ۯq_MJiCϥiE\=~B Me$~'~ZU{,2Nz]RTJrQI]LgY"b.@ @P_P<  [n kάeB~He *.Yf'.v-Bi31-لd9~%m n)GUF0Ao ԡFVYLtH© Xi Zy2^*}mOslR$-AVE! Jz;~Hlk̫  9`pAx(㱎3IW_oBYںۨSрGѶAY1K {z?`8hXzK*ϠO.#~\P\{?w=y:4q)G7nhmkmio9v߯^#Rfc}*a@0T)MBj1[4@u~H& m&oWVOcw^ ؀IENDB`PKXC=UvEPUB/img/complex_number.pngUT V[iR$Tux < J$٩\HYd$+*#+{%#eeqFHg=^/^^{~~>OEJ&J""(E9-x8Y+#2oĎZ 2DE, Ye95X8rN#y1ѧ8HR'ǑQSen䤵.kmJ^&{VL EMXukV[iU"Pˢ-ڱ)Le[r1̥<-OwZlF5fu^(n0dkS"S]_!"Ȱ61_gGf!ܖJ:ZPr7AsЪf@͛~*Box/+pA#H& *$V9V^ppQ8 ))Ѿ߿5"P $*/nP:8{xtd/f̙ZFFjhB]IO>ٹrEpxyy1NξWᐥxWW'a) KLy˿' N%Q3L/4>v%"'1Vd&7^Pu'fcc;<&6VАwm}n4$?)$?CE1r;zoSŇakSCC)- #!"Zka[]\\|Rn͈`o6GQRV~Zr*湺=s.'''} dfo$N+qfgeQ33wZm ;wxw'QGEe*Bᷔj噎U#Oe2{^2M7yBcSN..1XmLw| Ѫ:0}A#55<ǶM  ־yW48[91Z0,e{-`,LLAAa2ijm0dZ ZrĆIoyT>rsNب(>k[}8ܒGY cl9WlT̾Ń9[(Ĵ:indS8i2{Xjsڴ'xs}cqv֖W7.[}ci]RRäL˺$}Z6ԞٖpOEg/T>Fnb"_.B[\Z:08xֿxЯ*Rn=,,=Pb#(QLCS^nOx=җϲ2%a[~v||Ua c9[FGY .Z$N?2Cn-;^>ikWQTlKQ.뒓EC9~"FՌpkrgZEm"AW$P**tttceD=\nqqrrraHt9Zť UAGǗnÑR{5;ׂXMsTW\릚 괗/)eg֎Teis'IzIJJ3޸x#Zx(Lx]ZTq=x% 0ɥ~V86J*IjnJ7xI!NW1וP=RJZ0Y7.?GGqוij(Uh{n[[~}jb-߇I^}9 6>9>*0ĀK }ԟR]n˖]S\ ؽ?(E.NPXx87--p^AР+<;*mlSyhiSnA=>-W2qT 5<x*JUUC+~~kVDE)3duݽs #FOů?}:lÖ`3G.[ RL}:Z_5~vdog7h `n;>T'_$n\&~8Y4z=|Qߘp}prT&vZ~!ϛIm]]h>}zYy1i%@{U? W8bA.5ixM(IPgfKQ,W@a0ea> J|L)RizFw9R-,, WJ\NEZ ē䘘񤦦gN<` J,z3pj\:0AFO0drjW\ϟdde gEGG1|2N 03D!Bx @HKKm=gAQ2ͥgSCgVT$6m( (hy ,.&'͓D_+%>adBʿiv{ʃ}jZS'E/ :fss>{s ZZZGKWk#:VfrsqM =oi<&k}e4Vuɷ###%ؘ`6ڃ~5L2_*4~ɛduvz]J[٭'oh 2^AzA){ ć'SRW|2l|?n"lo;ΪXYYnHHn"@ SSवEC璻޷N`uuOrDFl;hcXcQGu ̪*fP;TTfG[;[A`M\\V:a9nhkcxxplZ{r7žG u'IAlb߇HXmow[5DxS8\l~,dM \DKlyRbnjnb?>ќQK o2ۙl\6)րV=LF8\reDjll,##CF[G'dee8^ZY9ΑFzm0-ZpŘrSK #ĭ[R#c Ouuu&VPvU_::0;/ۺFSXUǪ8دMK|c{# S-aW]tn?S55&0b@;&0;/x_4+){mϻ@XuPVe7;W/ro˳v&A]gZLMy%\Cc?:zi_O4i&'-lm|7}!G;%/K+7W*#Jrah4 $@[XƤ%Ic@BUf%Yjf˅δS _;1f5D7Ascccw뫦Ichhg&;;D?d։_׬JbL̖66x;N|cPHxxv~%Xŋ!&Rzi:=xpj45OgT,γ(׳17IKOg@iMNi镰f\< "t}s L\ j-_T[xtk.X]~ _YLI|G߯Fz[D2.^^N!sxX9LNj&<2x 5"'%G1:!Ǐi0)gT7Hi9T \.<2Ba$ۜ44Al/]C_Xm:_ L鸵:0L\k)᷶ yne+CsRC uVV"襤]ֶnDLLC׶ Ku3#e> 3W¹Z ~gaF;.`SM'8YȨ9s.$$^c\lZ~m~}g/9E_9YxU/|_Ï(W7[Zq;midz6]]yCe^gӥKx;>ұp݂6{Mi xŭd=hypM eKٿ\yZC g{Gՙu}ݴ؅ȃ[:l^p_i#Ao3lrSLU}Kw<^z~&JMzSMgn|m+y͇85v>mϟ[~}qSc2ĺWLIʻeq^N#8|ߝuĒiG jk% 񽉽ZGv=N;gwNZnX]A zXФo,[k}CucY>OZiSe~^Wĕ>17Í]yF۞sLiKyË2̍C}ke⓶,vk]_N2=%g|2OK6݃,\z&\denc2'6.~يCk,׾e7.뚝[;{N ^tn~sM1Cg?l%YӯZ}DKul7C׬G j7FUM]w.IxtJ艿 "sU- c7D|q+ԓ#*׶(hSzgVL{-+wBɿ{⠶e1,u$׌3hlHx}5}buI<8qhn5.'K\5̋Ӈ^oTJ2xv[77/BUcIpÔf_i7+xsgwSUwz;|߀zc69[{{uy'rWyS&杉NQ:uKO;wgE1^>56.C#3/x{ߣe Hx]zPzutonyΪH/MzYv}7iíf́9kƯ-~X9*Zs/oG֧]yկW7C;lTE~mJY3$'G3[x4kÐPKXCqEPUB/img/cichons_diagram.pngUT V[iR$Tux -XX]%DF\%C@UR@Q$KCs~p,g91e%=$yA#i)1EB1k d()mtKAw?u 5a=Eb㟁623Odأ D*-&0F yƯjI<|L೩@'˱ΣCEչIbibxTp$qZwj AqfmtiYڐj_P6?.ӣJ;|sue.[d0bNVa€!***LO.CQAA)/{K/y' Tu$%̿ h71aTe曃6DD ,:'9\14A#KLqo(M`J0szg ё731?Nn g0:\U Attt0-[1@RyCD\u:g\^!IJ$\u H,HOQgiň*+ofp!133ֹTjpU%=G9 nHk9|zm>⋃ $ @=7IyNW͑@AqDŽLjz:Cme2nLLL lV Z,r8?+vvyő¤ug(gMuTR䩘s͆,ҖSst.*,,ܝѥU,KCpCؠ$fmolκZ6a4/{9\{ƆL`IQOWWɎ{ skk  K7&5(^'MN6LOfȰ!zTTYFðNf/ȅ*kb<nlvcw'kݑC`GGG ۈ428"b1mc3Tvc\4ѬǦ=Uﯳ3Rn:c? IIa7:PSCZ<&\ϥ>|8Xm]un{ mX_羜z%B(,'-Þx>Pcx`87uD>6P6K7gdRgm%_h&)OLd9.4_ mSo7bҳА IҒ˗/ K)n찼=NSPP'n@'oNN^PndBVb`b}6A+|V?Ӄo'}^ T=-'}K# I hӉilz'#ft|wlB Noجu?U%@Ym n3aoQZ7\{fJ!\f,%EEЧH85꜆0M=N; o 5yJ_v {P ZSv 444'vV:*k5~Aɽlۆ ư뛂Mjyd ,opP>"*O|G1 <;`RZ[_ gdfpp4b3}y|~țnAO_  1ebcgt83xaXsAL|PaffV{diiy~p7l?eC>eRz[ :EG:jxy`2M33_eYuPBNGG ʢZϻDaO))*$$Eؘ.΢MߙH9i&vRSQ1xbvl_.Q[QZZ眱a|>ԐNI>Rvux'Ә7~NtU>[iJLܟAtUHYb>qs-J35c&"OHC#qѤvp34\@#?S5dꁊE n$%%ᒨZM׋&!*g·6ܦӰ=%F.ӆ6UU t 49f89F*=QwbˠCˢ̢sb@ni =dD!dk\XoZ]{yx<}><&6#Xa>-x&g(= 81P"`<7~X*M2Yy xs ʆ@{ ;c=g`8aR*5y˾g+LDSj{( Zex׍0A H&w,C1U Mj덠嶀_*j[j@N\uSH`fR=u\<fs[Znf+ӌZ@^1EͥKSEp !y5*>+T]|XV79X-*,g*Y3}t[t%0<˗mk?{\"JK9%xhvyZ1wx( ^lGU՘BI8S-O^ ]la-`I/^ 8ZͯԻ4B}cMX8V'405>nr3Z:r>@.o_ 6mcRTi󟴽8޴8A*SbڢwAhzCw,["i` Ӏ{Ŀ87Np:xˣ? _{4wU\sn6_=o.0aiVϓWӵ=. NQd]&ƻWQZUr_}Q7Z;0;E% MEs:t[{8i0daն;J(`si ۔}y4)z^vG.PI(}6=qVثrOf0.yM"k~mv7_]Sa܄8cl{>ϗa*U K/ȥR(J Rq(I0P|wFFFXDBjl >;00`HBݗF ‰4`An?"{ɵ&ELXC49 *ߟ#uK\IV___vِvٶS|/KiEEOjUVv0igQKH#b/zDEEC#"BBp:1 z۹ *m:7˭<BZKŵ$xzmXn!\7OGq}\ #˽iN'b0IV- tn ԘT&f+xm#۫c{8--_ʌŧFSD}IABL'3AjW|;ڟclE*eC W*17<<1@W(T}+lJmwT~JאyAEG:b'pSV%Y o,=L}pǧ(]لw:PRZW knn1]q8lʎEBCC Ϊ8:>>6ܟ,}p9V緹W:9Mǽ0bͽS[[H^'+،_Ohe% שּׂ€D i]#{0-PI8Vu.WWVDYYY lh޾};wڷwTEfGp8,8Ps.@@pQ1}""!A=@EBm}rz:ȧ-Kres8=9&mbݶ;wdk0tOނS7ycǠ+yxz~cxd裡!^Ғ0a7X@` kJkL/^x $6$\O =v[ʈHwD8ѥ5[SSA'G# OVw!I&0ruU\\<><)] ;]yf3텆$rD]?cu##{2OMHu uܢ=TrQRRSsr> SӼM&[9qD{8hV#Dgm\(EXxH }qA8׸~jp"W>^,.jX6wtwuu0AC@jN;k ^4"ؓ 11a<}X_@$6d9fAGJ2%#v;/pEJܛOg A(]ov$t{'tqJM~;=u6Vk/5!׷9]ぽ@򘱾W\RbАؖ@([ #inO( *@AbؿiQ GsT4I-'E`=rtt |G08mWCš_?ޝ d.jlL[ V#!# N8H|K23G__; Р?{6edX|.8τ?OM0Y* dl0T*XMPo@1·HP b;@Y%Uzy5%hXi3NO5~uOJ䬄e+3f}Tǩm;54-*x?K!-.+V PKXCܨQW EPUB/img/Maghreb1.pngUT V[iR$Tux uVwPO0R+.M Haq)z) 顈[5(b"" *D4"lH'@("=$$!͛yosw?|w0Gkcrp! ~q *(Bf@SK ͍h=_H[K1*ҐkYkj!4f Kv/Viu=; :Gf1j Uj?0`f#%2o]`!: D`-ߑᙞ~QU @L1Ȋ+Y&5~\]6*`"5-MqFTD6_1.i(_aQ\%wNC1ZTqUo]I?2iN2^6" rf/q9TF#C#Ί,gthuȣJ*_#hW}H(bol܉ K}(>}Y`0CC.]%ϴRc|[vxyݑ#dm}gœ!EȎ.!˚삺o{(+2;ˆ934m4]QzyeCK#gi joo0ɺ{`qkV7{mmm{O45.0L*8-z0Gڕ^jbg'7~} ׉ iG\_9ۋ<:`\r1RR,R5VR+U8q F=5M&AҰH#dC܅獤t;㰁 +ٞsGn,UvC)Z{ߕЬq= hHL*;:/wyWs t֩rߓ'~2w.r6 grK"\XP`&fB^&GIkeǨbnn^L y49z>,L{8ϵ9sFDMak./ڦ^Ogܨn$ x>Cy:%/[xpXw F2BYIfUXC` Yf("h+#V6ظ ѹ)3S\Xg/}uިr H[pu " =(vz?~|v2혫3ZGemq˿w_x9R*J-LtnvSfόUmMЩp}͵<)Vν2|m؁l xs'y$*n:Jr?_c>!|4zJt7u#ul> P!%U!ګn}xJ|G69mMrL*CgA3GN徔L(D9+s5]iYd[ޤ7fﮃPop8WǡenY A _ N49p@:VM/8"?wԠaTWMuѫz%[o_qq>n XA+㤑@%񉌷:G!uSiI"NCbCU#t. h6,p W?ͦ(ĄNh2 :F!e `?+Qv-Xo"tC8z\#4y:~|%[Rm(4YZ5[KL1*k,u&<]8^[izg!q⪷tf#U ?O;/!m=ad4}I w?K9DT}Ø>4O"TሐssDDDi *"znbbF\\LX$!VZZF6ȵ?^dկSV!)6s@Nx Ԋhr"br"V "" DD%ejDa89 .'^l>0Ԗ WJjlR82zl&]=}Cs mwgkg(Q_SR/^Jιv=7{<,*~TRֶ]C^y;ʘd0g◯Koʪ_"ٿKK΁8b/Q rfk9 rA&)GX 'H+36W]̱g8_<19 yi` ,"|gHz'^b8b{@uM"r(oT}0\8,J톞o4 5/x0U1576I컬j۩Ю]diL [.DAO?FTܒYL}A3-GQHa7M!c^*v:}tjwHhO#=7N4NB@N0F%{X߄F?bk b%t`C碜Sɺ Ixڄyq4 IҏEo^[ᚂM EѡF RnM;}ƲVj T!Pdǂ$ځ`ꏊȴ|%#\d*^iwv{*d3fۨwE] EKl.["ON< %eZwɱj OGE}RrU)>uyfKbmO&įge<f)0 k7lòN=$)EbY.HȐ~kD+yU5˶~'r/0poL/A6{1fnF4O݀׌rs3c0{aU7TAE-cbg"sΰ`:d g%DD;y0`ڭ!e{)beͻhh$*7 /A(tʶ'fmؘɫt-EZm/(>l`3g$W!@E%މLUWzUWM%e gkl{R ,@ކLHVqȓ=ʓ?zi.it~sW8bʬ+߻6\C̬ V.t|4خڪ^ 8LɘjEТ-B^/LFSH؞De9ߢ)-F/xT?f^0p0U.~@!{w){W~?\wߜwQ|D%utN;nK]`xHjCmhfoWoGP3iI2d˙Jo4t ˾fS[A}삓mNA{ Ϫ/ ˍ<5?Yeag*7kx$d? h"4<+r]0#0vQF͛bfkelmϴUXM *EpO{ U@:"1MsMm<_S~doC0jQ/gNw^Dbp~dOզXt4f!dPpIoJc̚8 7 n (+آ; 8c WOhy e s>(fLXN0&ȑvNe>x1Q^wfE Ѵi<𳡹؍!"lJΜp ֦~j.;NG3m_bsB@@0b[F(sløo2r1չ:g渙%:m3976u'@/U9ݺ/&x&sC'\sdyǡ`E- y|{®K& *3tscuci|Y#;mHEY4%2sh%U>i*_Slr1xS-‡$[-Xğ̉{?/;d(=W|$ET^l~B:KK 0C*8nN(8 0.>]prWNtbZQ{ܺd; ROr-:(|7PK XC3-33"EPUB/img/ElementaryMathExample.pngUT V[iR$Tux PNG  IHDRR3 pHYsod vpAgR!Ǵ\IDATx1 Cp [ZZqAq1o X *"%tlNENeiĊl=SrCwiҩȮ/[iPc c^Du#øVyR̋z^Ȉ:, =gƕ9A"=C['Iȇ9xEV"`lu _NJ/*!U}΀nKaJhIAơ!UHCё] / fO<|KzRVdE!7O]{[gB" ]|6K/#φ-]HcOfPa "+g^4B3!*Bj;ևkHsexOս5h Cc7!%eHL,`fHBO/-e_ Em%bBߩYH"C*%Ly&#ɑg2y.@#%Hr䙎Gː3I<3ɂJ<fMȊY$Β7h:1sO¯z.Yβ \,+r${YJTɌL,ʁ̢,ʁRudYEQY:QEe&<24Jā,ߩxE~82uRYT@s\t]" i#SUޞ.zTXtcreate-datex320505 1221246020Afߴ.zTXtmodify-datex320505 1024206020A BoIENDB`PK7h9E{:H EPUB/package.opfUT )$T)$Tux Wn6>OZ+bUn GE\bL*Iy7詽koC%!%-we` àH~|ÙB; Wr#&ʸ\MC~%dfskiV@e8oCU.n*X3&-_pgN^$#ԴӌJ Ϛѐ Vք0tWqF>ijb6VV2cM-O0p%͘'LI ;ѹWDijE!v[5:|^ߜo.󦶉[[@:~nO/ާ D &O1%3-**D`JP.< `ɈET_p9k6;5nw' z ,nLO'29'-뉛xtޱ'-h$yO)N4Go3" vb9e T3nŲۂC"@6:Fuiԭ bL1>q"VǨMaIJ{쮸 V@p^AtzۖO 4'uҝu9Mv?Av*r|P.DŽu~|ZbF! 3-C6 I:O~YJ$_@X xݲš+(g>c quY Nkc 5 %ۦ>dp ^U넛-*a}5Zπp&0?[ﯳ-I QDl}jmj6k/>\PZf-_afb5ڱq 0Ήaro '^8--ozXlJ;v 0x[u ]K 3b7=I]MBϹtxqg n> c W LzaoArPK 1Q E META-INF/UT 6S$Tux PKXC\ˬMETA-INF/container.xmlUT V[iR$Tux UA 0E=Eѝkz1j0 M*z{JͣNCV/װi gLxNƁ`0LvF"q+n쉳ycf>GS(A$w>PzFuce|;:*Ze~F10O9.?"c<)^PK XCoa,mimetypeUT V[iR$Tux application/epub+zipPK 7h9EAEPUB/UT)$Tux PK 1Q E A?EPUB/css/UT6Sux PKXC5EPUB/css/base.cssUTV[iRux PKDX~EPUB/css/svg.cssUTXSux PKK3DnCepEPUB/css/math.cssUT>1Rux PK h9E AEPUB/xhtml/UT$Tux PKXCjN2=g !EPUB/xhtml/nav.xhtmlUTV[iRux PK|g9E9s T# EPUB/xhtml/content-mathml-001.xhtmlUT$Tux PKh9E #EPUB/xhtml/content-switch-001.xhtmlUT$Tux PKXC_ EPUB/xhtml/front.xhtmlUTV[iRux PK 1Q E AEPUB/img/UT6Sux PKXC6%L',4 EPUB/img/multiscripts_and_greek_alphabet.pngUTV[iRux PKXC`P<dFEPUB/img/check.gifUTV[iRux PK XClKEPUB/img/nonimage.xyzUTV[iRux PK XC VKEPUB/img/check.pngUTV[iRux PKXCXF89VEPUB/img/Skype_logo.pngUTV[iRux PK XC 8EPUB/img/fallback.pngUTV[iRux PKXC=UvEPUB/img/complex_number.pngUTV[iRux PKXC%&e EPUB/img/check.jpgUTV[iRux PKXCqԷEPUB/img/cichons_diagram.pngUTV[iRux PKXCܨQW EPUB/img/Maghreb1.pngUTV[iRux PKXC]7EPUB/img/circle.jpgUTV[iRux PK XC3-33"_EPUB/img/ElementaryMathExample.pngUTV[iRux PK7h9E{:H EPUB/package.opfUT)$Tux PK 1Q E AMETA-INF/UT6Sux PKXC\ˬYMETA-INF/container.xmlUTV[iRux PK XCoa,UmimetypeUTV[iRux PK pandoc-1.16.0.2~dfsg/tests/epub/wasteland.native0000644000000000000000000040102312645626062020243 0ustar rootroot[Para [Image ("",[],[]) [] ("wasteland-cover.jpg","")] ,Para [Span ("wasteland-content.xhtml",[],[]) []] ,Div ("wasteland-content.xhtml#frontmatter",["section"],[("type","frontmatter")]) [] ,Div ("wasteland-content.xhtml#bodymatter",["section"],[("type","bodymatter")]) [Div ("wasteland-content.xhtml#ch1",["section"],[]) [Header 2 ("",[],[]) [Str "I.",Space,Str "THE",Space,Str "BURIAL",Space,Str "OF",Space,Str "THE",Space,Str "DEAD"] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "April",Space,Str "is",Space,Str "the",Space,Str "cruellest",Space,Str "month,",Space,Str "breeding"]] ,Div ("",[],[]) [Plain [Str "Lilacs",Space,Str "out",Space,Str "of",Space,Str "the",Space,Str "dead",Space,Str "land,",Space,Str "mixing"]] ,Div ("",[],[]) [Plain [Str "Memory",Space,Str "and",Space,Str "desire,",Space,Str "stirring"]] ,Div ("",[],[]) [Plain [Str "Dull",Space,Str "roots",Space,Str "with",Space,Str "spring",Space,Str "rain."]] ,Div ("",[],[]) [Plain [Str "Winter",Space,Str "kept",Space,Str "us",Space,Str "warm,",Space,Str "covering"]] ,Div ("",[],[]) [Plain [Str "Earth",Space,Str "in",Space,Str "forgetful",Space,Str "snow,",Space,Str "feeding"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "little",Space,Str "life",Space,Str "with",Space,Str "dried",Space,Str "tubers."]] ,Div ("",[],[]) [Plain [Str "Summer",Space,Str "surprised",Space,Str "us,",Space,Str "coming",Space,Str "over",Space,Str "the",Space,Str "Starnbergersee"]] ,Div ("",[],[]) [Plain [Str "With",Space,Str "a",Space,Str "shower",Space,Str "of",Space,Str "rain;",Space,Str "we",Space,Str "stopped",Space,Str "in",Space,Str "the",Space,Str "colonnade,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "went",Space,Str "on",Space,Str "in",Space,Str "sunlight,",Space,Str "into",Space,Str "the",Space,Str "Hofgarten,",Span ("",["lnum"],[]) [Str "10"]]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "drank",Space,Str "coffee,",Space,Str "and",Space,Str "talked",Space,Str "for",Space,Str "an",Space,Str "hour."]] ,Div ("",[],[("lang","de")]) [Plain [Str "Bin",Space,Str "gar",Space,Str "keine",Space,Str "Russin,",Space,Str "stamm'",Space,Str "aus",Space,Str "Litauen,",Space,Str "echt",SoftBreak,Str "deutsch."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "when",Space,Str "we",Space,Str "were",Space,Str "children,",Space,Str "staying",Space,Str "at",Space,Str "the",Space,Str "archduke's,"]] ,Div ("",[],[]) [Plain [Str "My",Space,Str "cousin's,",Space,Str "he",Space,Str "took",Space,Str "me",Space,Str "out",Space,Str "on",Space,Str "a",Space,Str "sled,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "I",Space,Str "was",Space,Str "frightened.",Space,Str "He",Space,Str "said,",Space,Str "Marie,"]] ,Div ("",[],[]) [Plain [Str "Marie,",Space,Str "hold",Space,Str "on",Space,Str "tight.",Space,Str "And",Space,Str "down",Space,Str "we",Space,Str "went."]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "the",Space,Str "mountains,",Space,Str "there",Space,Str "you",Space,Str "feel",Space,Str "free."]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "read,",Space,Str "much",Space,Str "of",Space,Str "the",Space,Str "night,",Space,Str "and",Space,Str "go",Space,Str "south",Space,Str "in",Space,Str "the",Space,Str "winter."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "What",Space,Str "are",Space,Str "the",Space,Str "roots",Space,Str "that",Space,Str "clutch,",Space,Str "what",Space,Str "branches",Space,Str "grow"]] ,Div ("wasteland-content.xhtml#ln20",[],[]) [Plain [Str "Out",Space,Str "of",Space,Str "this",Space,Str "stony",Space,Str "rubbish?",Space,Str "Son",Space,Str "of",Space,Str "man,",Note [Para [Link ("",[],[]) [Str "Line",Space,Str "20."] ("#wasteland-content.xhtml#ln20",""),Space,Str "Cf.",Space,Str "Ezekiel",Space,Str "2:1."]]] ,Div ("",[],[]) [Plain [Str "You",Space,Str "cannot",Space,Str "say,",Space,Str "or",Space,Str "guess,",Space,Str "for",Space,Str "you",Space,Str "know",Space,Str "only"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "heap",Space,Str "of",Space,Str "broken",Space,Str "images,",Space,Str "where",Space,Str "the",Space,Str "sun",Space,Str "beats,"]] ,Div ("wasteland-content.xhtml#ln23",[],[]) [Plain [Str "And",Space,Str "the",Space,Str "dead",Space,Str "tree",Space,Str "gives",Space,Str "no",Space,Str "shelter,",Space,Str "the",Space,Str "cricket",Space,Str "no",Space,Str "relief,",Note [Para [Link ("",[],[]) [Str "23."] ("#wasteland-content.xhtml#ln23",""),Space,Str "Cf.",Space,Str "Ecclesiastes",Space,Str "12:5."]]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "the",Space,Str "dry",Space,Str "stone",Space,Str "no",Space,Str "sound",Space,Str "of",Space,Str "water.",Space,Str "Only"]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "is",Space,Str "shadow",Space,Str "under",Space,Str "this",Space,Str "red",Space,Str "rock,"]] ,Div ("",[],[]) [Plain [Str "(Come",Space,Str "in",Space,Str "under",Space,Str "the",Space,Str "shadow",Space,Str "of",Space,Str "this",Space,Str "red",Space,Str "rock),"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "I",Space,Str "will",Space,Str "show",Space,Str "you",Space,Str "something",Space,Str "different",Space,Str "from",Space,Str "either"]] ,Div ("",[],[]) [Plain [Str "Your",Space,Str "shadow",Space,Str "at",Space,Str "morning",Space,Str "striding",Space,Str "behind",Space,Str "you"]] ,Div ("",[],[]) [Plain [Str "Or",Space,Str "your",Space,Str "shadow",Space,Str "at",Space,Str "evening",Space,Str "rising",Space,Str "to",Space,Str "meet",Space,Str "you;"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "will",Space,Str "show",Space,Str "you",Space,Str "fear",Space,Str "in",Space,Str "a",Space,Str "handful",Space,Str "of",Space,Str "dust.",Span ("",["lnum"],[]) [Str "30"]]] ,BlockQuote [Div ("",[],[]) [Div ("wasteland-content.xhtml#ln31",[],[]) [Plain [Str "Frisch",Space,Str "weht",Space,Str "der",Space,Str "Wind",Note [Para [Link ("",[],[]) [Str "31."] ("#wasteland-content.xhtml#ln31",""),Space,Str "V.",Space,Str "Tristan",Space,Str "und",Space,Str "Isolde,",Space,Str "i,",Space,Str "verses",Space,Str "5-8."]]] ,Div ("",[],[]) [Plain [Str "Der",Space,Str "Heimat",Space,Str "zu"]] ,Div ("",[],[]) [Plain [Str "Mein",Space,Str "Irisch",Space,Str "Kind,"]] ,Div ("",[],[]) [Plain [Str "Wo",Space,Str "weilest",Space,Str "du?"]]] ,RawBlock (Format "html") "" ,Div ("",[],[]) [Plain [Str "\"You",Space,Str "gave",Space,Str "me",Space,Str "hyacinths",Space,Str "first",Space,Str "a",Space,Str "year",Space,Str "ago;"]] ,Div ("",[],[]) [Plain [Str "\"They",Space,Str "called",Space,Str "me",Space,Str "the",Space,Str "hyacinth",Space,Str "girl.\""]] ,Div ("",[],[]) [Plain [Str "\8213Yet",Space,Str "when",Space,Str "we",Space,Str "came",Space,Str "back,",Space,Str "late,",Space,Str "from",Space,Str "the",Space,Str "Hyacinth",SoftBreak,Str "garden,"]] ,Div ("",[],[]) [Plain [Str "Your",Space,Str "arms",Space,Str "full,",Space,Str "and",Space,Str "your",Space,Str "hair",Space,Str "wet,",Space,Str "I",Space,Str "could",Space,Str "not"]] ,Div ("",[],[]) [Plain [Str "Speak,",Space,Str "and",Space,Str "my",Space,Str "eyes",Space,Str "failed,",Space,Str "I",Space,Str "was",Space,Str "neither"]] ,Div ("",[],[]) [Plain [Str "Living",Space,Str "nor",Space,Str "dead,",Space,Str "and",Space,Str "I",Space,Str "knew",Space,Str "nothing,",Span ("",["lnum"],[]) [Str "40"]]] ,Div ("",[],[]) [Plain [Str "Looking",Space,Str "into",Space,Str "the",Space,Str "heart",Space,Str "of",Space,Str "light,",Space,Str "the",Space,Str "silence."]] ,Div ("wasteland-content.xhtml#ln42",[],[("lang","de")]) [Plain [Emph [Str "Od'",Space,Str "und",Space,Str "leer",Space,Str "das",Space,Str "Meer"],Str ".",Note [Para [Link ("",[],[]) [Str "42."] ("#wasteland-content.xhtml#ln42",""),Space,Str "Id.",Space,Str "iii,",Space,Str "verse",Space,Str "24."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Madame",Space,Str "Sosostris,",Space,Str "famous",Space,Str "clairvoyante,"]] ,Div ("",[],[]) [Plain [Str "Had",Space,Str "a",Space,Str "bad",Space,Str "cold,",Space,Str "nevertheless"]] ,Div ("",[],[]) [Plain [Str "Is",Space,Str "known",Space,Str "to",Space,Str "be",Space,Str "the",Space,Str "wisest",Space,Str "woman",Space,Str "in",Space,Str "Europe,"]] ,Div ("wasteland-content.xhtml#ln46",[],[]) [Plain [Str "With",Space,Str "a",Space,Str "wicked",Space,Str "pack",Space,Str "of",Space,Str "cards.",Space,Str "Here,",Space,Str "said",Space,Str "she,",Note [Para [Link ("",[],[]) [Str "46."] ("#wasteland-content.xhtml#ln46",""),Space,Str "I",Space,Str "am",Space,Str "not",Space,Str "familiar",Space,Str "with",Space,Str "the",Space,Str "exact",Space,Str "constitution",Space,Str "of",Space,Str "the",Space,Str "Tarot",Space,Str "pack",Space,Str "of",SoftBreak,Str "cards,",Space,Str "from",Space,Str "which",Space,Str "I",Space,Str "have",Space,Str "obviously",Space,Str "departed",Space,Str "to",Space,Str "suit",Space,Str "my",Space,Str "own",Space,Str "convenience.",SoftBreak,Str "The",Space,Str "Hanged",Space,Str "Man,",Space,Str "a",Space,Str "member",Space,Str "of",Space,Str "the",Space,Str "traditional",Space,Str "pack,",Space,Str "fits",Space,Str "my",Space,Str "purpose",Space,Str "in",Space,Str "two",SoftBreak,Str "ways:",Space,Str "because",Space,Str "he",Space,Str "is",Space,Str "associated",Space,Str "in",Space,Str "my",Space,Str "mind",Space,Str "with",Space,Str "the",Space,Str "Hanged",Space,Str "God",Space,Str "of",Space,Str "Frazer,",SoftBreak,Str "and",Space,Str "because",Space,Str "I",Space,Str "associate",Space,Str "him",Space,Str "with",Space,Str "the",Space,Str "hooded",Space,Str "figure",Space,Str "in",Space,Str "the",Space,Str "passage",Space,Str "of",Space,Str "the",SoftBreak,Str "disciples",Space,Str "to",Space,Str "Emmaus",Space,Str "in",Space,Str "Part",Space,Str "V.",Space,Str "The",Space,Str "Phoenician",Space,Str "Sailor",Space,Str "and",Space,Str "the",Space,Str "Merchant",SoftBreak,Str "appear",Space,Str "later;",Space,Str "also",Space,Str "the",Space,Str "\"crowds",Space,Str "of",Space,Str "people,\"",Space,Str "and",Space,Str "Death",Space,Str "by",Space,Str "Water",Space,Str "is",SoftBreak,Str "executed",Space,Str "in",Space,Str "Part",Space,Str "IV.",Space,Str "The",Space,Str "Man",Space,Str "with",Space,Str "Three",Space,Str "Staves",Space,Str "(an",Space,Str "authentic",Space,Str "member",Space,Str "of",SoftBreak,Str "the",Space,Str "Tarot",Space,Str "pack)",Space,Str "I",Space,Str "associate,",Space,Str "quite",Space,Str "arbitrarily,",Space,Str "with",Space,Str "the",Space,Str "Fisher",Space,Str "King",SoftBreak,Str "himself."]]] ,Div ("",[],[]) [Plain [Str "Is",Space,Str "your",Space,Str "card,",Space,Str "the",Space,Str "drowned",Space,Str "Phoenician",Space,Str "Sailor,"]] ,Div ("",[],[]) [Plain [Str "(Those",Space,Str "are",Space,Str "pearls",Space,Str "that",Space,Str "were",Space,Str "his",Space,Str "eyes.",Space,Str "Look!)"]] ,Div ("",[],[]) [Plain [Str "Here",Space,Str "is",Space,Str "Belladonna,",Space,Str "the",Space,Str "Lady",Space,Str "of",Space,Str "the",Space,Str "Rocks,"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "lady",Space,Str "of",Space,Str "situations.",Span ("",["lnum"],[]) [Str "50"]]] ,Div ("",[],[]) [Plain [Str "Here",Space,Str "is",Space,Str "the",Space,Str "man",Space,Str "with",Space,Str "three",Space,Str "staves,",Space,Str "and",Space,Str "here",Space,Str "the",Space,Str "Wheel,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "here",Space,Str "is",Space,Str "the",Space,Str "one-eyed",Space,Str "merchant,",Space,Str "and",Space,Str "this",Space,Str "card,"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "is",Space,Str "blank,",Space,Str "is",Space,Str "something",Space,Str "he",Space,Str "carries",Space,Str "on",Space,Str "his",Space,Str "back,"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "I",Space,Str "am",Space,Str "forbidden",Space,Str "to",Space,Str "see.",Space,Str "I",Space,Str "do",Space,Str "not",Space,Str "find"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "Hanged",Space,Str "Man.",Space,Str "Fear",Space,Str "death",Space,Str "by",Space,Str "water."]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "see",Space,Str "crowds",Space,Str "of",Space,Str "people,",Space,Str "walking",Space,Str "round",Space,Str "in",Space,Str "a",Space,Str "ring."]] ,Div ("",[],[]) [Plain [Str "Thank",Space,Str "you.",Space,Str "If",Space,Str "you",Space,Str "see",Space,Str "dear",Space,Str "Mrs.",Space,Str "Equitone,"]] ,Div ("",[],[]) [Plain [Str "Tell",Space,Str "her",Space,Str "I",Space,Str "bring",Space,Str "the",Space,Str "horoscope",Space,Str "myself:"]] ,Div ("",[],[]) [Plain [Str "One",Space,Str "must",Space,Str "be",Space,Str "so",Space,Str "careful",Space,Str "these",Space,Str "days."]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln60",[],[]) [Plain [Str "Unreal",Space,Str "City,",Note [Para [Link ("",[],[]) [Str "60."] ("#wasteland-content.xhtml#ln60",""),Space,Str "Cf.",Space,Str "Baudelaire:"],BlockQuote [Para [Str "\"Fourmillante",Space,Str "cite;,",Space,Str "cite;",Space,Str "pleine",Space,Str "de",Space,Str "reves,",LineBreak,Str "Ou",Space,Str "le",Space,Str "spectre",Space,Str "en",SoftBreak,Str "plein",Space,Str "jour",Space,Str "raccroche",Space,Str "le",Space,Str "passant.\""]]]] ,Div ("",[],[]) [Plain [Str "Under",Space,Str "the",Space,Str "brown",Space,Str "fog",Space,Str "of",Space,Str "a",Space,Str "winter",Space,Str "dawn,"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "crowd",Space,Str "flowed",Space,Str "over",Space,Str "London",Space,Str "Bridge,",Space,Str "so",Space,Str "many,"]] ,Div ("wasteland-content.xhtml#ln63",[],[]) [Plain [Str "I",Space,Str "had",Space,Str "not",Space,Str "thought",Space,Str "death",Space,Str "had",Space,Str "undone",Space,Str "so",Space,Str "many.",Note [Para [Link ("",[],[]) [Str "63."] ("#wasteland-content.xhtml#ln63",""),Space,Str "Cf.",Space,Str "Inferno,",Space,Str "iii.",Space,Str "55-7."],BlockQuote [Para [Str "\"si",Space,Str "lunga",Space,Str "tratta",LineBreak,Str "di",Space,Str "gente,",Space,Str "ch'io",Space,Str "non",Space,Str "avrei",Space,Str "mai",Space,Str "creduto",LineBreak,Str "che",SoftBreak,Str "morte",Space,Str "tanta",Space,Str "n'avesse",Space,Str "disfatta.\""]]]] ,Div ("wasteland-content.xhtml#ln64",[],[]) [Plain [Str "Sighs,",Space,Str "short",Space,Str "and",Space,Str "infrequent,",Space,Str "were",Space,Str "exhaled,",Note [Para [Link ("",[],[]) [Str "64."] ("#wasteland-content.xhtml#ln64",""),Space,Str "Cf.",Space,Str "Inferno,",Space,Str "iv.",Space,Str "25-7:"],BlockQuote [Para [Str "\"Quivi,",Space,Str "secondo",Space,Str "che",Space,Str "per",Space,Str "ascoltahre,",LineBreak,Str "\"non",Space,Str "avea",Space,Str "pianto,",Space,Str "ma'",Space,Str "che",Space,Str "di",SoftBreak,Str "sospiri,",LineBreak,Str "\"che",Space,Str "l'aura",Space,Str "eterna",Space,Str "facevan",Space,Str "tremare.\""]]]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "each",Space,Str "man",Space,Str "fixed",Space,Str "his",Space,Str "eyes",Space,Str "before",Space,Str "his",Space,Str "feet."]] ,Div ("",[],[]) [Plain [Str "Flowed",Space,Str "up",Space,Str "the",Space,Str "hill",Space,Str "and",Space,Str "down",Space,Str "King",Space,Str "William",Space,Str "Street,"]] ,Div ("",[],[]) [Plain [Str "To",Space,Str "where",Space,Str "Saint",Space,Str "Mary",Space,Str "Woolnoth",Space,Str "kept",Space,Str "the",Space,Str "hours"]] ,Div ("wasteland-content.xhtml#ln68",[],[]) [Plain [Str "With",Space,Str "a",Space,Str "dead",Space,Str "sound",Space,Str "on",Space,Str "the",Space,Str "final",Space,Str "stroke",Space,Str "of",Space,Str "nine.",Note [Para [Link ("",[],[]) [Str "68."] ("#wasteland-content.xhtml#ln68",""),Space,Str "A",Space,Str "phenomenon",Space,Str "which",Space,Str "I",Space,Str "have",Space,Str "often",Space,Str "noticed."]]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "I",Space,Str "saw",Space,Str "one",Space,Str "I",Space,Str "knew,",Space,Str "and",Space,Str "stopped",Space,Str "him,",Space,Str "crying",SoftBreak,Str "\"Stetson!"]] ,Div ("",[],[]) [Plain [Str "\"You",Space,Str "who",Space,Str "were",Space,Str "with",Space,Str "me",Space,Str "in",Space,Str "the",Space,Str "ships",Space,Str "at",Space,Str "Mylae!",Span ("",["lnum"],[]) [Str "70"]]] ,Div ("",[],[]) [Plain [Str "\"That",Space,Str "corpse",Space,Str "you",Space,Str "planted",Space,Str "last",Space,Str "year",Space,Str "in",Space,Str "your",Space,Str "garden,"]] ,Div ("",[],[]) [Plain [Str "\"Has",Space,Str "it",Space,Str "begun",Space,Str "to",Space,Str "sprout?",Space,Str "Will",Space,Str "it",Space,Str "bloom",Space,Str "this",Space,Str "year?"]] ,Div ("",[],[]) [Plain [Str "\"Or",Space,Str "has",Space,Str "the",Space,Str "sudden",Space,Str "frost",Space,Str "disturbed",Space,Str "its",Space,Str "bed?"]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln74",[],[]) [Plain [Str "\"Oh",Space,Str "keep",Space,Str "the",Space,Str "Dog",Space,Str "far",Space,Str "hence,",Space,Str "that's",Space,Str "friend",Space,Str "to",Space,Str "men,",Note [Para [Link ("",[],[]) [Str "74."] ("#wasteland-content.xhtml#ln74",""),Space,Str "Cf.",Space,Str "the",Space,Str "Dirge",Space,Str "in",Space,Str "Webster's",Space,Str "White",Space,Str "Devil",Space,Str "."]]] ,Div ("",[],[]) [Plain [Str "\"Or",Space,Str "with",Space,Str "his",Space,Str "nails",Space,Str "he'll",Space,Str "dig",Space,Str "it",Space,Str "up",Space,Str "again!"]] ,Div ("wasteland-content.xhtml#ln76",[],[]) [Plain [Str "\"You!",Space,Span ("",[],[("lang","fr")]) [Str "hypocrite",Space,Str "lecteur!",Space,Str "-",Space,Str "mon",Space,Str "semblable,",Space,Str "-",SoftBreak,Str "mon",Space,Str "frere"],Space,Str "!\"",Note [Para [Link ("",[],[]) [Str "76."] ("#wasteland-content.xhtml#ln76",""),Space,Str "V.",Space,Str "Baudelaire,",Space,Str "Preface",Space,Str "to",Space,Str "Fleurs",Space,Str "du",Space,Str "Mal."]]] ,Div ("wasteland-content.xhtml#ch2",["section"],[]) [Header 2 ("",[],[]) [Str "II.",Space,Str "A",Space,Str "GAME",Space,Str "OF",Space,Str "CHESS"] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln77",[],[]) [Plain [Str "The",Space,Str "Chair",Space,Str "she",Space,Str "sat",Space,Str "in,",Space,Str "like",Space,Str "a",Space,Str "burnished",Space,Str "throne,",Note [Para [Link ("",[],[]) [Str "77."] ("#wasteland-content.xhtml#ln77",""),Space,Str "Cf.",Space,Str "Antony",Space,Str "and",Space,Str "Cleopatra,",Space,Str "II.",Space,Str "ii.,",Space,Str "l.",Space,Str "190."]]] ,Div ("",[],[]) [Plain [Str "Glowed",Space,Str "on",Space,Str "the",Space,Str "marble,",Space,Str "where",Space,Str "the",Space,Str "glass"]] ,Div ("",[],[]) [Plain [Str "Held",Space,Str "up",Space,Str "by",Space,Str "standards",Space,Str "wrought",Space,Str "with",Space,Str "fruited",Space,Str "vines"]] ,Div ("",[],[]) [Plain [Str "From",Space,Str "which",Space,Str "a",Space,Str "golden",Space,Str "Cupidon",Space,Str "peeped",Space,Str "out",Span ("",["lnum"],[]) [Str "80"]]] ,Div ("",[],[]) [Plain [Str "(Another",Space,Str "hid",Space,Str "his",Space,Str "eyes",Space,Str "behind",Space,Str "his",Space,Str "wing)"]] ,Div ("",[],[]) [Plain [Str "Doubled",Space,Str "the",Space,Str "flames",Space,Str "of",Space,Str "sevenbranched",Space,Str "candelabra"]] ,Div ("",[],[]) [Plain [Str "Reflecting",Space,Str "light",Space,Str "upon",Space,Str "the",Space,Str "table",Space,Str "as"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "glitter",Space,Str "of",Space,Str "her",Space,Str "jewels",Space,Str "rose",Space,Str "to",Space,Str "meet",Space,Str "it,"]] ,Div ("",[],[]) [Plain [Str "From",Space,Str "satin",Space,Str "cases",Space,Str "poured",Space,Str "in",Space,Str "rich",Space,Str "profusion;"]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "vials",Space,Str "of",Space,Str "ivory",Space,Str "and",Space,Str "coloured",Space,Str "glass"]] ,Div ("",[],[]) [Plain [Str "Unstoppered,",Space,Str "lurked",Space,Str "her",Space,Str "strange",Space,Str "synthetic",Space,Str "perfumes,"]] ,Div ("",[],[]) [Plain [Str "Unguent,",Space,Str "powdered,",Space,Str "or",Space,Str "liquid",Space,Str "-",Space,Str "troubled,",Space,Str "confused"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "drowned",Space,Str "the",Space,Str "sense",Space,Str "in",Space,Str "odours;",Space,Str "stirred",Space,Str "by",Space,Str "the",Space,Str "air"]] ,Div ("",[],[]) [Plain [Str "That",Space,Str "freshened",Space,Str "from",Space,Str "the",Space,Str "window,",Space,Str "these",Space,Str "ascended",Span ("",["lnum"],[]) [Str "90"]]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "fattening",Space,Str "the",Space,Str "prolonged",Space,Str "candle-flames,"]] ,Div ("wasteland-content.xhtml#ln92",[],[]) [Plain [Str "Flung",Space,Str "their",Space,Str "smoke",Space,Str "into",Space,Str "the",Space,Str "laquearia,",Note [Para [Link ("",[],[]) [Str "92."] ("#wasteland-content.xhtml#ln92",""),Space,Str "Laquearia.",Space,Str "V.",Space,Str "Aeneid,",Space,Str "I.",Space,Str "726:"],BlockQuote [Para [Str "dependent",Space,Str "lychni",Space,Str "laquearibus",Space,Str "aureis",Space,Str "incensi,",Space,Str "et",Space,Str "noctem",SoftBreak,Str "flammis",LineBreak,Str "funalia",Space,Str "vincunt."]]]] ,Div ("",[],[]) [Plain [Str "Stirring",Space,Str "the",Space,Str "pattern",Space,Str "on",Space,Str "the",Space,Str "coffered",Space,Str "ceiling."]] ,Div ("",[],[]) [Plain [Str "Huge",Space,Str "sea-wood",Space,Str "fed",Space,Str "with",Space,Str "copper"]] ,Div ("",[],[]) [Plain [Str "Burned",Space,Str "green",Space,Str "and",Space,Str "orange,",Space,Str "framed",Space,Str "by",Space,Str "the",Space,Str "coloured",Space,Str "stone,"]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "which",Space,Str "sad",Space,Str "light",Space,Str "a",Space,Str "carved",Space,Str "dolphin",Space,Str "swam."]] ,Div ("",[],[]) [Plain [Str "Above",Space,Str "the",Space,Str "antique",Space,Str "mantel",Space,Str "was",Space,Str "displayed"]] ,Div ("wasteland-content.xhtml#ln98",[],[]) [Plain [Str "As",Space,Str "though",Space,Str "a",Space,Str "window",Space,Str "gave",Space,Str "upon",Space,Str "the",Space,Str "sylvan",Space,Str "scene",Note [Para [Link ("",[],[]) [Str "98."] ("#wasteland-content.xhtml#ln98",""),Space,Str "Sylvan",Space,Str "scene.",Space,Str "V.",Space,Str "Milton,",Space,Str "Paradise",Space,Str "Lost,",Space,Str "iv.",Space,Str "140."]]] ,Div ("wasteland-content.xhtml#ln99",[],[]) [Plain [Str "The",Space,Str "change",Space,Str "of",Space,Str "Philomel,",Space,Str "by",Space,Str "the",Space,Str "barbarous",Space,Str "king",Note [Para [Link ("",[],[]) [Str "99."] ("#wasteland-content.xhtml#ln99",""),Space,Str "V.",Space,Str "Ovid,",Space,Str "Metamorphoses,",Space,Str "vi,",Space,Str "Philomela."]]] ,Div ("wasteland-content.xhtml#ln100",[],[]) [Plain [Str "So",Space,Str "rudely",Space,Str "forced;",Space,Str "yet",Space,Str "there",Space,Str "the",Space,Str "nightingale",Note [Para [Link ("",[],[]) [Str "100."] ("#wasteland-content.xhtml#ln100",""),Space,Str "Cf.",Space,Str "Part",Space,Str "III,",Space,Str "l.",Space,Str "204."]]] ,Div ("",[],[]) [Plain [Str "Filled",Space,Str "all",Space,Str "the",Space,Str "desert",Space,Str "with",Space,Str "inviolable",Space,Str "voice"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "still",Space,Str "she",Space,Str "cried,",Space,Str "and",Space,Str "still",Space,Str "the",Space,Str "world",Space,Str "pursues,"]] ,Div ("",[],[]) [Plain [Str "\"Jug",Space,Str "Jug\"",Space,Str "to",Space,Str "dirty",Space,Str "ears."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "other",Space,Str "withered",Space,Str "stumps",Space,Str "of",Space,Str "time"]] ,Div ("",[],[]) [Plain [Str "Were",Space,Str "told",Space,Str "upon",Space,Str "the",Space,Str "walls;",Space,Str "staring",Space,Str "forms"]] ,Div ("",[],[]) [Plain [Str "Leaned",Space,Str "out,",Space,Str "leaning,",Space,Str "hushing",Space,Str "the",Space,Str "room",Space,Str "enclosed."]] ,Div ("",[],[]) [Plain [Str "Footsteps",Space,Str "shuffled",Space,Str "on",Space,Str "the",Space,Str "stair."]] ,Div ("",[],[]) [Plain [Str "Under",Space,Str "the",Space,Str "firelight,",Space,Str "under",Space,Str "the",Space,Str "brush,",Space,Str "her",Space,Str "hair"]] ,Div ("",[],[]) [Plain [Str "Spread",Space,Str "out",Space,Str "in",Space,Str "fiery",Space,Str "points"]] ,Div ("",[],[]) [Plain [Str "Glowed",Space,Str "into",Space,Str "words,",Space,Str "then",Space,Str "would",Space,Str "be",Space,Str "savagely",Space,Str "still.",Span ("",["lnum"],[]) [Str "110"]]]] ,Div ("",["linegroup"],[]) [Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "\"My",Space,Str "nerves",Space,Str "are",Space,Str "bad",Space,Str "to-night.",Space,Str "Yes,",Space,Str "bad.",Space,Str "Stay",Space,Str "with",Space,Str "me."]] ,Div ("",[],[]) [Plain [Str "\"Speak",Space,Str "to",Space,Str "me.",Space,Str "Why",Space,Str "do",Space,Str "you",Space,Str "never",Space,Str "speak.",Space,Str "Speak."]] ,Div ("",[],[]) [Plain [Str "\"What",Space,Str "are",Space,Str "you",Space,Str "thinking",Space,Str "of?",Space,Str "What",Space,Str "thinking?",Space,Str "What?"]] ,Div ("",[],[]) [Plain [Str "\"I",Space,Str "never",Space,Str "know",Space,Str "what",Space,Str "you",Space,Str "are",Space,Str "thinking.",Space,Str "Think.\""]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln115",[],[]) [Plain [Str "I",Space,Str "think",Space,Str "we",Space,Str "are",Space,Str "in",Space,Str "rats'",Space,Str "alley",Note [Para [Link ("",[],[]) [Str "115."] ("#wasteland-content.xhtml#ln115",""),Space,Str "Cf.",Space,Str "Part",Space,Str "III,",Space,Str "l.",Space,Str "195."]]] ,Div ("",[],[]) [Plain [Str "Where",Space,Str "the",Space,Str "dead",Space,Str "men",Space,Str "lost",Space,Str "their",Space,Str "bones."]]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "\"What",Space,Str "is",Space,Str "that",Space,Str "noise?\""]] ,Div ("wasteland-content.xhtml#ln118",["indent"],[]) [Plain [Str "The",Space,Str "wind",Space,Str "under",Space,Str "the",Space,Str "door.",Note [Para [Link ("",[],[]) [Str "118."] ("#wasteland-content.xhtml#ln118",""),Space,Str "Cf.",Space,Str "Webster:"],BlockQuote [Para [Str "\"Is",Space,Str "the",Space,Str "wind",Space,Str "in",Space,Str "that",Space,Str "door",Space,Str "still?\""]]]] ,Div ("",[],[]) [Plain [Str "\"What",Space,Str "is",Space,Str "that",Space,Str "noise",Space,Str "now?",Space,Str "What",Space,Str "is",Space,Str "the",Space,Str "wind",Space,Str "doing?\""]] ,Div ("",["indent"],[]) [Plain [Str "Nothing",Space,Str "again",Space,Str "nothing.",Span ("",["lnum"],[]) [Str "120"]]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "\"Do"]] ,Div ("",[],[]) [Plain [Str "\"You",Space,Str "know",Space,Str "nothing?",Space,Str "Do",Space,Str "you",Space,Str "see",Space,Str "nothing?",Space,Str "Do",Space,Str "you",Space,Str "remember"]] ,Div ("",[],[]) [Plain [Str "\"Nothing?\""]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "I",Space,Str "remember"]] ,Div ("",[],[]) [Plain [Str "Those",Space,Str "are",Space,Str "pearls",Space,Str "that",Space,Str "were",Space,Str "his",Space,Str "eyes."]] ,Div ("wasteland-content.xhtml#ln126",[],[]) [Plain [Str "\"Are",Space,Str "you",Space,Str "alive,",Space,Str "or",Space,Str "not?",Space,Str "Is",Space,Str "there",Space,Str "nothing",Space,Str "in",Space,Str "your",Space,Str "head?\"",Note [Para [Link ("",[],[]) [Str "126."] ("#wasteland-content.xhtml#ln126",""),Space,Str "Cf.",Space,Str "Part",Space,Str "I,",Space,Str "l.",Space,Str "37,",Space,Str "48."]]] ,Div ("",[],[]) [Plain [Str "But"]] ,Div ("",[],[]) [Plain [Str "O",Space,Str "O",Space,Str "O",Space,Str "O",Space,Str "that",Space,Str "Shakespeherian",Space,Str "Rag\8213"]] ,Div ("",[],[]) [Plain [Str "It's",Space,Str "so",Space,Str "elegant"]] ,Div ("",[],[]) [Plain [Str "So",Space,Str "intelligent",Span ("",["lnum"],[]) [Str "130"]]] ,Div ("",[],[]) [Plain [Str "\"What",Space,Str "shall",Space,Str "I",Space,Str "do",Space,Str "now?",Space,Str "What",Space,Str "shall",Space,Str "I",Space,Str "do?\""]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "shall",Space,Str "rush",Space,Str "out",Space,Str "as",Space,Str "I",Space,Str "am,",Space,Str "and",Space,Str "walk",Space,Str "the",Space,Str "street"]] ,Div ("",[],[]) [Plain [Str "\"With",Space,Str "my",Space,Str "hair",Space,Str "down,",Space,Str "so.",Space,Str "What",Space,Str "shall",Space,Str "we",Space,Str "do",Space,Str "to-morrow?"]] ,Div ("",[],[]) [Plain [Str "\"What",Space,Str "shall",Space,Str "we",Space,Str "ever",Space,Str "do?\""]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "hot",Space,Str "water",Space,Str "at",Space,Str "ten."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "if",Space,Str "it",Space,Str "rains,",Space,Str "a",Space,Str "closed",Space,Str "car",Space,Str "at",Space,Str "four."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "we",Space,Str "shall",Space,Str "play",Space,Str "a",Space,Str "game",Space,Str "of",Space,Str "chess,"]] ,Div ("wasteland-content.xhtml#ln138",[],[]) [Plain [Str "Pressing",Space,Str "lidless",Space,Str "eyes",Space,Str "and",Space,Str "waiting",Space,Str "for",Space,Str "a",Space,Str "knock",Space,Str "upon",Space,Str "the",Space,Str "door.",Note [Para [Link ("",[],[]) [Str "138."] ("#wasteland-content.xhtml#ln138",""),Space,Str "Cf.",Space,Str "the",Space,Str "game",Space,Str "of",Space,Str "chess",Space,Str "in",Space,Str "Middleton's",Space,Str "Women",Space,Str "beware",Space,Str "Women."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "When",Space,Str "Lil's",Space,Str "husband",Space,Str "got",Space,Str "demobbed,",Space,Str "I",Space,Str "said",Space,Str "-"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "didn't",Space,Str "mince",Space,Str "my",Space,Str "words,",Space,Str "I",Space,Str "said",Space,Str "to",Space,Str "her",Space,Str "myself,",Span ("",["lnum"],[]) [Str "140"]]] ,Div ("",[],[]) [Plain [Str "HURRY",Space,Str "UP",Space,Str "PLEASE",Space,Str "ITS",Space,Str "TIME"]] ,Div ("",[],[]) [Plain [Str "Now",Space,Str "Albert's",Space,Str "coming",Space,Str "back,",Space,Str "make",Space,Str "yourself",Space,Str "a",Space,Str "bit",Space,Str "smart."]] ,Div ("",[],[]) [Plain [Str "He'll",Space,Str "want",Space,Str "to",Space,Str "know",Space,Str "what",Space,Str "you",Space,Str "done",Space,Str "with",Space,Str "that",Space,Str "money",Space,Str "he",Space,Str "gave",SoftBreak,Str "you"]] ,Div ("",[],[]) [Plain [Str "To",Space,Str "get",Space,Str "yourself",Space,Str "some",Space,Str "teeth.",Space,Str "He",Space,Str "did,",Space,Str "I",Space,Str "was",Space,Str "there."]] ,Div ("",[],[]) [Plain [Str "You",Space,Str "have",Space,Str "them",Space,Str "all",Space,Str "out,",Space,Str "Lil,",Space,Str "and",Space,Str "get",Space,Str "a",Space,Str "nice",Space,Str "set,"]] ,Div ("",[],[]) [Plain [Str "He",Space,Str "said,",Space,Str "I",Space,Str "swear,",Space,Str "I",Space,Str "can't",Space,Str "bear",Space,Str "to",Space,Str "look",Space,Str "at",Space,Str "you."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "no",Space,Str "more",Space,Str "can't",Space,Str "I,",Space,Str "I",Space,Str "said,",Space,Str "and",Space,Str "think",Space,Str "of",Space,Str "poor",Space,Str "Albert,"]] ,Div ("",[],[]) [Plain [Str "He's",Space,Str "been",Space,Str "in",Space,Str "the",Space,Str "army",Space,Str "four",Space,Str "years,",Space,Str "he",Space,Str "wants",Space,Str "a",Space,Str "good",Space,Str "time,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "if",Space,Str "you",Space,Str "don't",Space,Str "give",Space,Str "it",Space,Str "him,",Space,Str "there's",Space,Str "others",Space,Str "will,",Space,Str "I",SoftBreak,Str "said."]] ,Div ("",[],[]) [Plain [Str "Oh",Space,Str "is",Space,Str "there,",Space,Str "she",Space,Str "said.",Space,Str "Something",Space,Str "o'",Space,Str "that,",Space,Str "I",Space,Str "said.",Span ("",["lnum"],[]) [Str "150"]]] ,Div ("",[],[]) [Plain [Str "Then",Space,Str "I'll",Space,Str "know",Space,Str "who",Space,Str "to",Space,Str "thank,",Space,Str "she",Space,Str "said,",Space,Str "and",Space,Str "give",Space,Str "me",Space,Str "a",Space,Str "straight",SoftBreak,Str "look."]] ,Div ("",[],[]) [Plain [Str "HURRY",Space,Str "UP",Space,Str "PLEASE",Space,Str "ITS",Space,Str "TIME"]] ,Div ("",[],[]) [Plain [Str "If",Space,Str "you",Space,Str "don't",Space,Str "like",Space,Str "it",Space,Str "you",Space,Str "can",Space,Str "get",Space,Str "on",Space,Str "with",Space,Str "it,",Space,Str "I",Space,Str "said."]] ,Div ("",[],[]) [Plain [Str "Others",Space,Str "can",Space,Str "pick",Space,Str "and",Space,Str "choose",Space,Str "if",Space,Str "you",Space,Str "can't."]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "if",Space,Str "Albert",Space,Str "makes",Space,Str "off,",Space,Str "it",Space,Str "won't",Space,Str "be",Space,Str "for",Space,Str "lack",Space,Str "of",SoftBreak,Str "telling."]] ,Div ("",[],[]) [Plain [Str "You",Space,Str "ought",Space,Str "to",Space,Str "be",Space,Str "ashamed,",Space,Str "I",Space,Str "said,",Space,Str "to",Space,Str "look",Space,Str "so",Space,Str "antique."]] ,Div ("",[],[]) [Plain [Str "(And",Space,Str "her",Space,Str "only",Space,Str "thirty-one.)"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "can't",Space,Str "help",Space,Str "it,",Space,Str "she",Space,Str "said,",Space,Str "pulling",Space,Str "a",Space,Str "long",Space,Str "face,"]] ,Div ("",[],[]) [Plain [Str "It's",Space,Str "them",Space,Str "pills",Space,Str "I",Space,Str "took,",Space,Str "to",Space,Str "bring",Space,Str "it",Space,Str "off,",Space,Str "she",Space,Str "said."]] ,Div ("",[],[]) [Plain [Str "(She's",Space,Str "had",Space,Str "five",Space,Str "already,",Space,Str "and",Space,Str "nearly",Space,Str "died",Space,Str "of",Space,Str "young",Space,Str "George.)",Span ("",["lnum"],[]) [Str "160"]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "chemist",Space,Str "said",Space,Str "it",Space,Str "would",Space,Str "be",Space,Str "all",Space,Str "right,",Space,Str "but",Space,Str "I've",Space,Str "never",Space,Str "been",Space,Str "the",SoftBreak,Str "same."]] ,Div ("",[],[]) [Plain [Str "You",Space,Emph [Str "are"],Space,Str "a",Space,Str "proper",Space,Str "fool,",Space,Str "I",Space,Str "said."]] ,Div ("",[],[]) [Plain [Str "Well,",Space,Str "if",Space,Str "Albert",Space,Str "won't",Space,Str "leave",Space,Str "you",Space,Str "alone,",Space,Str "there",Space,Str "it",Space,Str "is,",Space,Str "I",SoftBreak,Str "said,"]] ,Div ("",[],[]) [Plain [Str "What",Space,Str "you",Space,Str "get",Space,Str "married",Space,Str "for",Space,Str "if",Space,Str "you",Space,Str "don't",Space,Str "want",Space,Str "children?"]] ,Div ("",[],[]) [Plain [Str "HURRY",Space,Str "UP",Space,Str "PLEASE",Space,Str "ITS",Space,Str "TIME"]] ,Div ("",[],[]) [Plain [Str "Well,",Space,Str "that",Space,Str "Sunday",Space,Str "Albert",Space,Str "was",Space,Str "home,",Space,Str "they",Space,Str "had",Space,Str "a",Space,Str "hot",SoftBreak,Str "gammon,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "they",Space,Str "asked",Space,Str "me",Space,Str "in",Space,Str "to",Space,Str "dinner,",Space,Str "to",Space,Str "get",Space,Str "the",Space,Str "beauty",Space,Str "of",Space,Str "it",SoftBreak,Str "hot\8213"]] ,Div ("",[],[]) [Plain [Str "HURRY",Space,Str "UP",Space,Str "PLEASE",Space,Str "ITS",Space,Str "TIME"]] ,Div ("",[],[]) [Plain [Str "HURRY",Space,Str "UP",Space,Str "PLEASE",Space,Str "ITS",Space,Str "TIME"]] ,Div ("",[],[]) [Plain [Str "Goonight",Space,Str "Bill.",Space,Str "Goonight",Space,Str "Lou.",Space,Str "Goonight",Space,Str "May.",Space,Str "Goonight.",Span ("",["lnum"],[]) [Str "170"]]] ,Div ("",[],[]) [Plain [Str "Ta",Space,Str "ta.",Space,Str "Goonight.",Space,Str "Goonight."]] ,Div ("",[],[]) [Plain [Str "Good",Space,Str "night,",Space,Str "ladies,",Space,Str "good",Space,Str "night,",Space,Str "sweet",Space,Str "ladies,",Space,Str "good",Space,Str "night,",Space,Str "good",SoftBreak,Str "night."]]] ,RawBlock (Format "html") "
" ,Div ("wasteland-content.xhtml#ch3",["section"],[]) [Header 2 ("",[],[]) [Str "III.",Space,Str "THE",Space,Str "FIRE",Space,Str "SERMON"] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "The",Space,Str "river's",Space,Str "tent",Space,Str "is",Space,Str "broken:",Space,Str "the",Space,Str "last",Space,Str "fingers",Space,Str "of",Space,Str "leaf"]] ,Div ("",[],[]) [Plain [Str "Clutch",Space,Str "and",Space,Str "sink",Space,Str "into",Space,Str "the",Space,Str "wet",Space,Str "bank.",Space,Str "The",Space,Str "wind"]] ,Div ("",[],[]) [Plain [Str "Crosses",Space,Str "the",Space,Str "brown",Space,Str "land,",Space,Str "unheard.",Space,Str "The",Space,Str "nymphs",Space,Str "are",SoftBreak,Str "departed."]] ,Div ("wasteland-content.xhtml#ln176",[],[]) [Plain [Str "Sweet",Space,Str "Thames,",Space,Str "run",Space,Str "softly,",Space,Str "till",Space,Str "I",Space,Str "end",Space,Str "my",Space,Str "song.",Note [Para [Link ("",[],[]) [Str "176."] ("#wasteland-content.xhtml#ln176",""),Space,Str "V.",Space,Str "Spenser,",Space,Str "Prothalamion."]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "river",Space,Str "bears",Space,Str "no",Space,Str "empty",Space,Str "bottles,",Space,Str "sandwich",Space,Str "papers,"]] ,Div ("",[],[]) [Plain [Str "Silk",Space,Str "handkerchiefs,",Space,Str "cardboard",Space,Str "boxes,",Space,Str "cigarette",Space,Str "ends"]] ,Div ("",[],[]) [Plain [Str "Or",Space,Str "other",Space,Str "testimony",Space,Str "of",Space,Str "summer",Space,Str "nights.",Space,Str "The",Space,Str "nymphs",Space,Str "are",SoftBreak,Str "departed."]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "their",Space,Str "friends,",Space,Str "the",Space,Str "loitering",Space,Str "heirs",Space,Str "of",Space,Str "city",Space,Str "directors;",Span ("",["lnum"],[]) [Str "180"]]] ,Div ("",[],[]) [Plain [Str "Departed,",Space,Str "have",Space,Str "left",Space,Str "no",Space,Str "addresses."]] ,Div ("",[],[]) [Plain [Str "By",Space,Str "the",Space,Str "waters",Space,Str "of",Space,Str "Leman",Space,Str "I",Space,Str "sat",Space,Str "down",Space,Str "and",Space,Str "wept",Space,Str ".",Space,Str ".",Space,Str "."]] ,Div ("",[],[]) [Plain [Str "Sweet",Space,Str "Thames,",Space,Str "run",Space,Str "softly",Space,Str "till",Space,Str "I",Space,Str "end",Space,Str "my",Space,Str "song,"]] ,Div ("",[],[]) [Plain [Str "Sweet",Space,Str "Thames,",Space,Str "run",Space,Str "softly,",Space,Str "for",Space,Str "I",Space,Str "speak",Space,Str "not",Space,Str "loud",Space,Str "or",Space,Str "long."]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "at",Space,Str "my",Space,Str "back",Space,Str "in",Space,Str "a",Space,Str "cold",Space,Str "blast",Space,Str "I",Space,Str "hear"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "rattle",Space,Str "of",Space,Str "the",Space,Str "bones,",Space,Str "and",Space,Str "chuckle",Space,Str "spread",Space,Str "from",Space,Str "ear",Space,Str "to",SoftBreak,Str "ear."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "A",Space,Str "rat",Space,Str "crept",Space,Str "softly",Space,Str "through",Space,Str "the",Space,Str "vegetation"]] ,Div ("",[],[]) [Plain [Str "Dragging",Space,Str "its",Space,Str "slimy",Space,Str "belly",Space,Str "on",Space,Str "the",Space,Str "bank"]] ,Div ("",[],[]) [Plain [Str "While",Space,Str "I",Space,Str "was",Space,Str "fishing",Space,Str "in",Space,Str "the",Space,Str "dull",Space,Str "canal"]] ,Div ("",[],[]) [Plain [Str "On",Space,Str "a",Space,Str "winter",Space,Str "evening",Space,Str "round",Space,Str "behind",Space,Str "the",Space,Str "gashouse",Span ("",["lnum"],[]) [Str "190"]]] ,Div ("",[],[]) [Plain [Str "Musing",Space,Str "upon",Space,Str "the",Space,Str "king",Space,Str "my",Space,Str "brother's",Space,Str "wreck"]] ,Div ("wasteland-content.xhtml#ln192",[],[]) [Plain [Str "And",Space,Str "on",Space,Str "the",Space,Str "king",Space,Str "my",Space,Str "father's",Space,Str "death",Space,Str "before",Space,Str "him.",Note [Para [Link ("",[],[]) [Str "192."] ("#wasteland-content.xhtml#ln192",""),Space,Str "Cf.",Space,Str "The",Space,Str "Tempest,",Space,Str "I.",Space,Str "ii."]]] ,Div ("",[],[]) [Plain [Str "White",Space,Str "bodies",Space,Str "naked",Space,Str "on",Space,Str "the",Space,Str "low",Space,Str "damp",Space,Str "ground"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "bones",Space,Str "cast",Space,Str "in",Space,Str "a",Space,Str "little",Space,Str "low",Space,Str "dry",Space,Str "garret,"]] ,Div ("",[],[]) [Plain [Str "Rattled",Space,Str "by",Space,Str "the",Space,Str "rat's",Space,Str "foot",Space,Str "only,",Space,Str "year",Space,Str "to",Space,Str "year."]] ,Div ("wasteland-content.xhtml#ln196",[],[]) [Plain [Str "But",Space,Str "at",Space,Str "my",Space,Str "back",Space,Str "from",Space,Str "time",Space,Str "to",Space,Str "time",Space,Str "I",Space,Str "hear",Note [Para [Link ("",[],[]) [Str "196."] ("#wasteland-content.xhtml#ln196",""),Space,Str "Cf.",Space,Str "Marvell,",Space,Str "To",Space,Str "His",Space,Str "Coy",Space,Str "Mistress."]]] ,Div ("wasteland-content.xhtml#ln197",[],[]) [Plain [Str "The",Space,Str "sound",Space,Str "of",Space,Str "horns",Space,Str "and",Space,Str "motors,",Space,Str "which",Space,Str "shall",Space,Str "bring",Note [Para [Link ("",[],[]) [Str "197."] ("#wasteland-content.xhtml#ln197",""),Space,Str "Cf.",Space,Str "Day,",Space,Str "Parliament",Space,Str "of",Space,Str "Bees:"],BlockQuote [Div ("",[],[]) [Div ("",[],[]) [Plain [Str "\"When",Space,Str "of",Space,Str "the",Space,Str "sudden,",Space,Str "listening,",Space,Str "you",Space,Str "shall",SoftBreak,Str "hear,"]],Div ("",[],[]) [Plain [Str "\"A",Space,Str "noise",Space,Str "of",Space,Str "horns",Space,Str "and",Space,Str "hunting,",Space,Str "which",Space,Str "shall",SoftBreak,Str "bring"]],Div ("",[],[]) [Plain [Str "\"Actaeon",Space,Str "to",Space,Str "Diana",Space,Str "in",Space,Str "the",Space,Str "spring,"]],Div ("",[],[]) [Plain [Str "\"Where",Space,Str "all",Space,Str "shall",Space,Str "see",Space,Str "her",Space,Str "naked",Space,Str "skin",Space,Str ".",Space,Str ".",Space,Str ".\""]]]]]] ,Div ("",[],[]) [Plain [Str "Sweeney",Space,Str "to",Space,Str "Mrs.",Space,Str "Porter",Space,Str "in",Space,Str "the",Space,Str "spring."]] ,Div ("wasteland-content.xhtml#ln199",[],[]) [Plain [Str "O",Space,Str "the",Space,Str "moon",Space,Str "shone",Space,Str "bright",Space,Str "on",Space,Str "Mrs.",Space,Str "Porter",Note [Para [Link ("",[],[]) [Str "199."] ("#wasteland-content.xhtml#ln199",""),Space,Str "I",Space,Str "do",Space,Str "not",Space,Str "know",Space,Str "the",Space,Str "origin",Space,Str "of",Space,Str "the",Space,Str "ballad",Space,Str "from",Space,Str "which",Space,Str "these",Space,Str "lines",Space,Str "are",SoftBreak,Str "taken:",Space,Str "it",Space,Str "was",Space,Str "reported",Space,Str "to",Space,Str "me",Space,Str "from",Space,Str "Sydney,",Space,Str "Australia."]]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "on",Space,Str "her",Space,Str "daughter",Span ("",["lnum"],[]) [Str "200"]]] ,Div ("",[],[]) [Plain [Str "They",Space,Str "wash",Space,Str "their",Space,Str "feet",Space,Str "in",Space,Str "soda",Space,Str "water"]] ,Div ("wasteland-content.xhtml#ln202",[],[("lang","fr")]) [Plain [Emph [Str "Et",Space,Str "O",Space,Str "ces",Space,Str "voix",Space,Str "d'enfants,",Space,Str "chantant",Space,Str "dans",Space,Str "la",Space,Str "coupole"],Str "!",Note [Para [Link ("",[],[]) [Str "202."] ("#wasteland-content.xhtml#ln202",""),Space,Str "V.",Space,Str "Verlaine,",Space,Str "Parsifal."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Twit",Space,Str "twit",Space,Str "twit"]] ,Div ("",[],[]) [Plain [Str "Jug",Space,Str "jug",Space,Str "jug",Space,Str "jug",Space,Str "jug",Space,Str "jug"]] ,Div ("",[],[]) [Plain [Str "So",Space,Str "rudely",Space,Str "forc'd."]] ,Div ("",[],[]) [Plain [Str "Tereu"]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Unreal",Space,Str "City"]] ,Div ("",[],[]) [Plain [Str "Under",Space,Str "the",Space,Str "brown",Space,Str "fog",Space,Str "of",Space,Str "a",Space,Str "winter",Space,Str "noon"]] ,Div ("",[],[]) [Plain [Str "Mr.",Space,Str "Eugenides,",Space,Str "the",Space,Str "Smyrna",Space,Str "merchant"]] ,Div ("wasteland-content.xhtml#ln210",[],[]) [Plain [Str "Unshaven,",Space,Str "with",Space,Str "a",Space,Str "pocket",Space,Str "full",Space,Str "of",Space,Str "currants",Note [Para [Link ("",[],[]) [Str "210."] ("#wasteland-content.xhtml#ln210",""),Space,Str "The",Space,Str "currants",Space,Str "were",Space,Str "quoted",Space,Str "at",Space,Str "a",Space,Str "price",Space,Str "\"cost",Space,Str "insurance",Space,Str "and",Space,Str "freight",Space,Str "to",SoftBreak,Str "London\";",Space,Str "and",Space,Str "the",Space,Str "Bill",Space,Str "of",Space,Str "Lading",Space,Str "etc.",Space,Str "were",Space,Str "to",Space,Str "be",Space,Str "handed",Space,Str "to",Space,Str "the",Space,Str "buyer",Space,Str "upon",SoftBreak,Str "payment",Space,Str "of",Space,Str "the",Space,Str "sight",Space,Str "draft."]]] ,Div ("",[],[]) [Plain [Str "C.i.f.",Space,Str "London:",Space,Str "documents",Space,Str "at",Space,Str "sight,"]] ,Div ("",[],[]) [Plain [Str "Asked",Space,Str "me",Space,Str "in",Space,Str "demotic",Space,Str "French"]] ,Div ("",[],[]) [Plain [Str "To",Space,Str "luncheon",Space,Str "at",Space,Str "the",Space,Str "Cannon",Space,Str "Street",Space,Str "Hotel"]] ,Div ("",[],[]) [Plain [Str "Followed",Space,Str "by",Space,Str "a",Space,Str "weekend",Space,Str "at",Space,Str "the",Space,Str "Metropole."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "At",Space,Str "the",Space,Str "violet",Space,Str "hour,",Space,Str "when",Space,Str "the",Space,Str "eyes",Space,Str "and",Space,Str "back"]] ,Div ("",[],[]) [Plain [Str "Turn",Space,Str "upward",Space,Str "from",Space,Str "the",Space,Str "desk,",Space,Str "when",Space,Str "the",Space,Str "human",Space,Str "engine",Space,Str "waits"]] ,Div ("",[],[]) [Plain [Str "Like",Space,Str "a",Space,Str "taxi",Space,Str "throbbing",Space,Str "waiting,"]] ,Div ("wasteland-content.xhtml#ln218",[],[]) [Plain [Str "I",Space,Str "Tiresias,",Space,Str "though",Space,Str "blind,",Space,Str "throbbing",Space,Str "between",Space,Str "two",Space,Str "lives,",Note [Para [Link ("",[],[]) [Str "218."] ("#wasteland-content.xhtml#ln218",""),Space,Str "Tiresias,",Space,Str "although",Space,Str "a",Space,Str "mere",Space,Str "spectator",Space,Str "and",Space,Str "not",Space,Str "indeed",Space,Str "a",Space,Str "\"character,\"",Space,Str "is",SoftBreak,Str "yet",Space,Str "the",Space,Str "most",Space,Str "important",Space,Str "personage",Space,Str "in",Space,Str "the",Space,Str "poem,",Space,Str "uniting",Space,Str "all",Space,Str "the",Space,Str "rest.",Space,Str "Just",SoftBreak,Str "as",Space,Str "the",Space,Str "one-eyed",Space,Str "merchant,",Space,Str "seller",Space,Str "of",Space,Str "currants,",Space,Str "melts",Space,Str "into",Space,Str "the",Space,Str "Phoenician",SoftBreak,Str "Sailor,",Space,Str "and",Space,Str "the",Space,Str "latter",Space,Str "is",Space,Str "not",Space,Str "wholly",Space,Str "distinct",Space,Str "from",Space,Str "Ferdinand",Space,Str "Prince",Space,Str "of",SoftBreak,Str "Naples,",Space,Str "so",Space,Str "all",Space,Str "the",Space,Str "women",Space,Str "are",Space,Str "one",Space,Str "woman,",Space,Str "and",Space,Str "the",Space,Str "two",Space,Str "sexes",Space,Str "meet",Space,Str "in",SoftBreak,Str "Tiresias.",Space,Str "What",Space,Str "Tiresias",Space,Str "sees,",Space,Str "in",Space,Str "fact,",Space,Str "is",Space,Str "the",Space,Str "substance",Space,Str "of",Space,Str "the",Space,Str "poem.",Space,Str "The",SoftBreak,Str "whole",Space,Str "passage",Space,Str "from",Space,Str "Ovid",Space,Str "is",Space,Str "of",Space,Str "great",Space,Str "anthropological",Space,Str "interest:"],BlockQuote [Para [Str "'.",Space,Str ".",Space,Str ".",Space,Str "Cum",Space,Str "Iunone",Space,Str "iocos",Space,Str "et",Space,Str "maior",Space,Str "vestra",Space,Str "profecto",Space,Str "est",LineBreak,Str "Quam,",Space,Str "quae",SoftBreak,Str "contingit",Space,Str "maribus,'",Space,Str "dixisse,",Space,Str "'voluptas.'",LineBreak,Str "Illa",Space,Str "negat;",Space,Str "placuit",SoftBreak,Str "quae",Space,Str "sit",Space,Str "sententia",Space,Str "docti",LineBreak,Str "Quaerere",Space,Str "Tiresiae:",Space,Str "venus",Space,Str "huic",Space,Str "erat",SoftBreak,Str "utraque",Space,Str "nota.",LineBreak,Str "Nam",Space,Str "duo",Space,Str "magnorum",Space,Str "viridi",Space,Str "coeuntia",Space,Str "silva",LineBreak,Str "Corpora",Space,Str "serpentum",Space,Str "baculi",Space,Str "violaverat",Space,Str "ictu",LineBreak,Str "Deque",Space,Str "viro",Space,Str "factus,",SoftBreak,Str "mirabile,",Space,Str "femina",Space,Str "septem",LineBreak,Str "Egerat",Space,Str "autumnos;",Space,Str "octavo",Space,Str "rursus",SoftBreak,Str "eosdem",LineBreak,Str "Vidit",Space,Str "et",Space,Str "'est",Space,Str "vestrae",Space,Str "si",Space,Str "tanta",Space,Str "potentia",Space,Str "plagae,'",LineBreak,Str "Dixit",Space,Str "'ut",Space,Str "auctoris",Space,Str "sortem",Space,Str "in",Space,Str "contraria",Space,Str "mutet,",LineBreak,Str "Nunc",Space,Str "quoque",Space,Str "vos",SoftBreak,Str "feriam!'",Space,Str "percussis",Space,Str "anguibus",Space,Str "isdem",LineBreak,Str "Forma",Space,Str "prior",Space,Str "rediit",SoftBreak,Str "genetivaque",Space,Str "venit",Space,Str "imago.",LineBreak,Str "Arbiter",Space,Str "hic",Space,Str "igitur",Space,Str "sumptus",Space,Str "de",Space,Str "lite",SoftBreak,Str "iocosa",LineBreak,Str "Dicta",Space,Str "Iovis",Space,Str "firmat;",Space,Str "gravius",Space,Str "Saturnia",Space,Str "iusto",LineBreak,Str "Nec",SoftBreak,Str "pro",Space,Str "materia",Space,Str "fertur",Space,Str "doluisse",Space,Str "suique",LineBreak,Str "Iudicis",Space,Str "aeterna",Space,Str "damnavit",SoftBreak,Str "lumina",Space,Str "nocte,",LineBreak,Str "At",Space,Str "pater",Space,Str "omnipotens",Space,Str "(neque",Space,Str "enim",Space,Str "licet",Space,Str "inrita",SoftBreak,Str "cuiquam",LineBreak,Str "Facta",Space,Str "dei",Space,Str "fecisse",Space,Str "deo)",Space,Str "pro",Space,Str "lumine",Space,Str "adempto",LineBreak,Str "Scire",SoftBreak,Str "futura",Space,Str "dedit",Space,Str "poenamque",Space,Str "levavit",Space,Str "honore.",LineBreak]]]] ,Div ("",[],[]) [Plain [Str "Old",Space,Str "man",Space,Str "with",Space,Str "wrinkled",Space,Str "female",Space,Str "breasts,",Space,Str "can",Space,Str "see"]] ,Div ("",[],[]) [Plain [Str "At",Space,Str "the",Space,Str "violet",Space,Str "hour,",Space,Str "the",Space,Str "evening",Space,Str "hour",Space,Str "that",Space,Str "strives",Span ("",["lnum"],[]) [Str "220"]]] ,Div ("wasteland-content.xhtml#ln221",[],[]) [Plain [Str "Homeward,",Space,Str "and",Space,Str "brings",Space,Str "the",Space,Str "sailor",Space,Str "home",Space,Str "from",Space,Str "sea,",Note [Para [Link ("",[],[]) [Str "221."] ("#wasteland-content.xhtml#ln221",""),Space,Str "This",Space,Str "may",Space,Str "not",Space,Str "appear",Space,Str "as",Space,Str "exact",Space,Str "as",Space,Str "Sappho's",Space,Str "lines,",Space,Str "but",Space,Str "I",Space,Str "had",Space,Str "in",Space,Str "mind",SoftBreak,Str "the",Space,Str "\"longshore\"",Space,Str "or",Space,Str "\"dory\"",Space,Str "fisherman,",Space,Str "who",Space,Str "returns",Space,Str "at",Space,Str "nightfall."]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "typist",Space,Str "home",Space,Str "at",Space,Str "teatime,",Space,Str "clears",Space,Str "her",Space,Str "breakfast,",Space,Str "lights"]] ,Div ("",[],[]) [Plain [Str "Her",Space,Str "stove,",Space,Str "and",Space,Str "lays",Space,Str "out",Space,Str "food",Space,Str "in",Space,Str "tins."]] ,Div ("",[],[]) [Plain [Str "Out",Space,Str "of",Space,Str "the",Space,Str "window",Space,Str "perilously",Space,Str "spread"]] ,Div ("",[],[]) [Plain [Str "Her",Space,Str "drying",Space,Str "combinations",Space,Str "touched",Space,Str "by",Space,Str "the",Space,Str "sun's",Space,Str "last",Space,Str "rays,"]] ,Div ("",[],[]) [Plain [Str "On",Space,Str "the",Space,Str "divan",Space,Str "are",Space,Str "piled",Space,Str "(at",Space,Str "night",Space,Str "her",Space,Str "bed)"]] ,Div ("",[],[]) [Plain [Str "Stockings,",Space,Str "slippers,",Space,Str "camisoles,",Space,Str "and",Space,Str "stays."]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "Tiresias,",Space,Str "old",Space,Str "man",Space,Str "with",Space,Str "wrinkled",Space,Str "dugs"]] ,Div ("",[],[]) [Plain [Str "Perceived",Space,Str "the",Space,Str "scene,",Space,Str "and",Space,Str "foretold",Space,Str "the",Space,Str "rest",Space,Str "-"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "too",Space,Str "awaited",Space,Str "the",Space,Str "expected",Space,Str "guest.",Span ("",["lnum"],[]) [Str "230"]]] ,Div ("",[],[]) [Plain [Str "He,",Space,Str "the",Space,Str "young",Space,Str "man",Space,Str "carbuncular,",Space,Str "arrives,"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "small",Space,Str "house",Space,Str "agent's",Space,Str "clerk,",Space,Str "with",Space,Str "one",Space,Str "bold",Space,Str "stare,"]] ,Div ("",[],[]) [Plain [Str "One",Space,Str "of",Space,Str "the",Space,Str "low",Space,Str "on",Space,Str "whom",Space,Str "assurance",Space,Str "sits"]] ,Div ("",[],[]) [Plain [Str "As",Space,Str "a",Space,Str "silk",Space,Str "hat",Space,Str "on",Space,Str "a",Space,Str "Bradford",Space,Str "millionaire."]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "time",Space,Str "is",Space,Str "now",Space,Str "propitious,",Space,Str "as",Space,Str "he",Space,Str "guesses,"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "meal",Space,Str "is",Space,Str "ended,",Space,Str "she",Space,Str "is",Space,Str "bored",Space,Str "and",Space,Str "tired,"]] ,Div ("",[],[]) [Plain [Str "Endeavours",Space,Str "to",Space,Str "engage",Space,Str "her",Space,Str "in",Space,Str "caresses"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "still",Space,Str "are",Space,Str "unreproved,",Space,Str "if",Space,Str "undesired."]] ,Div ("",[],[]) [Plain [Str "Flushed",Space,Str "and",Space,Str "decided,",Space,Str "he",Space,Str "assaults",Space,Str "at",Space,Str "once;"]] ,Div ("",[],[]) [Plain [Str "Exploring",Space,Str "hands",Space,Str "encounter",Space,Str "no",Space,Str "defence;",Span ("",["lnum"],[]) [Str "240"]]] ,Div ("",[],[]) [Plain [Str "His",Space,Str "vanity",Space,Str "requires",Space,Str "no",Space,Str "response,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "makes",Space,Str "a",Space,Str "welcome",Space,Str "of",Space,Str "indifference."]] ,Div ("",[],[]) [Plain [Str "(And",Space,Str "I",Space,Str "Tiresias",Space,Str "have",Space,Str "foresuffered",Space,Str "all"]] ,Div ("",[],[]) [Plain [Str "Enacted",Space,Str "on",Space,Str "this",Space,Str "same",Space,Str "divan",Space,Str "or",Space,Str "bed;"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "who",Space,Str "have",Space,Str "sat",Space,Str "by",Space,Str "Thebes",Space,Str "below",Space,Str "the",Space,Str "wall"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "walked",Space,Str "among",Space,Str "the",Space,Str "lowest",Space,Str "of",Space,Str "the",Space,Str "dead.)"]] ,Div ("",[],[]) [Plain [Str "Bestows",Space,Str "one",Space,Str "final",Space,Str "patronising",Space,Str "kiss,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "gropes",Space,Str "his",Space,Str "way,",Space,Str "finding",Space,Str "the",Space,Str "stairs",Space,Str "unlit",Space,Str ".",Space,Str ".",Space,Str "."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "She",Space,Str "turns",Space,Str "and",Space,Str "looks",Space,Str "a",Space,Str "moment",Space,Str "in",Space,Str "the",Space,Str "glass,"]] ,Div ("",[],[]) [Plain [Str "Hardly",Space,Str "aware",Space,Str "of",Space,Str "her",Space,Str "departed",Space,Str "lover;",Span ("",["lnum"],[]) [Str "250"]]] ,Div ("",[],[]) [Plain [Str "Her",Space,Str "brain",Space,Str "allows",Space,Str "one",Space,Str "half-formed",Space,Str "thought",Space,Str "to",Space,Str "pass:"]] ,Div ("",[],[]) [Plain [Str "\"Well",Space,Str "now",Space,Str "that's",Space,Str "done:",Space,Str "and",Space,Str "I'm",Space,Str "glad",Space,Str "it's",Space,Str "over.\""]] ,Div ("wasteland-content.xhtml#ln253",[],[]) [Plain [Str "When",Space,Str "lovely",Space,Str "woman",Space,Str "stoops",Space,Str "to",Space,Str "folly",Space,Str "and",Note [Para [Link ("",[],[]) [Str "253."] ("#wasteland-content.xhtml#ln253",""),Space,Str "V.",Space,Str "Goldsmith,",Space,Str "the",Space,Str "song",Space,Str "in",Space,Str "The",Space,Str "Vicar",Space,Str "of",Space,Str "Wakefield."]]] ,Div ("",[],[]) [Plain [Str "Paces",Space,Str "about",Space,Str "her",Space,Str "room",Space,Str "again,",Space,Str "alone,"]] ,Div ("",[],[]) [Plain [Str "She",Space,Str "smoothes",Space,Str "her",Space,Str "hair",Space,Str "with",Space,Str "automatic",Space,Str "hand,"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "puts",Space,Str "a",Space,Str "record",Space,Str "on",Space,Str "the",Space,Str "gramophone."]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln257",[],[]) [Plain [Str "\"This",Space,Str "music",Space,Str "crept",Space,Str "by",Space,Str "me",Space,Str "upon",Space,Str "the",Space,Str "waters\"",Note [Para [Link ("",[],[]) [Str "257."] ("#wasteland-content.xhtml#ln257",""),Space,Str "V.",Space,Str "The",Space,Str "Tempest,",Space,Str "as",Space,Str "above."]]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "along",Space,Str "the",Space,Str "Strand,",Space,Str "up",Space,Str "Queen",Space,Str "Victoria",Space,Str "Street."]] ,Div ("",[],[]) [Plain [Str "O",Space,Str "City",Space,Str "city,",Space,Str "I",Space,Str "can",Space,Str "sometimes",Space,Str "hear"]] ,Div ("",[],[]) [Plain [Str "Beside",Space,Str "a",Space,Str "public",Space,Str "bar",Space,Str "in",Space,Str "Lower",Space,Str "Thames",Space,Str "Street,",Span ("",["lnum"],[]) [Str "260"]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "pleasant",Space,Str "whining",Space,Str "of",Space,Str "a",Space,Str "mandoline"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "a",Space,Str "clatter",Space,Str "and",Space,Str "a",Space,Str "chatter",Space,Str "from",Space,Str "within"]] ,Div ("",[],[]) [Plain [Str "Where",Space,Str "fishmen",Space,Str "lounge",Space,Str "at",Space,Str "noon:",Space,Str "where",Space,Str "the",Space,Str "walls"]] ,Div ("wasteland-content.xhtml#ln264",[],[]) [Plain [Str "Of",Space,Str "Magnus",Space,Str "Martyr",Space,Str "hold",Note [Para [Link ("",[],[]) [Str "264."] ("#wasteland-content.xhtml#ln264",""),Space,Str "The",Space,Str "interior",Space,Str "of",Space,Str "St.",Space,Str "Magnus",Space,Str "Martyr",Space,Str "is",Space,Str "to",Space,Str "my",Space,Str "mind",Space,Str "one",Space,Str "of",Space,Str "the",Space,Str "finest",SoftBreak,Str "among",Space,Str "Wren's",Space,Str "interiors.",Space,Str "See",Space,Str "The",Space,Str "Proposed",Space,Str "Demolition",Space,Str "of",Space,Str "Nineteen",Space,Str "City",SoftBreak,Str "Churches",Space,Str "(P.",Space,Str "S.",Space,Str "King",Space,Str "&",Space,Str "Son,",Space,Str "Ltd.)."]]] ,Div ("",[],[]) [Plain [Str "Inexplicable",Space,Str "splendour",Space,Str "of",Space,Str "Ionian",Space,Str "white",Space,Str "and",Space,Str "gold."]]] ,Div ("",["linegroup","indent"],[]) [Div ("wasteland-content.xhtml#ln266",[],[]) [Plain [Str "The",Space,Str "river",Space,Str "sweats",Note [Para [Link ("",[],[]) [Str "266."] ("#wasteland-content.xhtml#ln266",""),Space,Str "The",Space,Str "Song",Space,Str "of",Space,Str "the",Space,Str "(three)",Space,Str "Thames-daughters",Space,Str "begins",Space,Str "here.",Space,Str "From",Space,Str "line",Space,Str "292",SoftBreak,Str "to",Space,Str "306",Space,Str "inclusive",Space,Str "they",Space,Str "speak",Space,Str "in",Space,Str "turn.",Space,Str "V.",Space,Str "Gutterdsammerung,",Space,Str "III.",Space,Str "i:",Space,Str "the",SoftBreak,Str "Rhine-daughters."]]] ,Div ("",[],[]) [Plain [Str "Oil",Space,Str "and",Space,Str "tar"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "barges",Space,Str "drift"]] ,Div ("",[],[]) [Plain [Str "With",Space,Str "the",Space,Str "turning",Space,Str "tide"]] ,Div ("",[],[]) [Plain [Str "Red",Space,Str "sails",Span ("",["lnum"],[]) [Str "270"]]] ,Div ("",[],[]) [Plain [Str "Wide"]] ,Div ("",[],[]) [Plain [Str "To",Space,Str "leeward,",Space,Str "swing",Space,Str "on",Space,Str "the",Space,Str "heavy",Space,Str "spar."]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "barges",Space,Str "wash"]] ,Div ("",[],[]) [Plain [Str "Drifting",Space,Str "logs"]] ,Div ("",[],[]) [Plain [Str "Down",Space,Str "Greenwich",Space,Str "reach"]] ,Div ("",[],[]) [Plain [Str "Past",Space,Str "the",Space,Str "Isle",Space,Str "of",Space,Str "Dogs."]] ,Div ("",["indent"],[]) [Plain [Str "Weialala",Space,Str "leia"]] ,Div ("",["indent"],[]) [Plain [Str "Wallala",Space,Str "leialala"]]] ,Div ("",["linegroup","indent"],[]) [Div ("wasteland-content.xhtml#ln279",[],[]) [Plain [Str "Elizabeth",Space,Str "and",Space,Str "Leicester",Note [Para [Link ("",[],[]) [Str "279."] ("#wasteland-content.xhtml#ln279",""),Space,Str "V.",Space,Str "Froude,",Space,Str "Elizabeth,",Space,Str "Vol.",Space,Str "I,",Space,Str "ch.",Space,Str "iv,",Space,Str "letter",Space,Str "of",Space,Str "De",Space,Str "Quadra",Space,Str "to",Space,Str "Philip",SoftBreak,Str "of",Space,Str "Spain:"],BlockQuote [Div ("",[],[]) [Div ("",[],[]) [Plain [Str "\"In",Space,Str "the",Space,Str "afternoon",Space,Str "we",Space,Str "were",Space,Str "in",Space,Str "a",Space,Str "barge,",Space,Str "watching",Space,Str "the",SoftBreak,Str "games",Space,Str "on",Space,Str "the",Space,Str "river."]],Div ("",[],[]) [Plain [Str "(The",Space,Str "queen)",Space,Str "was",Space,Str "alone",Space,Str "with",Space,Str "Lord",Space,Str "Robert",Space,Str "and",Space,Str "myself",SoftBreak,Str "on",Space,Str "the",Space,Str "poop,"]],Div ("",[],[]) [Plain [Str "when",Space,Str "they",Space,Str "began",Space,Str "to",Space,Str "talk",Space,Str "nonsense,",Space,Str "and",Space,Str "went",Space,Str "so",Space,Str "far",SoftBreak,Str "that",Space,Str "Lord",Space,Str "Robert"]],Div ("",[],[]) [Plain [Str "at",Space,Str "last",Space,Str "said,",Space,Str "as",Space,Str "I",Space,Str "was",Space,Str "on",Space,Str "the",Space,Str "spot",Space,Str "there",Space,Str "was",Space,Str "no",SoftBreak,Str "reason",Space,Str "why",Space,Str "they"]],Div ("",[],[]) [Plain [Str "should",Space,Str "not",Space,Str "be",Space,Str "married",Space,Str "if",Space,Str "the",Space,Str "queen",Space,Str "pleased.\""]]]]]] ,Div ("",[],[]) [Plain [Str "Beating",Space,Str "oars",Span ("",["lnum"],[]) [Str "280"]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "stern",Space,Str "was",Space,Str "formed"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "gilded",Space,Str "shell"]] ,Div ("",[],[]) [Plain [Str "Red",Space,Str "and",Space,Str "gold"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "brisk",Space,Str "swell"]] ,Div ("",[],[]) [Plain [Str "Rippled",Space,Str "both",Space,Str "shores"]] ,Div ("",[],[]) [Plain [Str "Southwest",Space,Str "wind"]] ,Div ("",[],[]) [Plain [Str "Carried",Space,Str "down",Space,Str "stream"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "peal",Space,Str "of",Space,Str "bells"]] ,Div ("",[],[]) [Plain [Str "White",Space,Str "towers"]] ,Div ("",["indent"],[]) [Plain [Str "Weialala",Space,Str "leia",Span ("",["lnum"],[]) [Str "290"]]] ,Div ("",["indent"],[]) [Plain [Str "Wallala",Space,Str "leialala"]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "\"Trams",Space,Str "and",Space,Str "dusty",Space,Str "trees."]] ,Div ("wasteland-content.xhtml#ln293",[],[]) [Plain [Str "Highbury",Space,Str "bore",Space,Str "me.",Space,Str "Richmond",Space,Str "and",Space,Str "Kew",Note [Para [Link ("",[],[]) [Str "293."] ("#wasteland-content.xhtml#ln293",""),Space,Str "Cf.",Space,Str "Purgatorio,",Space,Str "v.",Space,Str "133:"],BlockQuote [Para [Str "\"Ricorditi",Space,Str "di",Space,Str "me,",Space,Str "che",Space,Str "son",Space,Str "la",Space,Str "Pia;",LineBreak,Str "Siena",Space,Str "mi",Space,Str "fe',",Space,Str "disfecemi",SoftBreak,Str "Maremma.\""]]]] ,Div ("",[],[]) [Plain [Str "Undid",Space,Str "me.",Space,Str "By",Space,Str "Richmond",Space,Str "I",Space,Str "raised",Space,Str "my",Space,Str "knees"]] ,Div ("",[],[]) [Plain [Str "Supine",Space,Str "on",Space,Str "the",Space,Str "floor",Space,Str "of",Space,Str "a",Space,Str "narrow",Space,Str "canoe.\""]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "\"My",Space,Str "feet",Space,Str "are",Space,Str "at",Space,Str "Moorgate,",Space,Str "and",Space,Str "my",Space,Str "heart"]] ,Div ("",[],[]) [Plain [Str "Under",Space,Str "my",Space,Str "feet.",Space,Str "After",Space,Str "the",Space,Str "event"]] ,Div ("",[],[]) [Plain [Str "He",Space,Str "wept.",Space,Str "He",Space,Str "promised",Space,Str "'a",Space,Str "new",Space,Str "start'."]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "made",Space,Str "no",Space,Str "comment.",Space,Str "What",Space,Str "should",Space,Str "I",Space,Str "resent?\""]] ,Div ("",[],[]) [Plain [Str "\"On",Space,Str "Margate",Space,Str "Sands.",Span ("",["lnum"],[]) [Str "300"]]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "can",Space,Str "connect"]] ,Div ("",[],[]) [Plain [Str "Nothing",Space,Str "with",Space,Str "nothing."]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "broken",Space,Str "fingernails",Space,Str "of",Space,Str "dirty",Space,Str "hands."]] ,Div ("",[],[]) [Plain [Str "My",Space,Str "people",Space,Str "humble",Space,Str "people",Space,Str "who",Space,Str "expect"]] ,Div ("",[],[]) [Plain [Str "Nothing.\""]] ,Div ("",["indent"],[]) [Plain [Str "la",Space,Str "la"]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln307",[],[]) [Plain [Str "To",Space,Str "Carthage",Space,Str "then",Space,Str "I",Space,Str "came",Note [Para [Link ("",[],[]) [Str "307."] ("#wasteland-content.xhtml#ln307",""),Space,Str "V.",Space,Str "St.",Space,Str "Augustine's",Space,Str "Confessions:",Space,Str "\"to",Space,Str "Carthage",Space,Str "then",Space,Str "I",Space,Str "came,",Space,Str "where",Space,Str "a",SoftBreak,Str "cauldron",Space,Str "of",Space,Str "unholy",Space,Str "loves",Space,Str "sang",Space,Str "all",Space,Str "about",Space,Str "mine",Space,Str "ears.\""]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln308",[],[]) [Plain [Str "Burning",Space,Str "burning",Space,Str "burning",Space,Str "burning",Note [Para [Link ("",[],[]) [Str "308."] ("#wasteland-content.xhtml#ln308",""),Space,Str "The",Space,Str "complete",Space,Str "text",Space,Str "of",Space,Str "the",Space,Str "Buddha's",Space,Str "Fire",Space,Str "Sermon",Space,Str "(which",Space,Str "corresponds",Space,Str "in",SoftBreak,Str "importance",Space,Str "to",Space,Str "the",Space,Str "Sermon",Space,Str "on",Space,Str "the",Space,Str "Mount)",Space,Str "from",Space,Str "which",Space,Str "these",Space,Str "words",Space,Str "are",Space,Str "taken,",SoftBreak,Str "will",Space,Str "be",Space,Str "found",Space,Str "translated",Space,Str "in",Space,Str "the",Space,Str "late",Space,Str "Henry",Space,Str "Clarke",Space,Str "Warren's",Space,Str "Buddhism",Space,Str "in",SoftBreak,Str "Translation",Space,Str "(Harvard",Space,Str "Oriental",Space,Str "Series).",Space,Str "Mr.",Space,Str "Warren",Space,Str "was",Space,Str "one",Space,Str "of",Space,Str "the",Space,Str "great",SoftBreak,Str "pioneers",Space,Str "of",Space,Str "Buddhist",Space,Str "studies",Space,Str "in",Space,Str "the",Space,Str "Occident."]]] ,Div ("wasteland-content.xhtml#ln309",[],[]) [Plain [Str "O",Space,Str "Lord",Space,Str "Thou",Space,Str "pluckest",Space,Str "me",Space,Str "out",Note [Para [Link ("",[],[]) [Str "309."] ("#wasteland-content.xhtml#ln309",""),Space,Str "From",Space,Str "St.",Space,Str "Augustine's",Space,Str "Confessions",Space,Str "again.",Space,Str "The",Space,Str "collocation",Space,Str "of",Space,Str "these",Space,Str "two",SoftBreak,Str "representatives",Space,Str "of",Space,Str "eastern",Space,Str "and",Space,Str "western",Space,Str "asceticism,",Space,Str "as",Space,Str "the",Space,Str "culmination",Space,Str "of",SoftBreak,Str "this",Space,Str "part",Space,Str "of",Space,Str "the",Space,Str "poem,",Space,Str "is",Space,Str "not",Space,Str "an",Space,Str "accident."]]] ,Div ("",[],[]) [Plain [Str "O",Space,Str "Lord",Space,Str "Thou",Space,Str "pluckest",Span ("",["lnum"],[]) [Str "310"]]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "burning"]]] ,RawBlock (Format "html") "
" ,Div ("wasteland-content.xhtml#ch4",["section"],[]) [Header 2 ("",[],[]) [Str "IV.",Space,Str "DEATH",Space,Str "BY",Space,Str "WATER"] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Phlebas",Space,Str "the",Space,Str "Phoenician,",Space,Str "a",Space,Str "fortnight",Space,Str "dead,"]] ,Div ("",[],[]) [Plain [Str "Forgot",Space,Str "the",Space,Str "cry",Space,Str "of",Space,Str "gulls,",Space,Str "and",Space,Str "the",Space,Str "deep",Space,Str "sea",Space,Str "swell"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "the",Space,Str "profit",Space,Str "and",Space,Str "loss."]]] ,Div ("",["linegroup"],[]) [Div ("",["indent2"],[]) [Plain [Str "A",Space,Str "current",Space,Str "under",Space,Str "sea"]] ,Div ("",[],[]) [Plain [Str "Picked",Space,Str "his",Space,Str "bones",Space,Str "in",Space,Str "whispers.",Space,Str "As",Space,Str "he",Space,Str "rose",Space,Str "and",Space,Str "fell"]] ,Div ("",[],[]) [Plain [Str "He",Space,Str "passed",Space,Str "the",Space,Str "stages",Space,Str "of",Space,Str "his",Space,Str "age",Space,Str "and",Space,Str "youth"]] ,Div ("",[],[]) [Plain [Str "Entering",Space,Str "the",Space,Str "whirlpool."]]] ,Div ("",["linegroup"],[]) [Div ("",["indent2"],[]) [Plain [Str "Gentile",Space,Str "or",Space,Str "Jew"]] ,Div ("",[],[]) [Plain [Str "O",Space,Str "you",Space,Str "who",Space,Str "turn",Space,Str "the",Space,Str "wheel",Space,Str "and",Space,Str "look",Space,Str "to",Space,Str "windward,",Span ("",["lnum"],[]) [Str "320"]]] ,Div ("",[],[]) [Plain [Str "Consider",Space,Str "Phlebas,",Space,Str "who",Space,Str "was",Space,Str "once",Space,Str "handsome",Space,Str "and",Space,Str "tall",Space,Str "as",Space,Str "you."]]]] ,Div ("wasteland-content.xhtml#ch5",["section"],[]) [Header 2 ("",[],[]) [Str "V.",Space,Str "WHAT",Space,Str "THE",Space,Str "THUNDER",Space,Str "SAID"] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "After",Space,Str "the",Space,Str "torchlight",Space,Str "red",Space,Str "on",Space,Str "sweaty",Space,Str "faces"]] ,Div ("",[],[]) [Plain [Str "After",Space,Str "the",Space,Str "frosty",Space,Str "silence",Space,Str "in",Space,Str "the",Space,Str "gardens"]] ,Div ("",[],[]) [Plain [Str "After",Space,Str "the",Space,Str "agony",Space,Str "in",Space,Str "stony",Space,Str "places"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "shouting",Space,Str "and",Space,Str "the",Space,Str "crying"]] ,Div ("",[],[]) [Plain [Str "Prison",Space,Str "and",Space,Str "palace",Space,Str "and",Space,Str "reverberation"]] ,Div ("",[],[]) [Plain [Str "Of",Space,Str "thunder",Space,Str "of",Space,Str "spring",Space,Str "over",Space,Str "distant",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "He",Space,Str "who",Space,Str "was",Space,Str "living",Space,Str "is",Space,Str "now",Space,Str "dead"]] ,Div ("",[],[]) [Plain [Str "We",Space,Str "who",Space,Str "were",Space,Str "living",Space,Str "are",Space,Str "now",Space,Str "dying"]] ,Div ("",[],[]) [Plain [Str "With",Space,Str "a",Space,Str "little",Space,Str "patience",Span ("",["lnum"],[]) [Str "330"]]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Here",Space,Str "is",Space,Str "no",Space,Str "water",Space,Str "but",Space,Str "only",Space,Str "rock"]] ,Div ("",[],[]) [Plain [Str "Rock",Space,Str "and",Space,Str "no",Space,Str "water",Space,Str "and",Space,Str "the",Space,Str "sandy",Space,Str "road"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "road",Space,Str "winding",Space,Str "above",Space,Str "among",Space,Str "the",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "are",Space,Str "mountains",Space,Str "of",Space,Str "rock",Space,Str "without",Space,Str "water"]] ,Div ("",[],[]) [Plain [Str "If",Space,Str "there",Space,Str "were",Space,Str "water",Space,Str "we",Space,Str "should",Space,Str "stop",Space,Str "and",Space,Str "drink"]] ,Div ("",[],[]) [Plain [Str "Amongst",Space,Str "the",Space,Str "rock",Space,Str "one",Space,Str "cannot",Space,Str "stop",Space,Str "or",Space,Str "think"]] ,Div ("",[],[]) [Plain [Str "Sweat",Space,Str "is",Space,Str "dry",Space,Str "and",Space,Str "feet",Space,Str "are",Space,Str "in",Space,Str "the",Space,Str "sand"]] ,Div ("",[],[]) [Plain [Str "If",Space,Str "there",Space,Str "were",Space,Str "only",Space,Str "water",Space,Str "amongst",Space,Str "the",Space,Str "rock"]] ,Div ("",[],[]) [Plain [Str "Dead",Space,Str "mountain",Space,Str "mouth",Space,Str "of",Space,Str "carious",Space,Str "teeth",Space,Str "that",Space,Str "cannot",Space,Str "spit"]] ,Div ("",[],[]) [Plain [Str "Here",Space,Str "one",Space,Str "can",Space,Str "neither",Space,Str "stand",Space,Str "nor",Space,Str "lie",Space,Str "nor",Space,Str "sit",Span ("",["lnum"],[]) [Str "340"]]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "is",Space,Str "not",Space,Str "even",Space,Str "silence",Space,Str "in",Space,Str "the",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "dry",Space,Str "sterile",Space,Str "thunder",Space,Str "without",Space,Str "rain"]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "is",Space,Str "not",Space,Str "even",Space,Str "solitude",Space,Str "in",Space,Str "the",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "red",Space,Str "sullen",Space,Str "faces",Space,Str "sneer",Space,Str "and",Space,Str "snarl"]] ,Div ("",[],[]) [Plain [Str "From",Space,Str "doors",Space,Str "of",Space,Str "mudcracked",Space,Str "houses"]] ,Div ("",["linegroup"],[]) [Div ("",["indent2"],[]) [Plain [Str "If",Space,Str "there",Space,Str "were",Space,Str "water"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "no",Space,Str "rock"]] ,Div ("",[],[]) [Plain [Str "If",Space,Str "there",Space,Str "were",Space,Str "rock"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "also",Space,Str "water"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "water",Span ("",["lnum"],[]) [Str "350"]]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "spring"]] ,Div ("",[],[]) [Plain [Str "A",Space,Str "pool",Space,Str "among",Space,Str "the",Space,Str "rock"]] ,Div ("",[],[]) [Plain [Str "If",Space,Str "there",Space,Str "were",Space,Str "the",Space,Str "sound",Space,Str "of",Space,Str "water",Space,Str "only"]] ,Div ("",[],[]) [Plain [Str "Not",Space,Str "the",Space,Str "cicada"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "dry",Space,Str "grass",Space,Str "singing"]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "sound",Space,Str "of",Space,Str "water",Space,Str "over",Space,Str "a",Space,Str "rock"]] ,Div ("wasteland-content.xhtml#ln357",[],[]) [Plain [Str "Where",Space,Str "the",Space,Str "hermit-thrush",Space,Str "sings",Space,Str "in",Space,Str "the",Space,Str "pine",Space,Str "trees",Note [Para [Link ("",[],[]) [Str "357."] ("#wasteland-content.xhtml#ln357",""),Space,Str "This",Space,Str "is",Space,Str "Turdus",Space,Str "aonalaschkae",Space,Str "pallasii,",Space,Str "the",Space,Str "hermit-thrush",Space,Str "which",Space,Str "I",Space,Str "have",SoftBreak,Str "heard",Space,Str "in",Space,Str "Quebec",Space,Str "County.",Space,Str "Chapman",Space,Str "says",Space,Str "(Handbook",Space,Str "of",Space,Str "Birds",Space,Str "of",Space,Str "Eastern",Space,Str "North",SoftBreak,Str "America)",Space,Str "\"it",Space,Str "is",Space,Str "most",Space,Str "at",Space,Str "home",Space,Str "in",Space,Str "secluded",Space,Str "woodland",Space,Str "and",Space,Str "thickety",Space,Str "retreats.",SoftBreak,Str ".",Space,Str ".",Space,Str ".",Space,Str "Its",Space,Str "notes",Space,Str "are",Space,Str "not",Space,Str "remarkable",Space,Str "for",Space,Str "variety",Space,Str "or",Space,Str "volume,",Space,Str "but",Space,Str "in",Space,Str "purity",SoftBreak,Str "and",Space,Str "sweetness",Space,Str "of",Space,Str "tone",Space,Str "and",Space,Str "exquisite",Space,Str "modulation",Space,Str "they",Space,Str "are",Space,Str "unequalled.\"",Space,Str "Its",SoftBreak,Str "\"water-dripping",Space,Str "song\"",Space,Str "is",Space,Str "justly",Space,Str "celebrated."]]] ,Div ("",[],[]) [Plain [Str "Drip",Space,Str "drop",Space,Str "drip",Space,Str "drop",Space,Str "drop",Space,Str "drop",Space,Str "drop"]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "there",Space,Str "is",Space,Str "no",Space,Str "water"]]]] ,Div ("",["linegroup"],[]) [Div ("wasteland-content.xhtml#ln360",[],[]) [Plain [Str "Who",Space,Str "is",Space,Str "the",Space,Str "third",Space,Str "who",Space,Str "walks",Space,Str "always",Space,Str "beside",Space,Str "you?",Note [Para [Link ("",[],[]) [Str "360."] ("#wasteland-content.xhtml#ln360",""),Space,Str "The",Space,Str "following",Space,Str "lines",Space,Str "were",Space,Str "stimulated",Space,Str "by",Space,Str "the",Space,Str "account",Space,Str "of",Space,Str "one",Space,Str "of",Space,Str "the",SoftBreak,Str "Antarctic",Space,Str "expeditions",Space,Str "(I",Space,Str "forget",Space,Str "which,",Space,Str "but",Space,Str "I",Space,Str "think",Space,Str "one",Space,Str "of",Space,Str "Shackleton's):",SoftBreak,Str "it",Space,Str "was",Space,Str "related",Space,Str "that",Space,Str "the",Space,Str "party",Space,Str "of",Space,Str "explorers,",Space,Str "at",Space,Str "the",Space,Str "extremity",Space,Str "of",Space,Str "their",SoftBreak,Str "strength,",Space,Str "had",Space,Str "the",Space,Str "constant",Space,Str "delusion",Space,Str "that",Space,Str "there",Space,Str "was",Space,Str "one",Space,Str "more",Space,Str "member",Space,Str "than",SoftBreak,Str "could",Space,Str "actually",Space,Str "be",Space,Str "counted."]]] ,Div ("",[],[]) [Plain [Str "When",Space,Str "I",Space,Str "count,",Space,Str "there",Space,Str "are",Space,Str "only",Space,Str "you",Space,Str "and",Space,Str "I",Space,Str "together"]] ,Div ("",[],[]) [Plain [Str "But",Space,Str "when",Space,Str "I",Space,Str "look",Space,Str "ahead",Space,Str "up",Space,Str "the",Space,Str "white",Space,Str "road"]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "is",Space,Str "always",Space,Str "another",Space,Str "one",Space,Str "walking",Space,Str "beside",Space,Str "you"]] ,Div ("",[],[]) [Plain [Str "Gliding",Space,Str "wrapt",Space,Str "in",Space,Str "a",Space,Str "brown",Space,Str "mantle,",Space,Str "hooded"]] ,Div ("",[],[]) [Plain [Str "I",Space,Str "do",Space,Str "not",Space,Str "know",Space,Str "whether",Space,Str "a",Space,Str "man",Space,Str "or",Space,Str "a",Space,Str "woman"]] ,Div ("wasteland-content.xhtml#ln367",[],[]) [Plain [Str "\8213But",Space,Str "who",Space,Str "is",Space,Str "that",Space,Str "on",Space,Str "the",Space,Str "other",Space,Str "side",Space,Str "of",Space,Str "you?",Note [Para [Link ("",[],[]) [Str "367-77."] ("#wasteland-content.xhtml#ln367",""),Space,Str "Cf.",Space,Str "Hermann",Space,Str "Hesse,",Space,Str "Blick",Space,Str "ins",Space,Str "Chaos:"],BlockQuote [Para [Str "\"Schon",Space,Str "ist",Space,Str "halb",Space,Str "Europa,",Space,Str "schon",Space,Str "ist",Space,Str "zumindest",Space,Str "der",Space,Str "halbe",Space,Str "Osten",Space,Str "Europas",SoftBreak,Str "auf",Space,Str "dem",LineBreak,Str "Wege",Space,Str "zum",Space,Str "Chaos,",Space,Str "fhrt",Space,Str "betrunken",Space,Str "im",Space,Str "heiligem",Space,Str "Wahn",Space,Str "am",SoftBreak,Str "Abgrund",Space,Str "entlang",LineBreak,Str "und",Space,Str "singt",Space,Str "dazu,",Space,Str "singt",Space,Str "betrunken",Space,Str "und",Space,Str "hymnisch",SoftBreak,Str "wie",Space,Str "Dmitri",Space,Str "Karamasoff",Space,Str "sang.",LineBreak,Str "Ueber",Space,Str "diese",Space,Str "Lieder",Space,Str "lacht",Space,Str "der",SoftBreak,Str "Bsrger",Space,Str "beleidigt,",Space,Str "der",Space,Str "Heilige",LineBreak,Str "und",Space,Str "Seher",Space,Str "hrt",Space,Str "sie",Space,Str "mit",SoftBreak,Str "Trvnen.\""]]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "What",Space,Str "is",Space,Str "that",Space,Str "sound",Space,Str "high",Space,Str "in",Space,Str "the",Space,Str "air"]] ,Div ("",[],[]) [Plain [Str "Murmur",Space,Str "of",Space,Str "maternal",Space,Str "lamentation"]] ,Div ("",[],[]) [Plain [Str "Who",Space,Str "are",Space,Str "those",Space,Str "hooded",Space,Str "hordes",Space,Str "swarming"]] ,Div ("",[],[]) [Plain [Str "Over",Space,Str "endless",Space,Str "plains,",Space,Str "stumbling",Space,Str "in",Space,Str "cracked",Space,Str "earth",Span ("",["lnum"],[]) [Str "370"]]] ,Div ("",[],[]) [Plain [Str "Ringed",Space,Str "by",Space,Str "the",Space,Str "flat",Space,Str "horizon",Space,Str "only"]] ,Div ("",[],[]) [Plain [Str "What",Space,Str "is",Space,Str "the",Space,Str "city",Space,Str "over",Space,Str "the",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "Cracks",Space,Str "and",Space,Str "reforms",Space,Str "and",Space,Str "bursts",Space,Str "in",Space,Str "the",Space,Str "violet",Space,Str "air"]] ,Div ("",[],[]) [Plain [Str "Falling",Space,Str "towers"]] ,Div ("",[],[]) [Plain [Str "Jerusalem",Space,Str "Athens",Space,Str "Alexandria"]] ,Div ("",[],[]) [Plain [Str "Vienna",Space,Str "London"]] ,Div ("",[],[]) [Plain [Str "Unreal"]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "A",Space,Str "woman",Space,Str "drew",Space,Str "her",Space,Str "long",Space,Str "black",Space,Str "hair",Space,Str "out",Space,Str "tight"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "fiddled",Space,Str "whisper",Space,Str "music",Space,Str "on",Space,Str "those",Space,Str "strings"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "bats",Space,Str "with",Space,Str "baby",Space,Str "faces",Space,Str "in",Space,Str "the",Space,Str "violet",Space,Str "light",Span ("",["lnum"],[]) [Str "380"]]] ,Div ("",[],[]) [Plain [Str "Whistled,",Space,Str "and",Space,Str "beat",Space,Str "their",Space,Str "wings"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "crawled",Space,Str "head",Space,Str "downward",Space,Str "down",Space,Str "a",Space,Str "blackened",Space,Str "wall"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "upside",Space,Str "down",Space,Str "in",Space,Str "air",Space,Str "were",Space,Str "towers"]] ,Div ("",[],[]) [Plain [Str "Tolling",Space,Str "reminiscent",Space,Str "bells,",Space,Str "that",Space,Str "kept",Space,Str "the",Space,Str "hours"]] ,Div ("",[],[]) [Plain [Str "And",Space,Str "voices",Space,Str "singing",Space,Str "out",Space,Str "of",Space,Str "empty",Space,Str "cisterns",Space,Str "and",Space,Str "exhausted",SoftBreak,Str "wells."]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "In",Space,Str "this",Space,Str "decayed",Space,Str "hole",Space,Str "among",Space,Str "the",Space,Str "mountains"]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "the",Space,Str "faint",Space,Str "moonlight,",Space,Str "the",Space,Str "grass",Space,Str "is",Space,Str "singing"]] ,Div ("",[],[]) [Plain [Str "Over",Space,Str "the",Space,Str "tumbled",Space,Str "graves,",Space,Str "about",Space,Str "the",Space,Str "chapel"]] ,Div ("",[],[]) [Plain [Str "There",Space,Str "is",Space,Str "the",Space,Str "empty",Space,Str "chapel,",Space,Str "only",Space,Str "the",Space,Str "wind's",Space,Str "home."]] ,Div ("",[],[]) [Plain [Str "It",Space,Str "has",Space,Str "no",Space,Str "windows,",Space,Str "and",Space,Str "the",Space,Str "door",Space,Str "swings,",Span ("",["lnum"],[]) [Str "390"]]] ,Div ("",[],[]) [Plain [Str "Dry",Space,Str "bones",Space,Str "can",Space,Str "harm",Space,Str "no",Space,Str "one."]] ,Div ("",[],[]) [Plain [Str "Only",Space,Str "a",Space,Str "cock",Space,Str "stood",Space,Str "on",Space,Str "the",Space,Str "rooftree"]] ,Div ("",[],[]) [Plain [Str "Co",Space,Str "co",Space,Str "rico",Space,Str "co",Space,Str "co",Space,Str "rico"]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "a",Space,Str "flash",Space,Str "of",Space,Str "lightning.",Space,Str "Then",Space,Str "a",Space,Str "damp",Space,Str "gust"]] ,Div ("",[],[]) [Plain [Str "Bringing",Space,Str "rain"]]] ,Div ("",["linegroup"],[]) [Div ("",[],[]) [Plain [Str "Ganga",Space,Str "was",Space,Str "sunken,",Space,Str "and",Space,Str "the",Space,Str "limp",Space,Str "leaves"]] ,Div ("",[],[]) [Plain [Str "Waited",Space,Str "for",Space,Str "rain,",Space,Str "while",Space,Str "the",Space,Str "black",Space,Str "clouds"]] ,Div ("",[],[]) [Plain [Str "Gathered",Space,Str "far",Space,Str "distant,",Space,Str "over",Space,Str "Himavant."]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "jungle",Space,Str "crouched,",Space,Str "humped",Space,Str "in",Space,Str "silence."]] ,Div ("",[],[]) [Plain [Str "Then",Space,Str "spoke",Space,Str "the",Space,Str "thunder",Span ("",["lnum"],[]) [Str "400"]]] ,Div ("",[],[]) [Plain [Str "DA"]] ,Div ("wasteland-content.xhtml#ln402",[],[]) [Plain [Span ("",[],[("lang","sa")]) [Str "Datta"],Str ":",Space,Str "what",Space,Str "have",Space,Str "we",Space,Str "given?",Note [Para [Link ("",[],[]) [Str "402."] ("#wasteland-content.xhtml#ln402",""),Space,Quoted DoubleQuote [Str "\"Datta,",Space,Str "dayadhvam,",Space,Str "damyata\""],Space,Str "(Give,",Space,Str "sympathize,",SoftBreak,Str "control).",Space,Str "The",Space,Str "fable",Space,Str "of",Space,Str "the",Space,Str "meaning",Space,Str "of",Space,Str "the",Space,Str "Thunder",Space,Str "is",Space,Str "found",Space,Str "in",Space,Str "the",SoftBreak,Str "Brihadaranyaka-Upanishad,",Space,Str "5,",Space,Str "1.",Space,Str "A",Space,Str "translation",Space,Str "is",Space,Str "found",Space,Str "in",Space,Str "Deussen's",SoftBreak,Str "Sechzig",Space,Str "Upanishads",Space,Str "des",Space,Str "Veda,",Space,Str "p.",Space,Str "489."]]] ,Div ("",[],[]) [Plain [Str "My",Space,Str "friend,",Space,Str "blood",Space,Str "shaking",Space,Str "my",Space,Str "heart"]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "awful",Space,Str "daring",Space,Str "of",Space,Str "a",Space,Str "moment's",Space,Str "surrender"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "an",Space,Str "age",Space,Str "of",Space,Str "prudence",Space,Str "can",Space,Str "never",Space,Str "retract"]] ,Div ("",[],[]) [Plain [Str "By",Space,Str "this,",Space,Str "and",Space,Str "this",Space,Str "only,",Space,Str "we",Space,Str "have",Space,Str "existed"]] ,Div ("",[],[]) [Plain [Str "Which",Space,Str "is",Space,Str "not",Space,Str "to",Space,Str "be",Space,Str "found",Space,Str "in",Space,Str "our",Space,Str "obituaries"]] ,Div ("wasteland-content.xhtml#ln408",[],[]) [Plain [Str "Or",Space,Str "in",Space,Str "memories",Space,Str "draped",Space,Str "by",Space,Str "the",Space,Str "beneficent",Space,Str "spider",Note [Para [Link ("",[],[]) [Str "408."] ("#wasteland-content.xhtml#ln408",""),Space,Str "Cf.",Space,Str "Webster,",Space,Str "The",Space,Str "White",Space,Str "Devil,",Space,Str "v.",Space,Str "vi:"],BlockQuote [Para [Str "\".",Space,Str ".",Space,Str ".",Space,Str "they'll",Space,Str "remarry",LineBreak,Str "Ere",Space,Str "the",Space,Str "worm",Space,Str "pierce",Space,Str "your",Space,Str "winding-sheet,",SoftBreak,Str "ere",Space,Str "the",Space,Str "spider",LineBreak,Str "Make",Space,Str "a",Space,Str "thin",Space,Str "curtain",Space,Str "for",Space,Str "your",Space,Str "epitaphs.\""]]]] ,Div ("",[],[]) [Plain [Str "Or",Space,Str "under",Space,Str "seals",Space,Str "broken",Space,Str "by",Space,Str "the",Space,Str "lean",Space,Str "solicitor"]] ,Div ("",[],[]) [Plain [Str "In",Space,Str "our",Space,Str "empty",Space,Str "rooms",Span ("",["lnum"],[]) [Str "410"]]] ,Div ("",[],[]) [Plain [Str "DA"]] ,Div ("wasteland-content.xhtml#ln412",[],[]) [Plain [Span ("",[],[("lang","sa")]) [Str "Dayadhvam"],Str ":",Space,Str "I",Space,Str "have",Space,Str "heard",Space,Str "the",Space,Str "key",Note [Para [Link ("",[],[]) [Str "412."] ("#wasteland-content.xhtml#ln412",""),Space,Str "Cf.",Space,Str "Inferno,",Space,Str "xxxiii.",Space,Str "46:"],BlockQuote [Para [Str "\"ed",Space,Str "io",Space,Str "sentii",Space,Str "chiavar",Space,Str "l'uscio",Space,Str "di",Space,Str "sotto",LineBreak,Str "all'orribile",Space,Str "torre.\""]],Para [Str "Also",Space,Str "F.",Space,Str "H.",Space,Str "Bradley,",Space,Str "Appearance",Space,Str "and",Space,Str "Reality,",Space,Str "p.",Space,Str "346:"],BlockQuote [Para [Str "\"My",Space,Str "external",Space,Str "sensations",Space,Str "are",Space,Str "no",Space,Str "less",Space,Str "private",Space,Str "to",Space,Str "myself",Space,Str "than",Space,Str "are",Space,Str "my",SoftBreak,Str "thoughts",Space,Str "or",Space,Str "my",Space,Str "feelings.",Space,Str "In",Space,Str "either",Space,Str "case",Space,Str "my",Space,Str "experience",Space,Str "falls",Space,Str "within",SoftBreak,Str "my",Space,Str "own",Space,Str "circle,",Space,Str "a",Space,Str "circle",Space,Str "closed",Space,Str "on",Space,Str "the",Space,Str "outside;",Space,Str "and,",Space,Str "with",Space,Str "all",Space,Str "its",SoftBreak,Str "elements",Space,Str "alike,",Space,Str "every",Space,Str "sphere",Space,Str "is",Space,Str "opaque",Space,Str "to",Space,Str "the",Space,Str "others",Space,Str "which",Space,Str "surround",SoftBreak,Str "it.",Space,Str ".",Space,Str ".",Space,Str ".",Space,Str "In",Space,Str "brief,",Space,Str "regarded",Space,Str "as",Space,Str "an",Space,Str "existence",Space,Str "which",Space,Str "appears",Space,Str "in",Space,Str "a",SoftBreak,Str "soul,",Space,Str "the",Space,Str "whole",Space,Str "world",Space,Str "for",Space,Str "each",Space,Str "is",Space,Str "peculiar",Space,Str "and",Space,Str "private",Space,Str "to",Space,Str "that",SoftBreak,Str "soul.\""]]]] ,Div ("",[],[]) [Plain [Str "Turn",Space,Str "in",Space,Str "the",Space,Str "door",Space,Str "once",Space,Str "and",Space,Str "turn",Space,Str "once",Space,Str "only"]] ,Div ("",[],[]) [Plain [Str "We",Space,Str "think",Space,Str "of",Space,Str "the",Space,Str "key,",Space,Str "each",Space,Str "in",Space,Str "his",Space,Str "prison"]] ,Div ("",[],[]) [Plain [Str "Thinking",Space,Str "of",Space,Str "the",Space,Str "key,",Space,Str "each",Space,Str "confirms",Space,Str "a",Space,Str "prison"]] ,Div ("",[],[]) [Plain [Str "Only",Space,Str "at",Space,Str "nightfall,",Space,Str "aetherial",Space,Str "rumours"]] ,Div ("",[],[]) [Plain [Str "Revive",Space,Str "for",Space,Str "a",Space,Str "moment",Space,Str "a",Space,Str "broken",Space,Str "Coriolanus"]] ,Div ("",[],[]) [Plain [Str "DA"]] ,Div ("",[],[]) [Plain [Span ("",[],[("lang","sa")]) [Str "Damyata"],Str ":",Space,Str "The",Space,Str "boat",Space,Str "responded"]] ,Div ("",[],[]) [Plain [Str "Gaily,",Space,Str "to",Space,Str "the",Space,Str "hand",Space,Str "expert",Space,Str "with",Space,Str "sail",Space,Str "and",Space,Str "oar",Span ("",["lnum"],[]) [Str "420"]]] ,Div ("",[],[]) [Plain [Str "The",Space,Str "sea",Space,Str "was",Space,Str "calm,",Space,Str "your",Space,Str "heart",Space,Str "would",Space,Str "have",Space,Str "responded"]] ,Div ("",[],[]) [Plain [Str "Gaily,",Space,Str "when",Space,Str "invited,",Space,Str "beating",Space,Str "obedient"]] ,Div ("",[],[]) [Plain [Str "To",Space,Str "controlling",Space,Str "hands"]]] ,Div ("",["linegroup"],[]) [Div ("",["indent"],[]) [Plain [Str "I",Space,Str "sat",Space,Str "upon",Space,Str "the",Space,Str "shore"]] ,Div ("wasteland-content.xhtml#ln425",[],[]) [Plain [Str "Fishing,",Space,Str "with",Space,Str "the",Space,Str "arid",Space,Str "plain",Space,Str "behind",Space,Str "me",Note [Para [Link ("",[],[]) [Str "425."] ("#wasteland-content.xhtml#ln425",""),Space,Str "V.",Space,Str "Weston,",Space,Str "From",Space,Str "Ritual",Space,Str "to",Space,Str "Romance;",Space,Str "chapter",Space,Str "on",Space,Str "the",Space,Str "Fisher",Space,Str "King."]]] ,Div ("",[],[]) [Plain [Str "Shall",Space,Str "I",Space,Str "at",Space,Str "least",Space,Str "set",Space,Str "my",Space,Str "lands",Space,Str "in",Space,Str "order?"]] ,Div ("",[],[]) [Plain [Str "London",Space,Str "Bridge",Space,Str "is",Space,Str "falling",Space,Str "down",Space,Str "falling",Space,Str "down",Space,Str "falling",Space,Str "down"]] ,Div ("wasteland-content.xhtml#ln428",[],[("lang","it")]) [Plain [Emph [Str "Poi",Space,Str "s'ascose",Space,Str "nel",Space,Str "foco",Space,Str "che",Space,Str "gli",Space,Str "affina"],SoftBreak,Note [Para [Link ("",[],[]) [Str "428."] ("#wasteland-content.xhtml#ln428",""),Space,Str "V.",Space,Str "Purgatorio,",Space,Str "xxvi.",Space,Str "148."],BlockQuote [Para [Str "\"'Ara",Space,Str "vos",Space,Str "prec",Space,Str "per",Space,Str "aquella",Space,Str "valor",LineBreak,Str "'que",Space,Str "vos",Space,Str "guida",Space,Str "al",Space,Str "som",Space,Str "de",SoftBreak,Str "l'escalina,",LineBreak,Str "'sovegna",Space,Str "vos",Space,Str "a",Space,Str "temps",Space,Str "de",Space,Str "ma",Space,Str "dolor.'",LineBreak,Str "Poi",SoftBreak,Str "s'ascose",Space,Str "nel",Space,Str "foco",Space,Str "che",Space,Str "gli",Space,Str "affina.\""]]]] ,Div ("wasteland-content.xhtml#ln429",[],[]) [Plain [Span ("",[],[("lang","it")]) [SoftBreak,Emph [Str "Quando",Space,Str "fiam",Space,Str "ceu",Space,Str "chelidon"],SoftBreak],Space,Str "-",Space,Str "O",Space,Str "swallow",Space,Str "swallow",Note [Para [Link ("",[],[]) [Str "429."] ("#wasteland-content.xhtml#ln429",""),Space,Str "V.",Space,Str "Pervigilium",Space,Str "Veneris.",Space,Str "Cf.",Space,Str "Philomela",Space,Str "in",Space,Str "Parts",Space,Str "II",Space,Str "and",Space,Str "III."]]] ,Div ("wasteland-content.xhtml#ln430",[],[("lang","fr")]) [Plain [Emph [Str "Le",Space,Str "Prince",Space,Str "d'Aquitaine",Space,Str "a",Space,Str "la",Space,Str "tour",Space,Str "abolie"],SoftBreak,Note [Para [Link ("",[],[]) [Str "430."] ("#wasteland-content.xhtml#ln430",""),Space,Str "V.",Space,Str "Gerard",Space,Str "de",Space,Str "Nerval,",Space,Str "Sonnet",Space,Str "El",Space,Str "Desdichado."]]] ,Div ("",[],[]) [Plain [Str "These",Space,Str "fragments",Space,Str "I",Space,Str "have",Space,Str "shored",Space,Str "against",Space,Str "my",Space,Str "ruins"]] ,Div ("wasteland-content.xhtml#ln432",[],[]) [Plain [Str "Why",Space,Str "then",Space,Str "Ile",Space,Str "fit",Space,Str "you.",Space,Str "Hieronymo's",Space,Str "mad",Space,Str "againe.",Note [Para [Link ("",[],[]) [Str "432."] ("#wasteland-content.xhtml#ln432",""),Space,Str "V.",Space,Str "Kyd's",Space,Str "Spanish",Space,Str "Tragedy."]]] ,Div ("",[],[("lang","sa")]) [Plain [Str "Datta.",Space,Str "Dayadhvam.",Space,Str "Damyata."]] ,Div ("wasteland-content.xhtml#ln434",["linegroup","indent"],[]) [Plain [Span ("",[],[("lang","sa")]) [Str "Shantih",Space,Str "shantih",Space,Str "shantih",Note [Para [Link ("",[],[]) [Str "434."] ("#wasteland-content.xhtml#ln434",""),Space,Str "Shantih.",Space,Str "Repeated",Space,Str "as",Space,Str "here,",Space,Str "a",Space,Str "formal",Space,Str "ending",Space,Str "to",Space,Str "an",Space,Str "Upanishad.",Space,Str "'The",SoftBreak,Str "Peace",Space,Str "which",Space,Str "passeth",Space,Str "understanding'",Space,Str "is",Space,Str "a",Space,Str "feeble",Space,Str "translation",Space,Str "of",Space,Str "the",SoftBreak,Str "content",Space,Str "of",Space,Str "this",Space,Str "word."]]]] ,Div ("wasteland-content.xhtml#backmatter",["section"],[("type","backmatter")]) [Div ("wasteland-content.xhtml#rearnotes",["section"],[("type","rearnotes")]) [Header 2 ("",[],[]) [Str "NOTES",Space,Str "ON",Space,Str "\"THE",Space,Str "WASTE",Space,Str "LAND\""] ,Para [Str "Not",Space,Str "only",Space,Str "the",Space,Str "title,",Space,Str "but",Space,Str "the",Space,Str "plan",Space,Str "and",Space,Str "a",Space,Str "good",Space,Str "deal",Space,Str "of",Space,Str "the",Space,Str "incidental",Space,Str "symbolism",Space,Str "of",SoftBreak,Str "the",Space,Str "poem",Space,Str "were",Space,Str "suggested",Space,Str "by",Space,Str "Miss",Space,Str "Jessie",Space,Str "L.",Space,Str "Weston's",Space,Str "book",Space,Str "on",Space,Str "the",Space,Str "Grail",Space,Str "legend:",SoftBreak,Str "From",Space,Str "Ritual",Space,Str "to",Space,Str "Romance"] ,Para [Str "Indeed,",Space,Str "so",Space,Str "deeply",Space,Str "am",Space,Str "I",Space,Str "indebted,",Space,Str "Miss",Space,Str "Weston's",Space,Str "book",Space,Str "will",Space,Str "elucidate",Space,Str "the",SoftBreak,Str "difficulties",Space,Str "of",Space,Str "the",Space,Str "poem",Space,Str "much",Space,Str "better",Space,Str "than",Space,Str "my",Space,Str "notes",Space,Str "can",Space,Str "do;",Space,Str "and",Space,Str "I",Space,Str "recommend",Space,Str "it",SoftBreak,Str "(apart",Space,Str "from",Space,Str "the",Space,Str "great",Space,Str "interest",Space,Str "of",Space,Str "the",Space,Str "book",Space,Str "itself)",Space,Str "to",Space,Str "any",Space,Str "who",Space,Str "think",Space,Str "such",SoftBreak,Str "elucidation",Space,Str "of",Space,Str "the",Space,Str "poem",Space,Str "worth",Space,Str "the",Space,Str "trouble.",Space,Str "To",Space,Str "another",Space,Str "work",Space,Str "of",Space,Str "anthropology",Space,Str "I",Space,Str "am",SoftBreak,Str "indebted",Space,Str "in",Space,Str "general,",Space,Str "one",Space,Str "which",Space,Str "has",Space,Str "influenced",Space,Str "our",Space,Str "generation",Space,Str "profoundly;",Space,Str "I",Space,Str "mean",SoftBreak,Str "The",Space,Str "Golden",Space,Str "Bough;",Space,Str "I",Space,Str "have",Space,Str "used",Space,Str "especially",Space,Str "the",Space,Str "two",Space,Str "volumes",Space,Str "Adonis,",Space,Str "Attis,",Space,Str "Osiris.",SoftBreak,Str "Anyone",Space,Str "who",Space,Str "is",Space,Str "acquainted",Space,Str "with",Space,Str "these",Space,Str "works",Space,Str "will",Space,Str "immediately",Space,Str "recognise",Space,Str "in",Space,Str "the",Space,Str "poem",SoftBreak,Str "certain",Space,Str "references",Space,Str "to",Space,Str "vegetation",Space,Str "ceremonies."] ,Div ("",["section"],[]) [Header 3 ("",[],[]) [Str "I.",Space,Str "THE",Space,Str "BURIAL",Space,Str "OF",Space,Str "THE",Space,Str "DEAD"]] ,Div ("",["section"],[]) [Header 3 ("",[],[]) [Str "II.",Space,Str "A",Space,Str "GAME",Space,Str "OF",Space,Str "CHESS"]] ,Div ("",["section"],[]) [Header 3 ("",[],[]) [Str "III.",Space,Str "THE",Space,Str "FIRE",Space,Str "SERMON"]] ,Div ("",["section"],[]) [Header 3 ("",[],[]) [Str "V.",Space,Str "WHAT",Space,Str "THE",Space,Str "THUNDER",Space,Str "SAID"] ,Para [Str "In",Space,Str "the",Space,Str "first",Space,Str "part",Space,Str "of",Space,Str "Part",Space,Str "V",Space,Str "three",Space,Str "themes",Space,Str "are",Space,Str "employed:",Space,Str "the",Space,Str "journey",Space,Str "to",Space,Str "Emmaus,",SoftBreak,Str "the",Space,Str "approach",Space,Str "to",Space,Str "the",Space,Str "Chapel",Space,Str "Perilous",Space,Str "(see",Space,Str "Miss",Space,Str "Weston's",Space,Str "book)",Space,Str "and",Space,Str "the",Space,Str "present",SoftBreak,Str "decay",Space,Str "of",Space,Str "eastern",Space,Str "Europe."]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] pandoc-1.16.0.2~dfsg/tests/epub/img.epub0000644000000000000000000017051012645626062016506 0ustar rootrootPK (g9EEPUB/UT $TS$Tux PK f9E EPUB/css/UT $TS$Tux PKf9E5EPUB/css/base.cssUT $T$Tux S[0+"[V 6`x"3ɽ4o%v%ӴWT3:>sxL`{.{I2 -*4PtW~|[2eI~?<Ǔ%1 n!6 a dX-֌:hϖ,)+`F2 ElY S6 #zFGϚW2H5*]&5ň\{phVhF; =wd:36-H=1Υ+(œC%$k3% %Bj ;&TUߐ6_ft6-I=2VË)rAWTgXXھ,㶅t[iٞU.ui/lPg`5#l|%Jͧeq9/$^)EH<#X {XnFtxkPTm~ Bͥ K.):/PKf9EX~EPUB/css/svg.cssUT $T$Tux ]A EbRc (F6 Ķ .wW:TkcؕGg88i흿G:2O.ƃRڶ>Zh72%860‚%sPGfxPKf9EnCeEPUB/css/math.cssUT $T$Tux uMN0FV$"5DjM±ElGTwhFx3s|$Oծbo2ĐR!c]i|˺]}dx7Ӥ,hN>y~$F r޴CM4%Wي%6]oݽdheBh+GT|ݙ,VA_ IV߲T8-"~>}IBl'PK g9E EPUB/xhtml/UT $T$Tux PKf9EjN2=g !EPUB/xhtml/nav.xhtmlUT $T$Tux Z[S8~nj^vg\ hw˔ }Tl%b[IN~$;$vlYsѧGKe[sib9YoG={<? ŅIj]vǏcA$gԍzl"GXB7#`7HsAd*'O'#DZHD’Yڎ7{n1ь/3KD?O`c!5$! 5O % ؞|*Q5ʜk<‰Tk6V/( 2xdc-SxKE,ɂc~X^m 0'Rl NST# sq aV=%q xCfD&Qĥ߭3 BWj:@fJpF 7߮so7 m0#ǭ XpRf/U\ՐFw ؅yy9Atw?lRiv_I-hx׺Zۺ/VVġ~жz&m( Zj TgE|p"I٪ABAW2d>8FYRZ }~Lo5%3 G>X+c_>G>-tIՎLb:KHBkv yӺa9ÂX.rdǛ]1vp#<ۃn:fN(wYq SC1gcuO$4{En_w[+*Sh{{e~'Ԩ_jMl_>Wt!27o5k\9/!ÞK!e.#r:-s.zdڢ;^ž5Qbcۋ2ON@bv:@Mz gH n=}V 2y21sV e5JXɺ^v2VqeN^$=)G9^DC$"(MKj2kdxJ>TgOB. />? $6?Duϑ}]jd{~jPKf9ETPxp#EPUB/xhtml/content-images-001.xhtmlUT $T$Tux Un0=_1hmPʡqhΡzk!HzdY)4CfF.`Ʀe᳁g*ô}v}eAW|mg>ZX% ێ|0°hz*Kiѫ!eaGXTmҎH>יKs SɂmL*y$ꨦѲ`V?2 -!5LU&-J9z$xeqҭ vnv;+x>X%KC45usMG#'DX m.At8PoAj.\?Wz`@1W l)zp#3-s f. AuC42:\7WiђhO[Ïv~:?yf^u7S9?hGӷ[_>zߛߜQg g PK f9E EPUB/img/UT $TS$Tux PKf9E6%L',EPUB/img/multiscripts_and_greek_alphabet.pngUT $T$Tux mwVQEg9뎘o AP~6ղ} TvTJ-#[F;Ybq_.wg5~ :=}x: W(*((pGc)Eʤ͞xxߞqT{t7[-;AȎTEM\](^IdDɮ`kW¾+^p讘 1@,i4r#׷eckZf#00`m|E uDIMIũv{wIt52,i,5dŻS|x~g 3ٞecg63cYJfv~5YsphhiC'6"Q!},+3Ӹ 0rۻ;s[F m(9e.[q6<\o^W>r;$ۛ븎Atllnml V~l'G<;0rrrB4,vĴolI-o.e!oMA {RpZ(!$wqĚr^vze`ePIIc.rO8!bJKAzz>W+lS=+*b J]D9_mݖSx?SX5/_>k|^@ M7m-̂[ڜiv8f.kJ'Z@ L#h1.PNYLkZ~shH7&Q3Q9= sOp:KO'6c%%"W7$qppШmŅ\wF\tRc 9Eo*pe(\˿~C;wh`O8A;SDDp_cAAfE% D*Jc^%:/JCY%Q4 e#<-h݈a-插}DEۣFyzet]fy -,-߼ySh3pc±focHEQ]@u 3\$j~é盐014X;˧x͘6U9i{Gwf׭Iׯ_ j$L z8OcHHڐU&]jPWh|x(xL┰x5ߥ'3hzW2BSvŶ#ݼKqdAvKKK%%k~ Za345&L`l*G(=''c;I=me~b ldccG03 R+uA=߾}Bg+E/}.=7~o6_$N&8n4ΰz6,ƊUTHhhe~56bP<0@(ۢ3OZV??? C2&߻ ˽GbF>5pݞF>stcUW8a>;TBzI6MIųymH ?K]TFtvvRX P--/,`=&UqTᛟ?h!0D^ {o:;}e~vVc^žaQZ*]Pph}T"z\NdZEjHHȟǻgd rEdptl_A*SkJod3#v3‚0Mau0~*Tkjd/A0x`|tt)T2BLZ6An`βxjQi VU{q8"-c<[5)=$9~a5|͡=ƍ;@+ Ng $JPag+sn}JeE؎t)Kd_ww#1Qücd,jC8ǹٷNQB^tXg9ٹ܄krׇ -';_vQY>J^xu>wsua? Ԅw@>|U/ʈ"86\+Fp'EUikh6Lia!ⷬ瞇3)ȶ aEX0S\7bG+1:R7:E0ϗ<wKN8*VIx gsIwZl'ēnkiܼ uw>#",&7R6^{=ԥQGSxYYYUv/7z=TUoNMM=R1zf=U%0?LlGWgg2DmeiIl:Kz8)LYMނ::Cv`E*ջ6W31\uŭcu1\Ɩu*ɳkkjϯa Ȥ}ۍWf*12~"v6;;KoPءZ*7k1r:%k'fƲw3c ]r$$t|D`XІT0=%,ܜ1;T֔{##yyWW&@g?O||NjJz>N^pBZQ~5^g;::4rvA?)@Bu62t F7;$캕suH}>^[]]}/hVX5OO#-C+&&&.e(1Bl>+$/m&ffRzġ!Q} ?9YKIS;"k:j>* ?Uơ0_uvt^ EKyfԼbcS/,fpv(ac y$ꛊu^tL ?;{0߅a9]8C\ld < @VAch~, xQOCf@|!;ܜ0̮L3'(􇸋hT)|FF}_[JJ#Cp!-ԧu߭[/aJStF?uj0-af7jϭx, 1[H|IkXu #)1C%9X{9'O =Oú~}ŸSK] }]l;ok&@ +ѩzӷrp?ERWӭlY]舖I{ocAT * >Wj͉ \@|R265L;0# b):T?B)Q8Wl25-Nݻ >2hFk^-Muu_h-VV^"HIظkBY%m!PBF@CHBw8ZҩWUvT'iut6)q&l_Bua)a3<FE;@ZE<22JȘ(6Hx-}֪WQ+*7N@L=w~XEt,"->)\H8Mb5bdp&dg;I/9ҒB4gVjTZ$<ϟY \hpj~f)*+Z&􏶑ZZy^ CÇ^*U@[šU]հzU].)0L% ӊ*w35$}4lPpkCC8$$$h|ILL sL`jpXlB:[{Tp2zgEBW7DfaT5~Ԅ'&~8H./*\ǀ[5-~,,,p:/:s!+JfhhXX\WPPP봻'A9ٍU38#V  k 44D;2ܫB?`rl*CtӧOd#ccB6,{KP0g1׭N`ܼOO25:-*{MPBkA߫DkEQϻy"׭#82B0D!%yŽRh 4{Ӕ;iCTP#'}%Ż{= lmj9HՅ6Jp@ s !Gh9t&DsKZ\/~4Dx/heC# @W}rj&\DA}0>݀[ 2*hgȈ;N=E DP.wkaa~Α+ /sҰ^E= X VXfDLDja!q]]LOs!k7qd dб"/o@gފQOZ !)h]jVNe 嶙xQt(]Hf?𤵓ccJaBksuo<MkɌK衐PP}*Q픞`ù kh&""BQkŸVh?'LKVAhk@SXaIVnKWP?KaǿJš "oxc6 A _es[3GߥH5( y&,}u71h)䛀U.'gP*?>{u \<=J  P3[dڮFLfwT 7Y1Mt9h'V9IG3J0J̺["cc?VJ:kk%`3 11AY\_0?xQUT%3suI2ZX\RC#'m]Ȕ44y$_Vo^nC'.;ۙkr?]̞7w_ Ln4BQ<0iuטe}~fPP7!>A4ɚKHFgO@+Ŋ:[E=@Y5Э<=XV>VV~K3X͑᱐or/JH$?^ᾯu}Bj]YE%J þ;Qޣ`xZX[1Y`zX5u.zqq?=sU)dG[ cz+fi/n`'GFj/T{[L;=)So`57RAx=&j$x߾}|hrSeoI{vb A Y'Q{LT4''iMHfq~$uxy:3Lu õފz-{ UnP>in޻'--}~Tu_?+ؼ'_J*/=es̜g~mj |(Zޔ^ϪB+EGx<gf$ ->0^ݲ?zWoI+M:\Tz(|q)ߥW7ܸ'ܜٜ zӎg9)}_}/_~eujx>8VowMgkinWQ?PzݫRk_ O&20m#S'&q's[vԧ?i\gbό;w)>in,6i˅Kh[(^'^1nAUe:vyf-0lֲQy%[W9oW:>g]wfcYYgv4vΥGOn(y.^&ea}UI}9lޕ#cgk5m͘?-bHm[jyif?k&?֒S']If 0PK f9ElEPUB/img/nonimage.xyzUT $T$Tux FAILPK f9E EPUB/img/check.pngUT $T$Tux PNG  IHDR.2~sRGBgAMA a pHYsod IDATXGYTTWF1guML*A`hC/`2aSD@%JJ@ԬYݍ1ꪉk]E ̰yhe~ZF*t<0@G6(edUO7.wB{($a(r/Y4$}=id}0ժ@B@7rY e@ArxfcTX/ LTehq3jȇA(+:{_{G&^;MF/p^j=eXTqi1ދ>ΐltdɭ1@ȺgD,\sE: )7`rYAӽT)1(w 1QY Y 6b>G[Jߧ@h1+kAqNFl}7_a9O\}J58qJR&| "}=e$~^(nZMgpv!-R$ Z~2zQ8nQ ~E}lmұWΑD;Dani63|7)AC|E2%YU=ry@6Ż)jiݒMvK b6 &vΙZÊ0$H{>Z27 D5rmZ&m"r;zl$#uwyDSV9y `>ia$;}s/( L93ۊw¸zyB od[=Y ؤp~6y?ۯq_MJiCϥiE\=~B Me$~'~ZU{,2Nz]RTJrQI]LgY"b.@ @P_P<  [n kάeB~He *.Yf'.v-Bi31-لd9~%m n)GUF0Ao ԡFVYLtH© Xi Zy2^*}mOslR$-AVE! Jz;~Hlk̫  9`pAx(㱎3IW_oBYںۨSрGѶAY1K {z?`8hXzK*ϠO.#~\P\{?w=y:4q)G7nhmkmio9v߯^#Rfc}*a@0T)MBj1[4@u~H& m&oWVOcw^ ؀IENDB`PKf9EXF89EPUB/img/Skype_logo.pngUT $T$Tux {Sqw(P8ŵP/Pܽ(VܮS8G7/d3dgwg/r[ADo ~I@5Sx_-H7"ߎ5$ih *hozLfQ')-<\jc]$`c&3Pv78!DhHZî Y$W J"K_4as#{=$Wv kU>;!7.Q!4xo?o0{l8XsACO[I7--м8eOwր@PE(i`kճZl~$_Rf&(JycGfU-DZ#u+׌l_i29E]݊xfyhzR <0Ē]ƬBY TPj9gMS~ǬpI|Ep+x`P8l0R3E0y&5$6) <n.k6h *+`Jɇ7Gr=3Rln>h143]cUڣę>G5l:-+sۢgLkf蔰z c}BcSyn4P`nE'K!qdl`a> WoOƬEI?P-)%0+f: ~P3 \ rKAĺX RKx-e FfP Pg3(3x6SY:@hA . 8]*78LX}-Ur]& [fӣ>G*ry0V{hzd͈I.ҶZ_w^Y8u>ʯE]@mF E[:pG%U6+v'3cllN ^_ztha_xsSr oS (lqQȋ>PJ6 2R @ RK췢cj+oD.ڒl܃q{t^(e 2 ZžlLPRb)8ɲzgO9sB#v#lQ>֠{L&랦/o~{G5t{X>3Ɠh=~ڟ' ~E DY Zr\ 5{ŧ[88أC,*N13RUHZ0zjd}.;D4U!12U$ tQ$Cʨ;?kҢ2w䲈dKmT"'ũ1󶌉B0~]r+}e}D QUFrP`o?+Nֈ)Ôe Hp{n/ D.,ZVL7x]ozh0`\[Q+NgFHQR S$QOd Ahf6;΢Lmឪ@@|f{[y,!fX60i ԁ#3A/ \:\$ٞvx+kωۛnf˶?Z@$ ]pH\CQqډbj?!I\(.$dE7vcD$.=N%#+7$+iaX܍q3Mnɫ7_#E.(Ilcn =b.kӥmQ0l0k0f6x33k&Ғ}o3VLh=IKl~&:z=b-cc%wm7# )u8RB4K%7s#]%L׋ LmL: c&&%GA q] qOɠ{)S'QMPO.,a觏|>TPbZج;(LK&i[Ql=j9^^c3W-,!xr9^C&iD.Ȗ~Aw?kQ%Κl wgȇBtm-„v~'wDajTY>H zpk7ybcxpV&_U_\_ABo,L4k>k9 >7$(5<1 Dyoa^3RjVZj3$`&zR& Pw)JyAdWG~ʢi%/IE8'3,@*k Dkm񗀀=e5bl x+Ȉur qB/AN8]4=(Ԃ$]gi 'bڊ }"WO C5*BvԠ9er%f٫1DzBBP:c{–@/zg/8l $ ͎XѾ'c3KfN\V/%};J@%G;^ҟʯvz`Xz9SM3D׽0i5l4¾>'?pBe0܃ $$4v 5郯ך 4aJ~SfmZ,' L%µt´1/x|ܫöoOJM9&_b7?&ylr!mws "+Vk%95Ye`jJa!sPZI8G.VAF== ~Tqfb`>uFzɖ l2~[xij%"Zk]6 jL%KFK>w%Kjx#~GcMԀ!8 _0{JJ[X 9fJyJ0 35; XެkO r/ 4#e7@0/?Lx/#V s > ZW=j/^X9h)Ǘ/d̘Qˊ#&`38hĈ+=3 t7KyjC}jD'U'R[}FY q 54{#l9'z A3MֱY>NAL'/:M %iզʮ&5"C28x+%/4 MA?y}_N$Xz+ƶXP  ߤ^d`\.L|pI4e&fNOTx'gznti(=i;o܃3 s.'l%3Xmj^j$v۸!*hg9i˞E?at^9_Szں}Y;{锺,r_XY~o(+ﬡNGuR nJavWqJiM)wE/-/9AkFR'o %8fN%Mx{uV͍!Uq^"{F!uۘJlCzoQK\%:MZR+OAq[8UusVמדgr  /ը)y^#S9jܳ]E5 dG"'0&JcGeJ(ٟ@UXDJdgc͡i1<dž_H&q?jUHWfT~sCZܫ#±UoB=v,{Xy1͓w-!$EĦ şN]Y$=WV%Ol93яxX IYuډ\Y'6 7v kO%d8Xke}RP ޥ~/<$efS d!īKi~ )84Iui-ph~|7jEGas/@a:]}_ע[Rb}u5MMКP}۩p X Z`  RaD\'h6CWr5]~y_]zwjrRZ|%E̾nWb7%y|Y2-XV%G=|+?YO珮W:F1n;׾p43$>4Qz5et8Tq%:8&Z%:~yAy]56^9~GR,$f>eY:I DyB՞fc.0>)tTe_6IVS@o{(Brwwe'mkqy%]Ea싩ofRjt^k D;,f.a:QgcKx< jRC;ʣ Ycss( 'c~n95D,FhUg?r`W1KD=YBu~DŽ 6PA| ZƼczU0zNv wȔ3oꄽIߎ%T׺y7`/$'';ksm楏Uȹr O)ῌumWd h0~ ?D1Ur gMA? }(7P؛y"(dzoIٛGVf3pd^߆ \Mӑa 1 @s + ?Lr=XziSGbCdg dcCERW}k̳j_Kk7y7oQ=7* wIDW\""|IMT?8:4?M("\bYB(&3yB.ڨQ fjr&޷vϫ%%ifEr@WF7d 9@+"<G\?3,v|t4NW&ץe);Q`|[lߙtTL4CŔPvROpg2b+/A1"9,raf-]j ]ƳRxd]ap>Zo4rm㦫kX͚ 4q8_ȷʨu N*iJJUM1tX_8pwghyf "k[4ԛ2⏜nyǣʿߝjBNJ}, y{C nCk]7߬dQS7h;L$9m/L_ >W B%(WНϷүd 6K$%j6X^Nl&`jЋ4IR4!̠j56L.I~yqaKi6E~'dIN8hc AT19vHwc/x+ Q_j"Mcb +zFpm璯HlXX1uhV #֜F []O0a,)j ;-/.+K1 ^NEΕT9 ]'$;W*1VQN+CNwCr,a% 5YLŇ9* Z}NuEi,)NFx~aZHPjv \V|NyE$ʑ<R)*K S }mcYb Sϯ;Z94 #wdYyKHb!s/6 j"q69npH|VS7D>7F)J;Fgݖy2 = ID߽mA|<|mdt$Qg oǢ&U!mGܾ/\lR9.Ze1pv/U[O7g?Wa\(,,b%TљxHHټYl~ h.Em لVuﱾ,ٳt#v+MP~x-Z]lN.,l}G22dD2#8xNk1u}\ la[XƘtZږ'*rb CljGjD`aosەc|̸ JaC/|r?\`0aJ!|OEJ9A\5,YdW0>^7p( ~% B~7W<d;Ɯ,qО{Es}"?/{4$R&w&dmnŸ)=rS6k{odMya`PT+N8~WvDfϾ&=E~akcFj|fLn8SH{Pj:i͏\i_ lQy@r٬ߟRPTۮsv3Q . Wr(dk<}W'Qʜ.H_䶺ñ-A1 RgQoS 69?0Mn|hrNmN r~R}yN2F@! 2=&% @+BFlљc7 ϶c3\~;U#F2Wv2&K4er| pq۔;S1kˏˊqĆ i܄Ǖ*Vni\ ʽ@ i(&':3YT'|I}FW\-ӖQgq*Ra}R)yL}z#FVԆM>&RJ!%4`&²~yOXջ\D41_չk =LhJvL 5ĒE;+VQoM0y]#ollncr^)FkrĚ$60kEώfI3%n7AeAcZ kaf3$KKf}Vփ)6< 8tmT^@;Gs*$-:c8D¯P$ΎY}zlVh_Qiq&&03ďG:oG-kT=iE׵S*!ȍ[819E[pEJf*+$z o|-ۡ]LlR*GH-r/lj֗:M,(PikvYъFxz`{La&yʹjO,GP:~H`54N͒yl7 d%LAgL+ }%s *?p΁OA-(G㖣 #bf5q [M5;nL onU  Jfř{S:}ex 64ZppSaدkb]3*Gt0mɘ5pH]g.VlFxFѴ9vzpN+ 2Rj3&E%Ax.1\!;3dzTMD40Q׻lg33CAOP!$tjtJͰUrPGS>LyO9qc0+ycRex:w vgL:eڇm~1QD tu]/BKVi 6 `/~3f`ED~Fcrp1\;5~81t77sRZ攡S0,5 2"6619m[lvCyX`%n"nS=甙ELOn.Ӽ& ~|_ı bg4 _|`s2|x,\.-(&aofט:uu!1SփANsw}ju-+d߉׫ .FY8-6M|T d#BVț?D}` }vW`.yM|+npijGZ~mW«Oı] o F;@mVǙ#Q۳rbHj_ ,1lۢ $%c?'e8/y#PW.TcT~-e1_"qģҰEN(yϨ_pP3wUCN;إPq+|?AyǿG[VY7ZN:@> qg-*Tz/ _$+;yttɿ%a ޔ߽UC #vr;j]RW ŠlHrm΢{pM C&)AlmzQ3zW~dJELowt΅@u +dž{q-{>"Z vg&}/fßU"r^H s+(d׺ÉEnx0mϖl&FVJdZ 6Wm&՛  >ck9}J,u,\M߯{ňAz(1H|K|e鑎F*)5}c+z4bb+Ƕ]lmt ==Fc~1LxZ0ͥ Os@[_^孁4^Ӫ~(JўFGU(FZ |O9aTJovVkRJyX6lc )lF}h%=cfm2ϓ9nCkO`RB`u:Vky$E-31~ދ9,'2`J1 8ze$VE?$-~d<6,\oG9OW<!ϷS!?Vg?=}^$:+ѱÞ_I/qxѸ&sw3z,"tie3?׋<30RVq*)z6.+ޟ'FpRdۨN"Iy T6P#=*9:o*P9a}ǏGyK 9?4^EA_xLw$ oHwE˜^}1PܮW 뢥$NlX[~Ļ0h<ڒw' B},y@}kgg;$_K3R#)}h{GS khAZdاx;D2klS6z*Ǧ r]jw 1W8$SjLeT  eQM\U.@ rN wEn%&|Ea>GKmgOcef)R! ˹HO099 n1Q^,L[JN7ʫ'#]H'd? ([JɉJk/(WP|ېޜa {0ݜ{|0ړ Z#i@|GݝNռ!cr,$+*>!Y`؃e cPRЏKx9Cu,biÃ"ױdCw$'(/Bq#Eks"?EUaB$^zb:P@}m/;ա(p- y]V%NI54aem{hvr',DDt=QzdKSkW+(VtSםN 6  ` ;T:Ơfw 5"qEJ3E-|)/mlŒqݳ/["ֱ]uuD [NJ/&Hjs1.6%M>-,pTB&0 Z)^nt'LCݎ=%NY}?xI2'OD ϧ3E3% mFM ,otoGeP=93j]`{!bf;k)%cbpaZY B%o5HL'\s=is!~75l)z3; {21PTq;V-긒̻AHVJ Pl;I;jrqZ09:LsEwAHA7\H'~F*﮴u 'U.Rec J9fL3ZtـMr]ݬ'ffl[_eߎ#mlYoK.?sQvZ|b$q"(&ӏG;fN{e>ps b~2d%Pnd~wU rajw,2Ρ5rQt^ ;A8JQk;8\F(h6sb\BPgC28ye#`x2aD!^)!ԉ?]0,ՊR1L|vLƍ^"5Oiނ鲠M=쾒džS ۊiO)iX,IqubVMnD!0+lX Է4k8;y0KEE zFgL=d6PAjl ӴzAݭ Fxl9II> o #D18>*^FH_q+(QuU :$VzLT:ΚuJ_+ix}7Ix!"?[i_9riy֣÷|}.l뮌u1jSH};^OX;Qk@~3leo;7e:HOxTkt ѵxXog~*y>FdR 8E 'Mt<(v\WV!rW gw x |Qƪ∌ߛ _FlkS#/ewY箷\AMMUxL4q-$~6]lF؏og3 ۔eSBJ?7pV0\:|~܋D'kneJY_R"r&mBkc :Ez.>_O+07@fȋ}|*tl;ìx-9a3N:O܀3D&[u˖mu^G: tN@ÈF`JKm*^g9&lT "&I+O5*8{ҾQi/@zdr  |O/Q~d;4nͺVKWf:ط©`B4W+qBiR~$7!2L-EuvlhƠQON07 ]!_Kߣ_2s0 TlH l{|||#K_%m;BzUW@go gxWN %` =/I>_Hׯ00ip/_QUT+mPK f9E EPUB/img/fallback.pngUT $T$Tux PNG  IHDR.2~sRGBgAMA a pHYsod IDATXGYTTWF1guML*A`hC/`2aSD@%JJ@ԬYݍ1ꪉk]E ̰yhe~ZF*t<0@G6(edUO7.wB{($a(r/Y4$}=id}0ժ@B@7rY e@ArxfcTX/ LTehq3jȇA(+:{_{G&^;MF/p^j=eXTqi1ދ>ΐltdɭ1@ȺgD,\sE: )7`rYAӽT)1(w 1QY Y 6b>G[Jߧ@h1+kAqNFl}7_a9O\}J58qJR&| "}=e$~^(nZMgpv!-R$ Z~2zQ8nQ ~E}lmұWΑD;Dani63|7)AC|E2%YU=ry@6Ż)jiݒMvK b6 &vΙZÊ0$H{>Z27 D5rmZ&m"r;zl$#uwyDSV9y `>ia$;}s/( L93ۊw¸zyB od[=Y ؤp~6y?ۯq_MJiCϥiE\=~B Me$~'~ZU{,2Nz]RTJrQI]LgY"b.@ @P_P<  [n kάeB~He *.Yf'.v-Bi31-لd9~%m n)GUF0Ao ԡFVYLtH© Xi Zy2^*}mOslR$-AVE! Jz;~Hlk̫  9`pAx(㱎3IW_oBYںۨSрGѶAY1K {z?`8hXzK*ϠO.#~\P\{?w=y:4q)G7nhmkmio9v߯^#Rfc}*a@0T)MBj1[4@u~H& m&oWVOcw^ ؀IENDB`PKf9E=UvEPUB/img/complex_number.pngUT $T$Tux < J$٩\HYd$+*#+{%#eeqFHg=^/^^{~~>OEJ&J""(E9-x8Y+#2oĎZ 2DE, Ye95X8rN#y1ѧ8HR'ǑQSen䤵.kmJ^&{VL EMXukV[iU"Pˢ-ڱ)Le[r1̥<-OwZlF5fu^(n0dkS"S]_!"Ȱ61_gGf!ܖJ:ZPr7AsЪf@͛~*Box/+pA#H& *$V9V^ppQ8 ))Ѿ߿5"P $*/nP:8{xtd/f̙ZFFjhB]IO>ٹrEpxyy1NξWᐥxWW'a) KLy˿' N%Q3L/4>v%"'1Vd&7^Pu'fcc;<&6VАwm}n4$?)$?CE1r;zoSŇakSCC)- #!"Zka[]\\|Rn͈`o6GQRV~Zr*湺=s.'''} dfo$N+qfgeQ33wZm ;wxw'QGEe*Bᷔj噎U#Oe2{^2M7yBcSN..1XmLw| Ѫ:0}A#55<ǶM  ־yW48[91Z0,e{-`,LLAAa2ijm0dZ ZrĆIoyT>rsNب(>k[}8ܒGY cl9WlT̾Ń9[(Ĵ:indS8i2{Xjsڴ'xs}cqv֖W7.[}ci]RRäL˺$}Z6ԞٖpOEg/T>Fnb"_.B[\Z:08xֿxЯ*Rn=,,=Pb#(QLCS^nOx=җϲ2%a[~v||Ua c9[FGY .Z$N?2Cn-;^>ikWQTlKQ.뒓EC9~"FՌpkrgZEm"AW$P**tttceD=\nqqrrraHt9Zť UAGǗnÑR{5;ׂXMsTW\릚 괗/)eg֎Teis'IzIJJ3޸x#Zx(Lx]ZTq=x% 0ɥ~V86J*IjnJ7xI!NW1וP=RJZ0Y7.?GGqוij(Uh{n[[~}jb-߇I^}9 6>9>*0ĀK }ԟR]n˖]S\ ؽ?(E.NPXx87--p^AР+<;*mlSyhiSnA=>-W2qT 5<x*JUUC+~~kVDE)3duݽs #FOů?}:lÖ`3G.[ RL}:Z_5~vdog7h `n;>T'_$n\&~8Y4z=|Qߘp}prT&vZ~!ϛIm]]h>}zYy1i%@{U? W8bA.5ixM(IPgfKQ,W@a0ea> J|L)RizFw9R-,, WJ\NEZ ē䘘񤦦gN<` J,z3pj\:0AFO0drjW\ϟdde gEGG1|2N 03D!Bx @HKKm=gAQ2ͥgSCgVT$6m( (hy ,.&'͓D_+%>adBʿiv{ʃ}jZS'E/ :fss>{s ZZZGKWk#:VfrsqM =oi<&k}e4Vuɷ###%ؘ`6ڃ~5L2_*4~ɛduvz]J[٭'oh 2^AzA){ ć'SRW|2l|?n"lo;ΪXYYnHHn"@ SSवEC璻޷N`uuOrDFl;hcXcQGu ̪*fP;TTfG[;[A`M\\V:a9nhkcxxplZ{r7žG u'IAlb߇HXmow[5DxS8\l~,dM \DKlyRbnjnb?>ќQK o2ۙl\6)րV=LF8\reDjll,##CF[G'dee8^ZY9ΑFzm0-ZpŘrSK #ĭ[R#c Ouuu&VPvU_::0;/ۺFSXUǪ8دMK|c{# S-aW]tn?S55&0b@;&0;/x_4+){mϻ@XuPVe7;W/ro˳v&A]gZLMy%\Cc?:zi_O4i&'-lm|7}!G;%/K+7W*#Jrah4 $@[XƤ%Ic@BUf%Yjf˅δS _;1f5D7Ascccw뫦Ichhg&;;D?d։_׬JbL̖66x;N|cPHxxv~%Xŋ!&Rzi:=xpj45OgT,γ(׳17IKOg@iMNi镰f\< "t}s L\ j-_T[xtk.X]~ _YLI|G߯Fz[D2.^^N!sxX9LNj&<2x 5"'%G1:!Ǐi0)gT7Hi9T \.<2Ba$ۜ44Al/]C_Xm:_ L鸵:0L\k)᷶ yne+CsRC uVV"襤]ֶnDLLC׶ Ku3#e> 3W¹Z ~gaF;.`SM'8YȨ9s.$$^c\lZ~m~}g/9E_9YxU/|_Ï(W7[Zq;midz6]]yCe^gӥKx;>ұp݂6{Mi xŭd=hypM eKٿ\yZC g{Gՙu}ݴ؅ȃ[:l^p_i#Ao3lrSLU}Kw<^z~&JMzSMgn|m+y͇85v>mϟ[~}qSc2ĺWLIʻeq^N#8|ߝuĒiG jk% 񽉽ZGv=N;gwNZnX]A zXФo,[k}CucY>OZiSe~^Wĕ>17Í]yF۞sLiKyË2̍C}ke⓶,vk]_N2=%g|2OK6݃,\z&\denc2'6.~يCk,׾e7.뚝[;{N ^tn~sM1Cg?l%YӯZ}DKul7C׬G j7FUM]w.IxtJ艿 "sU- c7D|q+ԓ#*׶(hSzgVL{-+wBɿ{⠶e1,u$׌3hlHx}5}buI<8qhn5.'K\5̋Ӈ^oTJ2xv[77/BUcIpÔf_i7+xsgwSUwz;|߀zc69[{{uy'rWyS&杉NQ:uKO;wgE1^>56.C#3/x{ߣe Hx]zPzutonyΪH/MzYv}7iíf́9kƯ-~X9*Zs/oG֧]yկW7C;lTE~mJY3$'G3[x4kÐPKf9EqEPUB/img/cichons_diagram.pngUT $T$Tux -XX]%DF\%C@UR@Q$KCs~p,g91e%=$yA#i)1EB1k d()mtKAw?u 5a=Eb㟁623Odأ D*-&0F yƯjI<|L೩@'˱ΣCEչIbibxTp$qZwj AqfmtiYڐj_P6?.ӣJ;|sue.[d0bNVa€!***LO.CQAA)/{K/y' Tu$%̿ h71aTe曃6DD ,:'9\14A#KLqo(M`J0szg ё731?Nn g0:\U Attt0-[1@RyCD\u:g\^!IJ$\u H,HOQgiň*+ofp!133ֹTjpU%=G9 nHk9|zm>⋃ $ @=7IyNW͑@AqDŽLjz:Cme2nLLL lV Z,r8?+vvyő¤ug(gMuTR䩘s͆,ҖSst.*,,ܝѥU,KCpCؠ$fmolκZ6a4/{9\{ƆL`IQOWWɎ{ skk  K7&5(^'MN6LOfȰ!zTTYFðNf/ȅ*kb<nlvcw'kݑC`GGG ۈ428"b1mc3Tvc\4ѬǦ=Uﯳ3Rn:c? IIa7:PSCZ<&\ϥ>|8Xm]un{ mX_羜z%B(,'-Þx>Pcx`87uD>6P6K7gdRgm%_h&)OLd9.4_ mSo7bҳА IҒ˗/ K)n찼=NSPP'n@'oNN^PndBVb`b}6A+|V?Ӄo'}^ T=-'}K# I hӉilz'#ft|wlB Noجu?U%@Ym n3aoQZ7\{fJ!\f,%EEЧH85꜆0M=N; o 5yJ_v {P ZSv 444'vV:*k5~Aɽlۆ ư뛂Mjyd ,opP>"*O|G1 <;`RZ[_ gdfpp4b3}y|~țnAO_  1ebcgt83xaXsAL|PaffV{diiy~p7l?eC>eRz[ :EG:jxy`2M33_eYuPBNGG ʢZϻDaO))*$$Eؘ.΢MߙH9i&vRSQ1xbvl_.Q[QZZ眱a|>ԐNI>Rvux'Ә7~NtU>[iJLܟAtUHYb>qs-J35c&"OHC#qѤvp34\@#?S5dꁊE n$%%ᒨZM׋&!*g·6ܦӰ=%F.ӆ6UU t 49f89F*=QwbˠCˢ̢sb@ni =dD!dk\XoZ]{yx<}><&6#Xa>-x&g(= 81P"`<7~X*M2Yy xs ʆ@{ ;c=g`8aR*5y˾g+LDSj{( Zex׍0A H&w,C1U Mj덠嶀_*j[j@N\uSH`fR=u\<fs[Znf+ӌZ@^1EͥKSEp !y5*>+T]|XV79X-*,g*Y3}t[t%0<˗mk?{\"JK9%xhvyZ1wx( ^lGU՘BI8S-O^ ]la-`I/^ 8ZͯԻ4B}cMX8V'405>nr3Z:r>@.o_ 6mcRTi󟴽8޴8A*SbڢwAhzCw,["i` Ӏ{Ŀ87Np:xˣ? _{4wU\sn6_=o.0aiVϓWӵ=. NQd]&ƻWQZUr_}Q7Z;0;E% MEs:t[{8i0daն;J(`si ۔}y4)z^vG.PI(}6=qVثrOf0.yM"k~mv7_]Sa܄8cl{>ϗa*U K/ȥR(J Rq(I0P|wFFFXDBjl >;00`HBݗF ‰4`An?"{ɵ&ELXC49 *ߟ#uK\IV___vِvٶS|/KiEEOjUVv0igQKH#b/zDEEC#"BBp:1 z۹ *m:7˭<BZKŵ$xzmXn!\7OGq}\ #˽iN'b0IV- tn ԘT&f+xm#۫c{8--_ʌŧFSD}IABL'3AjW|;ڟclE*eC W*17<<1@W(T}+lJmwT~JאyAEG:b'pSV%Y o,=L}pǧ(]لw:PRZW knn1]q8lʎEBCC Ϊ8:>>6ܟ,}p9V緹W:9Mǽ0bͽS[[H^'+،_Ohe% שּׂ€D i]#{0-PI8Vu.WWVDYYY lh޾};wڷwTEfGp8,8Ps.@@pQ1}""!A=@EBm}rz:ȧ-Kres8=9&mbݶ;wdk0tOނS7ycǠ+yxz~cxd裡!^Ғ0a7X@` kJkL/^x $6$\O =v[ʈHwD8ѥ5[SSA'G# OVw!I&0ruU\\<><)] ;]yf3텆$rD]?cu##{2OMHu uܢ=TrQRRSsr> SӼM&[9qD{8hV#Dgm\(EXxH }qA8׸~jp"W>^,.jX6wtwuu0AC@jN;k ^4"ؓ 11a<}X_@$6d9fAGJ2%#v;/pEJܛOg A(]ov$t{'tqJM~;=u6Vk/5!׷9]ぽ@򘱾W\RbАؖ@([ #inO( *@AbؿiQ GsT4I-'E`=rtt |G08mWCš_?ޝ d.jlL[ V#!# N8H|K23G__; Р?{6edX|.8τ?OM0Y* dl0T*XMPo@1·HP b;@Y%Uzy5%hXi3NO5~uOJ䬄e+3f}Tǩm;54-*x?K!-.+V PKf9EܨQW EPUB/img/Maghreb1.pngUT $T$Tux uVwPO0R+.M Haq)z) 顈[5(b"" *D4"lH'@("=$$!͛yosw?|w0Gkcrp! ~q *(Bf@SK ͍h=_H[K1*ҐkYkj!4f Kv/Viu=; :Gf1j Uj?0`f#%2o]`!: D`-ߑᙞ~QU @L1Ȋ+Y&5~\]6*`"5-MqFTD6_1.i(_aQ\%wNC1ZTqUo]I?2iN2^6" rf/q9TF#C#Ί,gthuȣJ*_#hW}H(bol܉ K}(>}Y`0CC.]%ϴRc|[vxyݑ#dm}gœ!EȎ.!˚삺o{(+2;ˆ934m4]QzyeCK#gi joo0ɺ{`qkV7{mmm{O45.0L*8-z0Gڕ^jbg'7~} ׉ iG\_9ۋ<:`\r1RR,R5VR+U8q F=5M&AҰH#dC܅獤t;㰁 +ٞsGn,UvC)Z{ߕЬq= hHL*;:/wyWs t֩rߓ'~2w.r6 grK"\XP`&fB^&GIkeǨbnn^L y49z>,L{8ϵ9sFDMak./ڦ^Ogܨn$ x>Cy:%/[xpXw F2BYIfUXC` Yf("h+#V6ظ ѹ)3S\Xg/}uިr H[pu " =(vz?~|v2혫3ZGemq˿w_x9R*J-LtnvSfόUmMЩp}͵<)Vν2|m؁l xs'y$*n:Jr?_c>!|4zJt7u#ul> P!%U!ګn}xJ|G69mMrL*CgA3GN徔L(D9+s5]iYd[ޤ7fﮃPop8WǡenY A _ N49p@:VM/8"?wԠaTWMuѫz%[o_qq>n XA+㤑@%񉌷:G!uSiI"NCbCU#t. h6,p W?ͦ(ĄNh2 :F!e `?+Qv-Xo"tC8z\#4y:~|%[Rm(4YZ5[KL1*k,u&<]8^[izg!q⪷tf#U ?O;/!m=ad4}I w?K9DT}Ø>4O"TሐssDDDi *"znbbF\\LX$!VZZF6ȵ?^dկSV!)6s@Nx Ԋhr"br"V "" DD%ejDa89 .'^l>0Ԗ WJjlR82zl&]=}Cs mwgkg(Q_SR/^Jιv=7{<,*~TRֶ]C^y;ʘd0g◯Koʪ_"ٿKK΁8b/Q rfk9 rA&)GX 'H+36W]̱g8_<19 yi` ,"|gHz'^b8b{@uM"r(oT}0\8,J톞o4 5/x0U1576I컬j۩Ю]diL [.DAO?FTܒYL}A3-GQHa7M!c^*v:}tjwHhO#=7N4NB@N0F%{X߄F?bk b%t`C碜Sɺ Ixڄyq4 IҏEo^[ᚂM EѡF RnM;}ƲVj T!Pdǂ$ځ`ꏊȴ|%#\d*^iwv{*d3fۨwE] EKl.["ON< %eZwɱj OGE}RrU)>uyfKbmO&įge<f)0 k7lòN=$)EbY.HȐ~kD+yU5˶~'r/0poL/A6{1fnF4O݀׌rs3c0{aU7TAE-cbg"sΰ`:d g%DD;y0`ڭ!e{)beͻhh$*7 /A(tʶ'fmؘɫt-EZm/(>l`3g$W!@E%މLUWzUWM%e gkl{R ,@ކLHVqȓ=ʓ?zi.it~sW8bʬ+߻6\C̬ V.t|4خڪ^ 8LɘjEТ-B^/LFSH؞De9ߢ)-F/xT?f^0p0U.~@!{w){W~?\wߜwQ|D%utN;nK]`xHjCmhfoWoGP3iI2d˙Jo4t ˾fS[A}삓mNA{ Ϫ/ ˍ<5?Yeag*7kx$d? h"4<+r]0#0vQF͛bfkelmϴUXM *EpO{ U@:"1MsMm<_S~doC0jQ/gNw^Dbp~dOզXt4f!dPpIoJc̚8 7 n (+آ; 8c WOhy e s>(fLXN0&ȑvNe>x1Q^wfE Ѵi<𳡹؍!"lJΜp ֦~j.;NG3m_bsB@@0b[F(sløo2r1չ:g渙%:m3976u'@/U9ݺ/&x&sC'\sdyǡ`E- y|{®K& *3tscuci|Y#;mHEY4%2sh%U>i*_Slr1xS-‡$[-Xğ̉{?/;d(=W|$ET^l~B:KK 0C*8nN(8 0.>]prWNtbZQ{ܺd; ROr-:(|7PK f9E3-33"EPUB/img/ElementaryMathExample.pngUT $T$Tux PNG  IHDRR3 pHYsod vpAgR!Ǵ\IDATx1 Cp [ZZqAq1o X *"%tlNENeiĊl=SrCwiҩȮ/[iPc c^Du#øVyR̋z^Ȉ:, =gƕ9A"=C['Iȇ9xEV"`lu _NJ/*!U}΀nKaJhIAơ!UHCё] / fO<|KzRVdE!7O]{[gB" ]|6K/#φ-]HcOfPa "+g^4B3!*Bj;ևkHsexOս5h Cc7!%eHL,`fHBO/-e_ Em%bBߩYH"C*%Ly&#ɑg2y.@#%Hr䙎Gː3I<3ɂJ<fMȊY$Β7h:1sO¯z.Yβ \,+r${YJTɌL,ʁ̢,ʁRudYEQY:QEe&<24Jā,ߩxE~82uRYT@s\t]" i#SUޞ.zTXtcreate-datex320505 1221246020Afߴ.zTXtmodify-datex320505 1024206020A BoIENDB`PK(g9EWh̟EPUB/package.opfUT $T$Tux Wn6>oU~ְ@t(C $Zb,*IvcR-;Jl "g3!GYq< xlOYQ9 i&VT>tb(9\n޺œ*(c ^Ѡ>ɧtCεl'9_?;+Yl,F!$P&bPܺ^o{}۟tzCσߏk@RW13h*?P3DU[Dekd3L 3HDi y6ɯ -&|V:ڋGm'lVg] i \ڞi3CXj gD݈-FX%pǦkgY;zJR d,&K0eYoD(e.`Ilw(̚ '^heme1>ޔRyR5 )- r7icl eZqgFY~m\גvZl(zPB15!޵Ah vqGY@ĎK8hp& 킵ҳ`W8r\],VЀ%Bl,VÖ)eIN1 d>i]B7t̡A1fMG0&eA!JqP_ʲG y|ɸ-Sxyʄ/4O 2?PK f9E META-INF/UT $TS$Tux PKf9E\ˬMETA-INF/container.xmlUT $T$Tux UA 0E=Eѝkz1j0 M*z{JͣNCV/װi gLxNƁ`0LvF"q+n쉳ycf>GS(A$w>PzFuce|;:*Ze~F10O9.?"c<)^PK f9Eoa,mimetypeUT $T$Tux application/epub+zipPK (g9EAEPUB/UT$Tux PK f9E A?EPUB/css/UT$Tux PKf9E5EPUB/css/base.cssUT$Tux PKf9EX~EPUB/css/svg.cssUT$Tux PKf9EnCepEPUB/css/math.cssUT$Tux PK g9E AEPUB/xhtml/UT$Tux PKf9EjN2=g !EPUB/xhtml/nav.xhtmlUT$Tux PKf9ETPxp# EPUB/xhtml/content-images-001.xhtmlUT$Tux PK f9E A EPUB/img/UT$Tux PKf9E6%L',>EPUB/img/multiscripts_and_greek_alphabet.pngUT$Tux PKf9E`P<n4EPUB/img/check.gifUT$Tux PK f9El 9EPUB/img/nonimage.xyzUT$Tux PK f9E `9EPUB/img/check.pngUT$Tux PKf9EXF89DEPUB/img/Skype_logo.pngUT$Tux PK f9E B}EPUB/img/fallback.pngUT$Tux PKf9E=UvEPUB/img/complex_number.pngUT$Tux PKf9E%&e ɜEPUB/img/check.jpgUT$Tux PKf9EqޥEPUB/img/cichons_diagram.pngUT$Tux PKf9EܨQW EPUB/img/Maghreb1.pngUT$Tux PKf9E]7EPUB/img/circle.jpgUT$Tux PK f9E3-33"iEPUB/img/ElementaryMathExample.pngUT$Tux PK(g9EWh̟EPUB/package.opfUT$Tux PK f9E AMETA-INF/UT$Tux PKf9E\ˬ$META-INF/container.xmlUT$Tux PK f9Eoa, mimetypeUT$Tux PKvpandoc-1.16.0.2~dfsg/tests/epub/features.native0000644000000000000000000004343412645626062020107 0ustar rootroot[Para [Span ("front.xhtml",[],[]) []] ,Div ("",["section"],[]) [Header 1 ("",[],[]) [Str "Reflowable",Space,Str "EPUB",Space,Str "3",Space,Str "Conformance",Space,Str "Test",Space,Str "Document:",Space,Str "0100"] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "Status",Space,Str "of",Space,Str "this",Space,Str "Document"] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "currently",Space,Str "considered",Space,Span ("",["status"],[]) [Str "[UNDER",Space,Str "DEVELOPMENT]"],Space,Str "by",Space,Str "the",Space,Str "IDPF."] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "part",Space,Str "of",Space,Str "version",Space,Span ("",["version"],[]) [Str "X.X"],Space,Str "of",Space,Str "the",Space,Str "EPUB",Space,Str "3.0",Space,Str "Compliance",Space,Str "Test",Space,Str "Suite",Space,Str "released",SoftBreak,Str "on",Space,RawInline (Format "html") "",Str "."] ,Para [Str "Before",Space,Str "using",Space,Str "this",Space,Str "publication",Space,Str "to",Space,Str "evaluate",Space,Str "reading",Space,Str "systems,",Space,Str "testers",Space,Str "are",Space,Str "strongly",Space,Str "encouraged",Space,Str "to",SoftBreak,Str "verify",Space,Str "that",Space,Str "they",Space,Str "have",Space,Str "the",Space,Str "latest",Space,Str "release",Space,Str "by",Space,Str "checking",Space,Str "the",Space,Str "current",Space,Str "release",Space,Str "version",Space,Str "and",Space,Str "date",Space,Str "of",SoftBreak,Str "the",Space,Str "test",Space,Str "suite",Space,Str "at",Space,Link ("",[],[]) [Str "TBD"] ("http://idpf.org/","")] ,Para [Str "This",Space,Str "publication",Space,Str "is",Space,Str "one",Space,Str "of",Space,Str "several",Space,Str "that",Space,Str "currently",Space,Str "comprise",Space,Str "the",Space,Str "EPUB",Space,Str "3",Space,Str "conformance",Space,Str "test",Space,Str "suite",SoftBreak,Str "for",Space,Str "reflowable",Space,Str "content.",Space,Str "The",Space,Str "complete",Space,Str "test",Space,Str "suite",Space,Str "includes",Space,Str "all",Space,Str "of",Space,Str "the",Space,Str "following",Space,Str "publications:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "."]]]] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "About",Space,Str "this",Space,Str "Document"] ,Para [Str "This",Space,Str "document",Space,Str "focuses",Space,Str "on",Space,Str "human-evaluated",Space,Str "binary",Space,Str "(pass/fail)",Space,Str "tests",Space,Str "in",Space,Str "a",SoftBreak,Str "reflowable",Space,Str "context.",Space,Str "Tests",Space,Str "for",Space,Str "fixed-layout",Space,Str "content",Space,Str "and",Space,Str "other",Space,Str "individual",Space,Str "tests",Space,Str "that",SoftBreak,Str "require",Space,Str "a",Space,Str "dedicated",Space,Str "epub",Space,Str "file",Space,Str "are",Space,Str "available",Space,Str "in",Space,Str "additional",Space,Str "sibling",Space,Str "documents;",Space,Str "refer",Space,Str "to",SoftBreak,Str "the",Space,Link ("",[],[]) [Str "test",Space,Str "suite",SoftBreak,Str "wiki"] ("https://github.com/mgylling/epub-testsuite/wiki/Overview",""),Space,Str "(",Code ("",[],[]) "https://github.com/mgylling/epub-testsuite/wiki/Overview",Str ")",Space,Str "for",Space,Str "additional",SoftBreak,Str "information."]] ,Div ("",["section"],[]) [Header 2 ("",[],[]) [Str "Conventions"] ,Para [Str "The",Space,Str "following",Space,Str "conventions",Space,Str "are",Space,Str "used",Space,Str "throughout",Space,Str "the",Space,Str "document:"] ,DefinitionList [([Str "1.",Space,Str "Locating",Space,Str "a",Space,Str "test"], [[Div ("",["ctest"],[]) [Para [Str "Tests",Space,Str "for",Space,Emph [Str "required"],Space,Str "Reading",Space,Str "System",Space,Str "functionality",Space,Str "are",SoftBreak,Str "preceded",Space,Str "by",Space,Str "the",Space,Str "label:",Space,Span ("",["nature"],[("style","display: inline; font-size: 100%")]) [Str "[REQUIRED]"]]] ,Div ("",["otest"],[]) [Para [Str "Tests",Space,Str "for",Space,Emph [Str "optional"],Space,Str "Reading",Space,Str "System",Space,Str "functionality",Space,Str "are",SoftBreak,Str "preceded",Space,Str "by",Space,Str "the",Space,Str "label:",Space,Span ("",["nature"],[("style","display: inline; font-size: 100%")]) [Str "[OPTIONAL]"]]]]]) ,([Str "2.",Space,Str "Performing",Space,Str "the",Space,Str "test"], [[Plain [Str "Each",Space,Str "test",Space,Str "includes",Space,Str "a",Space,Str "description",Space,Str "of",Space,Str "its",Space,Str "purpose",Space,Str "followed",Space,Str "by",Space,Str "the",Space,Str "actual",Space,Strong [Str "test",Space,Str "statement,",SoftBreak,Str "which",Space,Str "can",Space,Str "always",Space,Str "be",Space,Str "evaluated",Space,Str "to",Space,Str "true",Space,Str "or",Space,Str "false"],Str ".",Space,Str "These",Space,Str "statements",Space,Str "typically",Space,Str "have",Space,Str "the",Space,Str "form:",SoftBreak,Str "\"If",Space,Str "[some",Space,Str "condition],",Space,Str "the",Space,Str "test",Space,Str "passes\"."]]]) ,([Str "3.",Space,Str "Scoring",Space,Str "in",Space,Str "the",Space,Str "results",Space,Str "form"], [[Plain [Str "@@@TODO",Space,Str "provide",Space,Str "info",Space,Str "on",Space,Str "where",Space,Str "to",Space,Str "get",Space,Str "the",Space,Str "results",Space,Str "form"]]])]]] ,Para [Span ("content-mathml-001.xhtml",[],[]) []] ,Div ("",["section"],[]) [Header 2 ("content-mathml-001.xhtml#mathml",[],[]) [Str "MathML"] ,Div ("content-mathml-001.xhtml#mathml-010",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-010"],Space,Str "Rendering"] ,Para [Str "Tests",Space,Str "whether",Space,Str "MathML",Space,Str "equation",Space,Str "rendering",Space,Str "is",Space,Str "supported."] ,Plain [Math DisplayMath "\\int_{- \\infty}^{\\infty}e^{- x^{2}}\\, dx = \\sqrt{\\pi}",SoftBreak,Math DisplayMath "\\sum\\limits_{n = 1}^{\\infty}\\frac{1}{n^{2}} = \\frac{\\pi^{2}}{6}",SoftBreak,Math DisplayMath "x = \\frac{- b \\pm \\sqrt{b^{2} - 4ac}}{2a}"] ,Para [Str "If",Space,Str "the",Space,Str "preceding",Space,Str "equations",Space,Str "are",Space,Str "not",Space,Str "presented",Space,Str "as",Space,Str "linear",Space,Str "text",Space,Str "(e.g.,",Space,Str "x=-b\177b2-4ac2a),",SoftBreak,Str "the",Space,Str "test",Space,Str "passes."]] ,Div ("content-mathml-001.xhtml#mathml-020",["section","otest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[OPTIONAL]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-020"],Space,Str "CSS",Space,Str "Styling",Space,Str "of",Space,Str "the",Space,Code ("",[],[]) "math",Space,Str "element"] ,Para [Str "Tests",Space,Str "whether",Space,Str "basic",Space,Str "CSS",Space,Str "styling",Space,Str "of",Space,Str "MathML",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "the",Space,Code ("",[],[]) "math",Space,Str "element."] ,Plain [Math InlineMath "{2x}{+ y - z}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "equation",Space,Str "has",Space,Str "a",Space,Str "yellow",Space,Str "background",Space,Str "and",Space,Str "a",Space,Str "dashed",Space,Str "border."] ,Para [Str "If",Space,Str "the",Space,Str "reading",Space,Str "system",Space,Str "does",Space,Str "not",Space,Str "have",Space,Str "a",Space,Str "viewport,",Space,Str "or",Space,Str "does",Space,Str "not",Space,Str "support",SoftBreak,Str "CSS",Space,Str "styles,",Space,Str "this",Space,Str "test",Space,Str "should",Space,Str "be",Space,Str "marked",Space,Code ("",[],[]) "Not Supported",Str "."]] ,Div ("content-mathml-001.xhtml#mathml-021",["section","otest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[OPTIONAL]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-021"],Space,Str "CSS",Space,Str "Styling",Space,Str "of",Space,Str "the",Space,Code ("",[],[]) "mo",Space,Str "element"] ,Para [Str "Tests",Space,Str "whether",Space,Str "basic",Space,Str "CSS",Space,Str "styling",Space,Str "of",Space,Str "MathML",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "the",Space,Code ("",[],[]) "mo",Space,Str "element."] ,Plain [Math InlineMath "{2x}{+ y - z}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "operators",Space,Str "are",Space,Str "enlarged",Space,Str "relative",Space,Str "to",Space,Str "the",Space,Str "other",Space,Str "symbols",Space,Str "and",Space,Str "numbers."] ,Para [Str "If",Space,Str "the",Space,Str "reading",Space,Str "system",Space,Str "does",Space,Str "not",Space,Str "have",Space,Str "a",Space,Str "viewport,",Space,Str "or",Space,Str "does",Space,Str "not",Space,Str "support",SoftBreak,Str "CSS",Space,Str "styles,",Space,Str "this",Space,Str "test",Space,Str "should",Space,Str "be",Space,Str "marked",Space,Code ("",[],[]) "Not Supported",Str "."]] ,Div ("content-mathml-001.xhtml#mathml-022",["section","otest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[OPTIONAL]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-022"],Space,Str "CSS",Space,Str "Styling",Space,Str "of",Space,Str "the",Space,Code ("",[],[]) "mi",Space,Str "element"] ,Para [Str "Tests",Space,Str "whether",Space,Str "basic",Space,Str "CSS",Space,Str "styling",Space,Str "of",Space,Str "MathML",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "the",Space,Code ("",[],[]) "mi",Space,Str "element."] ,Plain [Math InlineMath "{2x}{+ y - z}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "identifiers",Space,Str "are",Space,Str "bolded",Space,Str "and",Space,Str "blue."] ,Para [Str "If",Space,Str "the",Space,Str "reading",Space,Str "system",Space,Str "does",Space,Str "not",Space,Str "have",Space,Str "a",Space,Str "viewport,",Space,Str "or",Space,Str "does",Space,Str "not",Space,Str "support",SoftBreak,Str "CSS",Space,Str "styles,",Space,Str "this",Space,Str "test",Space,Str "should",Space,Str "be",Space,Str "marked",Space,Code ("",[],[]) "Not Supported",Str "."]] ,Div ("content-mathml-001.xhtml#mathml-023",["section","otest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[OPTIONAL]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-023"],Space,Str "CSS",Space,Str "Styling",Space,Str "of",Space,Str "the",Space,Code ("",[],[]) "mn",Space,Str "element"] ,Para [Str "Tests",Space,Str "whether",Space,Str "basic",Space,Str "CSS",Space,Str "styling",Space,Str "of",Space,Str "MathML",Space,Str "is",Space,Str "supported",Space,Str "on",Space,Str "the",Space,Code ("",[],[]) "mn",Space,Str "element."] ,Plain [Math InlineMath "{2x}{+ y - z}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "number",Space,Str "2",Space,Str "is",Space,Str "italicized",Space,Str "and",Space,Str "blue."] ,Para [Str "If",Space,Str "the",Space,Str "reading",Space,Str "system",Space,Str "does",Space,Str "not",Space,Str "have",Space,Str "a",Space,Str "viewport,",Space,Str "or",Space,Str "does",Space,Str "not",Space,Str "support",SoftBreak,Str "CSS",Space,Str "styles,",Space,Str "this",Space,Str "test",Space,Str "should",Space,Str "be",Space,Str "marked",Space,Code ("",[],[]) "Not Supported",Str "."]] ,Div ("content-mathml-001.xhtml#mathml-024",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-024"],Str "Horizontal",Space,Str "stretch,",Space,Code ("",[],[]) "mover",Str ",",Space,Code ("",[],[]) "munder",Str ",",Space,Str "and",Space,Code ("",[],[]) "mspace",Space,Str "elements"] ,Para [Str "Tests",Space,Str "whether",Space,Str "horizontal",Space,Str "stretch,",Space,Code ("",[],[]) "mover",Str ",",Space,Code ("",[],[]) "munder",Str ",",Space,Code ("",[],[]) "mspace",Space,Str "elements",Space,Str "are",Space,Str "supported."] ,Plain [Math DisplayMath "c = \\overset{\\text{complex\\ number}}{\\overbrace{\\underset{\\text{real}}{\\underbrace{\\mspace{20mu} a\\mspace{20mu}}} + \\underset{\\text{imaginary}}{\\underbrace{\\quad b{\\mathbb{i}}\\quad}}}}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "rendering",Space,Str "looks",Space,Str "like",Space,Str "."]] ,Div ("content-mathml-001.xhtml#mathml-025",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-025"],Str "Testing",Space,Code ("",[],[]) "mtable",Space,Str "with",Space,Code ("",[],[]) "colspan",Space,Str "and",Space,Code ("",[],[]) "rowspan",Space,Str "attributes,",Space,Str "Hebrew",Space,Str "and",Space,Str "Script",Space,Str "fonts"] ,Para [Str "Tests",Space,Str "whether",Space,Code ("",[],[]) "mtable",Space,Str "with",Space,Code ("",[],[]) "colspan",Space,Str "and",Space,Code ("",[],[]) "mspace",Space,Str "attributes",Space,Str "(colum",Space,Str "and",Space,Str "row",Space,Str "spanning)",Space,Str "are",Space,Str "supported;",Space,Str "uses",Space,Str "Hebrew",Space,Str "and",Space,Str "Script",Space,Str "alphabets."] ,Plain [Math DisplayMath "\\begin{array}{llllllllll}\n & {\\operatorname{cov}\\left( \\mathcal{L} \\right)} & \\longrightarrow & {\\operatorname{non}\\left( \\mathcal{K} \\right)} & \\longrightarrow & {\\operatorname{cof}\\left( \\mathcal{K} \\right)} & \\longrightarrow & {\\operatorname{cof}\\left( \\mathcal{L} \\right)} & \\longrightarrow & 2^{\\aleph_{0}} \\\\\n & \\uparrow & & \\uparrow & & \\uparrow & & \\uparrow & & \\\\\n & {\\mathfrak{b}} & \\longrightarrow & {\\mathfrak{d}} & & & & & & \\\\\n & \\uparrow & & \\uparrow & & & & & & \\\\\n\\aleph_{1} & \\longrightarrow & {\\operatorname{add}\\left( \\mathcal{L} \\right)} & \\longrightarrow & {\\operatorname{add}\\left( \\mathcal{K} \\right)} & \\longrightarrow & {\\operatorname{cov}\\left( \\mathcal{K} \\right)} & \\longrightarrow & {\\operatorname{non}\\left( \\mathcal{L} \\right)} & \\\\\n\\end{array}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "rendering",Space,Str "looks",Space,Str "like",Space,Link ("",[],[]) [Str "Cicho\324's",Space,Str "Diagram"] ("http://en.wikipedia.org/wiki/Cicho%C5%84's_diagram",""),Str ":",Space,Str "."]] ,Div ("content-mathml-001.xhtml#mathml-026",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-026"],Str "BiDi,",Space,Str "RTL",Space,Str "and",Space,Str "Arabic",Space,Str "alphabets"] ,Para [Str "Tests",Space,Str "whether",Space,Str "right-to-left",Space,Str "and",Space,Str "Arabic",Space,Str "alphabets",Space,Str "are",Space,Str "supported."] ,Plain [Math DisplayMath "{d\\left( s \\right)} = \\begin{cases}\n{\\sum\\limits_{{\\lbrack?\\rbrack} = 1}^{S}s^{\\lbrack?\\rbrack}} & {\\text{\1573\1584\1575\1603\1575\1606}s > 0} \\\\\n{\\int_{1}^{S}{s^{\\lbrack?\\rbrack}s}} & {\\text{\1573\1584\1575\1603\1575\1606}s \\in m} \\\\\n{T\\pi} & {\\text{\1594\1610\1585\1584\1604\1603}\\left( \\text{\1605\1593}\\pi \\simeq 3,141 \\right)} \\\\\n\\end{cases}"] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "rendering",Space,Str "looks",Space,Str "like",Space,Str "the",Space,Str "following",Space,Str "image:"]] ,Div ("content-mathml-001.xhtml#mathml-027",["section","ctest"],[]) [Header 2 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],SoftBreak,Span ("",["test-id"],[]) [Str "mathml-027"],Str "Elementary",Space,Str "math:",Space,Str "long",Space,Str "division",Space,Str "notation"] ,Para [Str "Tests",Space,Str "whether",Space,Code ("",[],[]) "mlongdiv",Space,Str "elements",Space,Str "(from",Space,Str "elementary",Space,Str "math)",Space,Str "are",Space,Str "supported."] ,Para [Str "The",Space,Str "test",Space,Str "passes",Space,Str "if",Space,Str "the",Space,Str "rendering",Space,Str "looks",Space,Str "like",Space,Str "the",Space,Str "following",Space,Str "image:",Space,Str "."]]] ,Para [Span ("content-switch-001.xhtml",[],[]) []] ,Div ("content-switch-001.xhtml#epub-switch",["section"],[]) [Header 3 ("",[],[]) [Code ("",[],[]) "epub:switch"] ,Div ("content-switch-001.xhtml#switch-010",["section","ctest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[REQUIRED]"],Space,Span ("",["test-id"],[]) [Str "switch-010"],Space,Str "Support"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Code ("",[],[]) "epub:switch",Space,Str "element",Space,Str "is",Space,Str "supported."] ,Para [Str "PASS"] ,Para [Str "If",Space,Str "only",Space,Str "the",Space,Str "word",Space,Str "\"PASS\"",Space,Str "is",Space,Str "rendered",Space,Str "before",Space,Str "this",Space,Str "paragraph,",Space,Str "the",Space,Str "test",Space,Str "passes.",Space,Str "If",Space,Str "both",Space,Str "\"PASS\"",Space,Str "and",Space,Str "\"FAIL\"",Space,Str "are",Space,Str "rendered,",Space,Str "or",Space,Str "neither",SoftBreak,Str "\"PASS\"",Space,Str "nor",Space,Str "\"FAIL\"",Space,Str "is",Space,Str "rendered,",Space,Str "the",Space,Str "test",Space,Str "fails."]] ,Div ("content-switch-001.xhtml#switch-020",["section","otest"],[]) [Header 4 ("",[],[]) [Span ("",["nature"],[]) [Str "[OPTIONAL]"],SoftBreak,Span ("",["test-id"],[]) [Str "switch-020"],SoftBreak,Str "MathML",Space,Str "Embedding"] ,Para [Str "Tests",Space,Str "whether",Space,Str "the",Space,Str "MathML",Space,Str "namespace",Space,Str "is",Space,Str "recognized",Space,Str "when",Space,Str "used",Space,Str "in",Space,Str "an",Space,Code ("",[],[]) "epub:case",Space,Str "element."] ,Para [Math InlineMath "{2x}{+ y - z}"] ,Para [Str "If",Space,Str "a",Space,Str "MathML",Space,Str "equation",Space,Str "is",Space,Str "rendered",Space,Str "before",Space,Str "this",Space,Str "paragraph,",Space,Str "the",Space,Str "test",Space,Str "passes."] ,Para [Str "If",Space,Str "test",Space,Code ("",[],[]) "switch-010",Space,Str "did",Space,Str "not",Space,Str "pass,",Space,Str "this",Space,Str "test",Space,Str "should",Space,Str "be",Space,Str "marked",Space,Code ("",[],[]) "Not Supported",Str "."]]]] pandoc-1.16.0.2~dfsg/tests/epub/wasteland.epub0000644000000000000000000030675612645626062017731 0ustar rootrootPK i(@oa,mimetypeapplication/epub+zipPK  .@wCמ=>EPUB/wasteland-content.xhtml}is7gߪު-Z;F)ْmؑR⚏`7Hb[z<fSByJXξ/_D]y2Y6mۇFUxb]}wFҋDqTy)6.2??ʋj RSkuYobQG st97ꋮj>,~UJ&ۨ#U/ Qm֏yi-8DWsx##6e170y6˽{ÇryÇGx5[@ex/ܔ2THxT13Zun(?u ԣ݋]uؼ~֛vVb>:ܗ*׹Bg=NhNՅ,ؤMJYlQGMbvիI]*) WbS2T$hLiUl#|a\ FZڬF݄G?_t?ߺ7O7~Fp_<Xmɍڑ_G=ZRuq{B.MUDׄ^/ʃ]<~i@vxwGȵE+cפۼTZ}ʛ,m \J ^MdR~nJwdHw]"I}:3ϣފXvSg[ywrz|-ؘySȧGE SIjjRCԇ{MtTU>c/x x} >ѤyT]YfU۲ ~<+\UJmb3@N]V e:VQIT4 4IT勱mX%ďq+KkbU7.4Œ+|j.3 0ƄOKˋ:zIe:6x"*eXQPtlHEI{t#};xpԐQ>,rصNRo7Ue3Nql,Xh^kMSWFWЛwhL$m[.d5 <0#4Vإ΃ԠzKp2 mn[ii+ KC0 -xJPW*cIsA<(I5em.-e(͵!c =o ڧ, jS  qS!DIoN]}{ =@^o׊ { ݚ37 Zلz[?qK_rۊ7cFV@Z;yL_ʔRGs [bL<.=';9@6io1&b˄͇_?{_@V8FOO4\ #,JsL!p(qNrε-1(ZnBzͩ0=.Y;M`24"D"ǴUfTzs\:p,6u"<häGJ 2v?ޏx:o!?꘸qW9y喆Q1[^K e !h4P*3JT**9x-"M-rorӦ̋L-Pk6 +l:"G74ʙ)5v8', |,v[r(dNH^clb"x$ɋE%B_4%4t#\i©W(UX]!\DloawyW2E@GB V9akYit'`$ꍭhi_$?݈uJ 7EH@#Uf} ^C ;夙 { UD(V73јPkL;}3yX-"T "Q ff:hT:b! N[hP(~d[f T: 7d1ugͩ& tNhC{c |6l rԔ^ g[BcC#A7 -, MxEq4tt ]Ԧ쇀Jv12@p֘lQѤL.=獔 }^dlHE δvA=vʗ%5`H/ An ∿8[y\irB^Mٚ) ՌCp)6:2:bGP⒆b6oB ^ʠTX`b3mLi.Mk~Z"J C31Qmk~BI?7*G;޽uMO'lWwO|-d#"1P2;5R$w{w^y.VN 銉 @/TբtRMPhZBQ0L`Ri5J{2ApMM}OyxLVY=kE5|? ('y3IstMPUxfL`lg3%S @yDrX[Ɠ8Wo0E&!A&AF*&]$ 3B '١n=N[II?iJm\2ufU-3lβ6``ٿe3iЭPy 1 ) LPmJSSlt*| E#, rSlV:I|l2{6(3:Q F|,Kĭn|-š )7`mY/aIڜ `N_4"=.SZ'3'!;jTeT&iqȦc<6cDtlCA? {KY},ifv5E~؞Wbs8'ZψrwHBhL ~QRedȐIu绩ѩ?2axpÈ!|I4§E~|~;Vv1(nRϜL|_D@0J`^6^YĮ[:EƠB'Eݯuw+M #:F7+=Ǟ/^_Ylb-ї :ϕ'+28Yl@#ʕILgjNbH0& 9h)a 0j!SX(r˨J2м"6.\L,;i^\ 9ֿ->Kq.#I`&aHN*]Bt~;i0'PqT#LO#+g :!AJz74l6qid Udb}BNRE8zU1ߥm>ON/N兺#r Q1aIW*IbYV= 7R#\ yEy*y/53:chL8ZƦ`LZ;crs u).3e\nkSliQ$ߤm:Bz.ؘ ~ń;k,d&9^0WT׆{ x;K7MM ")a޲؉.P!m-_ EX*yYv7GONWNT %t\ '^/80OLe$Fӄv/p H!$ʙJ2Y7DNC=FR|^Vj$#zT8DWrsW>!B{DxM1VQIPKz,@IkK=9ըRUbqeJ IpVIlsV6BIJU`W!I`>@r(hMe<؈c+Pwa{kcǫO6.݊obtxMTZz!C0C?DniU:WlJX5X2|YJ?lo XUur\mAy/e`'o\b+k%|ggyH>},wi3W.e>b$Vo.u,)K"6|+8@ovt'ʿ5dX;Y83-ht& XL7,|ʷzd\Iη2z=5D&2-^s )%ex5 .9.HҵqAn u6S`bM1sRX p͕Ah$+nUTPb9Vrw:N$UDQ%d&m/jTؘD!f6 mm' .M'bo0out@7q}[Þ%yׂI,Շo)wDV"]Nt":: jnjv j3 .-&\,KؓHBR 4LfnWx]PY$(ϴ ҄^ An ݪƵϦ4a瑧,gΝl5rk/\A  4S۩eO0.i5,Mt\_ p/axfxWv0cwعjYXFjr]- y.\;K){zJ͕MN\P&7cr{6S0+ŎD7I$Tyy*lU,R/cHpҴC]n4W94л@}!_vs*kG/\LxbFcB`2d+qy!hXp|\,&"Y Z(ؾ2y %=m*,A? |0x7z]4~J7 φpqRLǹOpE6؇4"hSIx{=wwQΊ^f.}<pN)ܽݙd6Ke6u QZ6k$;HOG=˚^ߑzֳ NCj*-c1u6W 65ߧ^@u#ou&@x8ťD_\"W/kX}7{xˮZ{:۸'CA TqpB;BId|ApuV  Yo<1V'Ռ i_2ibS c!q]G{k:Ϩ p+ꂖqr9TԶ(2V i;r\/ Z[w,ڇG^n%q Jl>f3Wo;>x#'CN|B>I?txZPsiDW6ZngU! "ZІG;op-o]|^K}9.nUp!V1sGW\> i؛2)<+?9Iws1[(X`CE u11)?lnX&hΗ#صnҕxsח@Ы}ޔO) //%o~Vgܾu^FsתtVF&rwOJeѳ"J˨;38.Lꃙ@~K,4_KOL9vN(&\6r=>麄q0Ŭ{k-ng>ݪG+LoҸ|-i0r_i=ОgT'B w!/I.}LٸZcM0>;`0\7e6zۮ|6/]V@'I)mS0C=K=m^eso.%w>® tNHC<׸&_#躤3m:n{֚͘SJ T__e+.CG*Oc&Jd6cP2kcnMU~ ud885N~Ҧ[ tf56ұ؜d+fInNIV:RԌWT\$饘~s^ 2NJ[_V__ou$c/c/9Sh&.-qo;hM ^ćT3S{ 7f? Y ]w,w퓢j8yϿK= R>cWW"ױq!۵e1RR/q!OSPD[6wH mD+:B6q9:*cS. j/QU a]ww S(§~yN^d2;Jn`ǪIK2ZDG.is糕{>lhfʕO^=äVF oʫ:6eUw\ӧ(!VRw NL qbb29 {}Vnʄ-Pg'ĥYH_B)Җ?)촘8f; |T^x<,">6o,w=P:i ؿ^vHL+tpPS'fr0rt;) 2v_7) :e=#FV"^&tNmMB,&&bEiԛ$>rdъr*M`@^wrLHq*PYe>b$\ݙqDS|*Äeofxpp,2ߨ)|J%/xV~_ǤrywK{ݧR4#MqfZ|%U]vb1.ɖe$?-3E 5J;>;g؉6:x5nY"KH4*2k\`X7ǥNԠpntDR# wYÍe7JX3ǁX##v.]%8 @It8G45ԁRK/w7+H\. 7kJ&LkF$oh{a五3|6b72J.VijET}豛UH!i; KagQ@C4mǀJ8\B^{q~5'<ޟS^ $K0`@~wJ&ccwQuNƃmE|I_1rdV3]R>k벶WúE7҄2nM$ĞZw2(B_<4ZJnHT8Y$w}˶玠Ŋ-aҦFMLlY]zmSbLUxhL_fV cE[W?nчacgH%K7עB}dJ< 2eGn"CzOt7\jSnUfU+fsksof@ꅻ2`?d.+gÔaX:UiĊ5_5:)}-UO4Gwy1,p+ie$l g].ign0eWe:: ]3Ah̳eCJr;75vU!tWu ;<8b7[=oLvn+m?i$>Aݯk5T_v/P*!}=zۮg:U:T}8d($еě(H#g3PeJڪU@y:7sTllcy?ڪRg+W>/b鄞m/ޕxᇔ`g* gx@0EsI֓@2r Iun6jںnKr!. ޟ:ƫfn?jQgĉJ+;uٚmKVuti.:V.ۺ W@6?TP\ RQ[pQLb|Ql6M_[ &EDJ/1fj:2w2,z<^?9:"Wymqº:k8,]?qt+hj?r8✙߀e¿6&I8J-ت5dc k.aZRȷ{ՊNNs۵ls*wǻVtWi,{xݳz*ބQH'`oœm=^{nR\=rGYE+;AgmVq8 F*]em;?f'SB;|$[KbSX]TrUG8e1\O ]5b녿U2\[M+P(czY7|u+1]kvuc~Y6,=1.^g|niVo<" ³)m~wߖOS]\ w]VCΚU3%i%%('ci'2][wЏ/jy;}Ksn]|;1NksHVW5D3mׄKBV?R7#Y6Z7: XQۦ988-(i6bn|XSmC)O) O{f##6&xћսF|coMŸy9v?XrI:Ư&ztt()-$7e#g$7VY, yD`O{,1ٮzϻAn;TeӠ&/--"I4߱ ]*:w_zD e2E7VQ7&j*F_gðxzU@^Cd@_cB< czΦѪsߑv* (E3W;)aH6DkD({> >@3cUГg7ʹ6r%wX wdN' b&(pu'V+秝bPc a23DİoI܀c'C+HVA~9՟^A8oʦ7 $3+.e]VpVمW>50P"]{Pl)J7J6b_M~hGةzӤɸu\dC׆FBmDE@ o=]*=ѴXڪa@?XL/Y]Gfb_z55dv5=607/V"76Rfj^PdtSz%mK[妑* }y549 T&Xvb%^_sZeNsA XFkLCLNL 5U&߱g`;:лi3޹ tŬBԖ0JM<,"[潕MC65UE6kලET9sMl8dm wҳ=c:8'[7%/)gzu|JZ3,f&@@&[vic6,&'nX&m0iB.z=L3+gV3$ ž"aB{E'P57F?L 93 Ed{ȃ)Ю'0L>1\>Cٽ>?l/Jqj;Tj +v4-9hDo>A:T0FjX#y<#V\_)E*0V]ߜUtBx1󱯑u_T~ tɩ5V؃;b,y*۷tl5k[䲐]GzF[J+6̘zgO=EJhV~;$DR2Ĥ<_1J6l1 fޔt?a]iR]Gw @֯t @*ǚqß|Ӈ-7ܦ$['+&MeպKDx"5TJJ9싵9_-`+h =/bk  c{ͱk.;}" U (!0mѭV.NWciYaU3 tsh,m ؔt7hR]rR4ݘc9Vϋ^[fZl7gEv8VFP*{Աzݵ񮄼W_HiXox^!A*GZGmD(5`WZG%3ז雈wa;=s~ \]N0/D7PwKDPQW_5i $^VL:lX&C^6eR"p.xcx8E8P:NdI뽍Ei k >%^z<1nvM5DS ~t%bFjkѻ$y:ȂџnzWNvTݸQMV.՛DWHĪ,}#@y{]^蜕iLNZ~P/w8 tr\g1~MϯN}RguӲ]5֓AH_IwV]r&JkL;X4e_O36c8hNj΄4σDqxp9݀#u fQU}CD&1REiO>ۤMD\~mƱf_! bq+:I2b!\'pO !(s[ot~z=m0-B>Ykҍ\#H ؗ}\wD7uٌ:wiL :Pۊ>'y]Z(&[+OWX===?ʉi@`#菉ڙ{R,v[#Eΰ zb]aNQ@V.[{J^,Λ9E^yv7\o\- Ed [b^ %W[>Ob߭T\=k5w*ŸaVyݹw`#ى4%iow¼DhbΟNv! NqIqcstr}J{-umwи5ip **C*AW]@#]Wg/eR+]z)_bˈ)cju9bv]z{.+~t*1Z^a(YøWʥjSMR8EpjG7 v0v}q,.7 . V_/TRA;mE[AjY:9A=Br>!bV ^:3V*\ZRz,ƙ7K9b^cϺ=U_^[fݗwK#-%u@ =056֊d=ic6޶Sf3aWJ0eCwOy?gC{b G^V`7嵝A;;-Xx,ܶRggl+5)ÛQbN:M M| [Rsn5X؅S.eg&^nU8l@Еy߅#o _/dJU;OFw"4BВ78R2r J*jП 6#QxHH(Hi$I#U`p q2gx3uٮF~җe0BU-޳aƎ5 ,&:c|ON*_3u H.X9g}72wr @DDЖdO'r2R="!hpnj5l_85#&0BrٮR5%XM=!?Ug P?<s+5̼ͱmb.(8 ؿ _?8<ݏ{O9ㄦ@xurWB\ۆըS1[UÏ P ә3f9<ITJoOs!z_pp+7=, x6 ZpalސMֳs_kUk_; SAG}1YX]0Hޥ.]riWL^u4!moC7)vN%2ut1{2gU}9}nwb&/fT-3 ZRЪ6.vfYMMa&7{Eh&Ao_^lhkvk LsmSxky(-qk$2Qq;ó}+UrDIk;<.:D:]JIx\ė:}wbyu7XpU5p'hb[e1OCe0'֋|귿(-H#܏MqQ?k)k8Dr#e*ڕn֏mZbB2jL|͟j b0ʖ1y86V&#EEΜ{mẐEݻ~t8 Ríhv6O?^ 4UЫ5 ;_[$Smrcv59;_vꋲFA7mR{x/^ T~n~IT/K SޗG?\k|oģ9ʖ!<5{N2[AŬ*=ԐR-[ٴ0$Qb.n-iX*n60{FlV7UW)6 +Uehu `Bf:\iwԫB\`5Z{U "S?W,q 5}W@*LaN^oٱ{r ׃8T\lpi1Tus8lMI><.T pzB , “i;w\WsK0{:[{d>U<82;ii^+=x2P0ˈH5o].W+'jP<eA:Jlz|S5LH/>g4+[D$Ixp:DX̳u39Ia)|@d{1FG׃q3\!fe \_4e"e"$U9fO6܉Z^21-nZ\^Jh7᳝㪷N5.H ^Ж*B1v膻&fD[ Hz6r>぀.C.H'I)%"̬"K2BiV˩M F9r[ +m%@ !rRq>Vw0('5@0ϭutfy9g+5X\LSXylV\{ʶFuFIq9 -WDn1tz1*E3 9fa$~f3'D:v:,<襈b5)-242JTop֘--/gljHk P%Nf.mO~!m7uvYpR13Ջ̕Wע(l(gBT^<*.oV˗am$XVjPJITP)AjVc J=s? 's.Ϭ }bW̌S'YⰆm L' xng9<@PrϜD9=!nFM?)\dڜFFVoPI{m?s6\R!/%Pv4F:W$Z[J%`xnqq|` O99&(OT֝J7KQ >|L*ML+.z92T'xe؊} ꑯ+:ԗrm`P)t7c_8,~!]ZY 9Febmj<^s6SBItV/[\Oԓx{jEq֠L_Sp g},ۜ*A!p|+zL$-,kd;p@(ƌ8^pF!*A_\q]"=4F;0UjQwcޖ̾ɶnH *A9MjP2ޫ= H#E68z)T ͦ7Y4smY9ʗͭ6y,<0k=16^yUWyfB\ 7*+WMSJjHfO4_$=ʕ.

z27>J[FͮD=rA,[ ʅ3ՀrK}/ʥ7,  cA`GJ!ʭnhTrNYީ\tS +G¸%iᣖԬD#z~V* 0U݅z,ߛ#CG$umlKC`<eHY vW޲|4*ђK(;weKsAPb|yy!WZى {+/wF'MD$P2>l8}~7f^m'gɘCta^۹y; ?2+O_[ASS˧|=]%掶iȞIݳEn?Gl uhܰ/)[,FEs1qj˵*-T.*{jmpZiZ8'JQƅK+TֱF}!4(`fneJ{s0K/1kg09y'R?5wvi"2iߟJ2t۩w ]-.@dLp.ɣEt= Ato<\pZ q6,~3a:8Lo3ҋ3,p䨝KWnlZ\VyN? k;cuqɪ_\j\o92f3tٌ y(?f\W<`m%$q(&K3{BNA*c8R7`!3o^Z& v5 ZԻ`ضDo M4d׭]s>lA28 >"f׳Sk^WhFYc֪7`]&/s\{kcWA8$#+P.*MkyQD[}||SLըM\s >`!˜[iU˷rQ*{MPU߀mJ“G.ljA/mpg ߢ~ j aI, #+VB+:Cri1Ȼ:6QVnY.̥ 9i )j T;S 0H#Y3Y,<;X'+~DGY^!^TF*H+ Cm+m=&3 )umP)x`[i+?y $wv-(MDH?ؼ\aI%%w囼Ct,9N{If6"R3&a8b+wVYd<7`ϯ8U+&ܜ7!)k\!yyxQm0! KRr΋7'_sy螶:G85Y [r5.棃քYkHde˶7D@Ջ9cg08kO p&X/C?߮\KLŎȻ /veqp4j%aa r0Q4Xl\UKkL@^h>6X8b3r{򎖄+b'Ԑ Wc!~GdIS.z=2et%WV_D;]g2=wˊ50Xblp je p]/Zф-ZPNRwcǖ:Fy8{@P?΋)8'81x{HFmLEjA/U<}S#!W-Vaz.;ڀ!B/Z SC&՝k;#S-#O:[ڜ nNgy ~60ҵ"C^K R:[焐V6F;̴hzY4ǫ;fWȱcV!OGT;kc*eBAEOaəAn#[qm(y-ĄC+uyzrwrta'2Fe4A,2LUOa62y0_M޹#D2ZF}%C̴_Ca)TPL* 0S 3qP*QɁc&, m_Q/ '96y8g>d56!gzt1/fg$m̰8'_V'qMIν7 LUW|l؊9Vf k)f#oa򤐺 Ҫg1OF7ҤlqI\PGumg81+uYif3z藘Sdv.nu O&QkePF E-s܏ɶ%ukO1+;giΣaV+ӬZQY1ܱ;wjpmˮ2$ C9Nz9ƞz"<0M""JsǬ₫?6]}Gmg<`xT9?tu֠jY޻%4T3*:rC&.X=606=T֎3͍aG*j_e`nց{vD?2ՌgMc ۣC/sU&Bq&x"ߊ Xɩ`sZw1뭽"h]\ x:`_6`Ŵ/;[{P[xQ <"gͨX.#>S#&ل.dG7+ 8s} ʁ(kʮN^ t,][wH,|%(#Ri{ 03)UQCWV@qT [;-7Sf;Qu:uuS((L"?Wc Ya`Rg?fmͭUXu~*vCMny̐dh鑜{S-#^=<=>޽2?8T"ZY9j]S}}Ӈ @ǹ=hCɉPF% #k4#+f=26OmsD(~ D=8Z[m/Cg˾5DC\  6D ngL#ܾ5 s#=~(oLnpwB<͟þ忩a|ad7W0aꦋح79{e!hnrg8o(2; #hԍv p<=~8i2;17]n̙H7cusߍ;F Cfil !A|<zpnoĔ.p_U7Wx]:Bn^Ͽ!7Y Ÿ19`W }_JOe' I0_Ԅ.v3޼:o*Kx=p wf`e~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p~p׃˾E{o?= 8py{t ܀ڷ-5> U󲼈;B~7vB _U|.ۃOnby5e5W 9(S). >07w^x-ǽG U3; A]=wcep 'Ol-;̧˗7t+'_:EvJԋSmDR.1D/I_  y e}f)\, r\RHNTJM4QtP쐘M2q~qxxJDbYR@"+' 'uWF +-#!-=-s\s^YFe?ȑʝCUmK{/*)@!cJǔ>+s+_T~Y娊+<O'T=zI5Su3g6ޜ%>{샳-MԣՇ5i8kdh,:w&c^--V֒{#hQ]~]2="=m0!A|篜/@v b ҍ֍4AԘқZn5{b\߼тբĒ2rJ*jZ:кdž-m]Eҋf/ؿ_srxVGgO;>u(A@&8M9+99OD̹F._ҼwijMr`RCPpN˟_ 㑌!l%T$򋗲WצwAwW_M#\;zƵ/6j7n@o4&٭sNF ]G`]qHk/q?>テ Ѡ bς!N!-ҡ?y8'OŠr?}n1B2".*Qv]cKrKӨxl+ ډIɴ)i˳s/\(X<شd4챌_yʺD׬_^oo&iUQ#u/,!_](-Jìk$vd[[ݽCFV޳Ԓ}S,\ޏJ+?/myAtzY ۍ7Ĥ6P~^Jz1ٕs߶9d,q\R&y5ѳX(vUVgs4YIwT7PKrD}xPh9g";A!}RےT.@}C @5o L#T_- ņf𤯭[.x+8nfT^Y TT2~-{(ѝXaW\9O%H[$kloCfhӘ9 ;}oK/C:mN&7 Ls&}fٵ6ʙLpmsܡ3WW+ˎNJ':g2'_Ve7*j8zj"QbcuRetȧf͞kg> xnq˪ZJɔvGwwf:C*Щꇟd9jw;M=Ic_0~3ݒ-[6@ҟCW\s;9^u%q˯ LC[Oq)~zU.yrCUZSg\ u^9[^ ٲn_SV=mvj?728E+N p"S qEbt\5eN59^l( ;6>8v2;8>w[8TۯU_6;{ZSWזQܨmo(FDRUD-3mq3i 5D ZzmK64)F髆}-JWBˤAy 3V&4?,Uz' S,lK!5@KĞ;\qR#Y$nM1:Lr-J[˝W~9#Ŝ6"b:efS$;9V'LJ=n._BWOJ6k%nHj/aQYX4mľP5Z쬦1ֈ")trפ>/zn['}p Τz} k:Tc@KdzP[`mׇv߼ݿ+7 ;WS[n2toǫ?q::GV$sTX8 c38|Ce6ITANΫJ-!x,\܊*4f3l*3a=ە(`scD_/s*g\ /47vsA\H\a1BD}?,K|QIJ $,#oit 5BγNcmuII X]c$dXr чc#7=Z|9R\qS9ZDv7xFaIgh5]n|pxr[neSΊªWUFĻ+W]hs.N)d6qcǺ\i?M4cGF΅6/6N:}7qŏ8ckDP 票o,;4lxh4WU S5$iDrkYrX蕅P' +2m(n֚#ϦS1g]l55 ԁ+t3 VVgM >. T[AR,y K#sEխ$[9d8쵢nat DOCY֓^;]\jh(tJm'rV͛qs/lUK/˼ }D_Vg{4sY$vK֪;Pf=ejgʼnѝN5eO}M_9ZnȔsޭ2Hf(?^vK+.6r;FR?pڋ)M3+;8Uf('~`ua׍UTxǁ_ &sSۅqEޚUB]6!$el19 rԊ.MSoV7fI9>a^~2RGMWM}irM-۝恕ztizb]GdN<'e 4/[ V@GiW5fgdn2@wVvDوs78<(k&<;kTsdz z"9C-zzDZXO4(8oFno2iL,F6}17:^}y[YGWR}=N.JxyWR=],[Q9XrՐvBC򡛵Scϒu:HLKYzٖU G?`<{ao&Lt,azRu%aa7i6TʴH{2גd2'dw&[RXR/+xyu ow&qO{8JpvBsNe-c;\'WT mݼf2*X9."z5ЊK_idq3\?M!p)XgW(rţ6,(zjטUN5XZ gu}8^rZ)#xMΨL+x| o%ݬ#]OsהeTah܎U>ѥPi\++TU1GٓYޱgXh? y;@2~4QG~qaNyMֵw >%%%ް ;GD|?ĢAuп^9.066 2ty[,:j:[SUƮstjP0>0PU8FE'P0riSZ,9=5j P^vI2%q;}fl}ߎѶtDZ%iMg3h9KjbGJrPBfQ(ʔz(?$̥lI1PZXc j'ls_y1KMȏ䀄8E:mL-(o?rFs_GO=Oqy_؋Jk@zh},tP>W<8L^ic%=A>fJh5~fe'V{1||o*DzHɖܦdcA?|$-A2=z<" p9:&[L]Re)+o@ .MXMy 1qڴz8 ҿIFL^ZOJ^Fl]Mek%f6nkLeŝq5\uDI}`UI1~"oӐ g4S_VNA8lj ~k{ M}3Xf`DEzF5)*ˆwf2U]yZ0) KKU1YtIgln;z3j 8 Ћg|ї,Rz^;"A‚ыbg:S~ZekdEoGc32W"*6**wV. $@?QM)B_+ j:a0yYSC'>MfLϙD91AԐ+p1v8w֌o.˓4sRWSjTZuufnÅu36"g巖Jq">oo{{Gr-;s46L<պ)C{^ CVn凟¸6YL_&T|;GU ?7F2-6cO$^R3g;&| J?Fe]/7lKG>g`gvI l'׀*)Dfjh⾒9|ޝ`LM҃܇ȓe^>,Ghhmx U_ \65@µ4w2)HE/ x9ǜT w@O?imggYzzl̐grwGN B&Q]]tĕ0־Z!k&Ek50rM^h*01ps՛Ġৄ:5`姿FCX rO^({_gV[a1Uv1߰j{1'偤a즦7SIJP2v3N[Go:͖l$j_AAI~{(i3EǓ]ww$.Đ޺/_fOVxx15RYVXa==HN7|q[A\7HJ'=]TEc&fy5ՍM:$Nl׀Z2v+vEM5@*f`Js?u = -(-՛?a*z b677з_FF3 ~ 8|t 賊EF@EPVRʪo,>SU):HIw3o#u|t$C((DҪ`;DyC,SҼ43ɢՔvv0c4[0 7jKS\_̵ Dkf<")SQ:=N)MƳW7[I{BCv{hPĄvW\gwҹpcj$6FRXN?^0އ y GܳPIDoóMLmb2l'ux3U. 59]FJ>\`"zDZ:~W$ےXroHШe#o :5k&39~k|B\JC\M~e'VUp@ҙ#M} +S^Vk{5?!1\v@4df<:mq"ʬf2Ly{' NDXf\ݵ6]V&^Vfs>~(,XRU)5Bv9'bwm>YJE݈Q̈́RLycc_`;dE?J\Tk& ;\oϬQ1J{/O?BuAoh_i\x ;J$ ݅[7Zj_<0;g{F[_J:U0mQo}LgunRz..“[.[2U_?X9_8nkUd U7 ɞov* 7$HLO$cڗdC[_^kp\gL;k}DwOs`OEtlvO&Pqqw›D.u"{XLg=ﭫ$EaQ]t{D{aЂ0CugE!0κw;%ĂąttkBAMwSGS.x]R]- YWh*Yy450qJG0+3N㮇D+ruJj/ y"t"6Vb:K;d~ r[l:^LN [AJot%Ҷ;Se|T =hMHCA]MaEps 7\27?wDhJݷ*# rе{8|9X9꜁qKGIL*5ao.we u{jES`Gj]&X*U{QG>R\s\P%]*f OeG_q;BNRʹfYÂLQ̒cKK7i1;i׺^wKx8:y `! >h FbԪU,(/1/o[nW)xTn0$d1o~: <zrcN7ྎ~zpcHT!$EHAzQHI8BOHJlG| p1њ!AJ"4;!Yg:´.T"|1'S, @҆M-'D^{ n| ENx`Wr݁9BJՕzxna^o%T&ҖfH( hi B֠@KnnCjH]/P,@puJE~y,~!\ᑔ퀂t_6~~vZ4jJiYUw_- \`l\.;rFf>Z7LK>E3.qF%)=< ٱْ,UF97}.׀fmaT׬'$3ih s1]4[l_`Zˉ >]،<]aoG? l 449 &q:rgjrs699kWDeϓci\_ڎӸ6=mYXE׷'zض4B@Z?K]C Ϭ#q q)!s=?' fk2 gCb=cn6l]|77{#yy[AVP5%!/V'W]4KA"e$U|A=eG!=C)'nJ2zT\SrÜ2l_X%9xm]Crz 2L[LX{ehm`^v/m};: ѓDdDyF$~ɟwŅt8o. 羬n4Ki*u ]QU"N 4Eܿh!uWcwhrs-[n>^zg64AAҘWoGuv@>C &\ܼrl :ۧ<⴪ekبŤlX[<}ê"O{\ s}f穲|Nmw&%OΖbPq|8,8WC>A-MSޣZV?&+M 2t}4.;S{ou Ӌ*xО7'ts3͙ԦD%"e[^ @+1XulL̚=.&v>w) »jgĚXZ:Pa Q3F@;yHVĭƭٓ mkw3M&d KVa'8 S" O/Vln@GZX:胈`|Yy`.^]rM![tOP ) g|z)v4T ~aiIpOQ]W茂 L D}lBۼ<ߡ=+GP8cb,+شv2'GE|F@)D&ijz}_*TnHtyAU[(Q5o)mQj q (gИ_#Q{Y/};N];GU4&ɋ`7>V1Mͱ iюgPptd(%J+𝨖b?#>1_:d: ).8Ocxm439ciWW|33k@ku[ُ|":?hjx k)_[UVgw]f B 0+!#;8;SB".u曱/ @> SQOJ\j|[p{H`ﯶ[} 581ޑv]LN@9|T%z XeDX7W^B3$x^w&L'RY.[gf)m 4🌟((z~̨j>9,F[Ig2)n>1 7 'd@g}[xWYӟ gV]qb|aߏE_#iX `5ȶgЁ!ޣ,x\N/@+o{qs4ZbG:)G]9.-gc]ѫމӄ*)15:;#Y)g+[hvW𦸝P2! Q,꥙CyjvjEpMr|]d{Iâ)Yӝ͎܊b8pR_~>S$*HQ~IN)9ŧ^ش&sB fPfG8v«ًgqg/1TQXM$:;:qaeW`ٕHuhgʎ)|nYQGzUD55`u_ &V:aE>`.I`~ Ps W';ڼz7J:lmSCTE:@84E8V("'܎d1/38ty-M=38M$Y]5ӠK9~{]"K|^, -\&؝)kLmE5Ǣt7oD߹6J,퇆[]Na뻣 a96ԉu61WOp^d]풥ǗqkRL=FEH;'` IY(SQskw2jU5ZUr6(+TﭬxCc59|jc֗Ӌ2m'>k/H }e۬fnzly`RG65t*F 8CȣrwL$m֖?ur/DbXW?q2@3r{ٛp{7Zū͟x-/c yM-B%bT|~%s_uњEn;JaExEOHv䪔_|BAKZ%nޙGeɝpeҪB$$lfi_&TlIuÑWhӱ0p/Nc 1ڛu!@8Гci&F8[^;Kݛl&{\ :=\)5vPCW_COM\ D5<AyeAEPp[[0UF/Drnգ_G׎"4! ārS(/7RCN6j.H277D:eR獈Ru~@V]&Q,*rc !Jܼ;ڕK! :Sܦ>71s 1k]sj1vg".1L<5G4fi+~t*ULkM]ZÏ8͔ P@6oVljoI˰7/F+{HDZB_@buZKlR[wE!4fi: U-p<^շޓO83@w;OR*Ti%EG1TFv\І*&Jq1Ҽ0xMbtXŸK|yO>C|\/*{?D/*p ~εeQpzΛ YT_&~ 0NA ~OA3q6]숄5rǞdXzRѯW+R@!X;\H宎w8w ff0Yz[cAhEGE5}΅74>>[h͡mB 0`Mzi5PZ~7Cm/ΙS<X﯉t6wv7 2ӡQl &{߭eʹs<l3DK5K7uڨBFɺǀ=gfw\_"/JkUug&%*2#bfbrpB׀E¾ڛ3 1&˻a8ϢT|N@Xɮ]p3>FUKh豸B=3'd`^ʥe 1ժ}=*sp< 2N6/ǃvjF#ǪIv놖L_5M6 /d,e^Pڄ:XW'-3;M"'I(1ъjF!jjE%W$_EfX]~쇡[ l++~]{[s}(TH:N񽑲 9=$S;Z+z_RjI+YG\2j1ˈ}֕^V]*td17Gro5ʕI]IьVbgjUTB@ʓ!k/n8T1Ob~k(3D>}<ͺcx e6I]`GbF--9'򢝻XA ?c~[nSyެ*c3WLsRGBL6:hБ1c3_eU-{̝ɩOly R5MsI6Nsr^M]P@ XbN1;VnycD4_Xi0 "_:iagfSq#]#^h5ҌHU:g s.C- rjNH18㵗pGen/`}(X[xͳ8[-H( Gb^Vo B4ZcONf̖-R=evCʪUIQY"m,-Zۦ[S:r|9xSxClnPpe:|QNSG,~z['Xnl h؛A_϶M%O _Rh3W5'ՙ|?\WѾi6-Ưsfx!(AY+W:PvX(632+,HgܝpOM ړ*iW?LOo,cՋdma0JwUvfR[)JDt]pUU"u\#N23 @$<?]4DE,̂}uhD! WЙ /c@W?j;xro%Xv8_Gqj:UKeۄ"vTL tQJ8ֶiΪdhb0ػ$>I5Iܐu3a{w^K2ҩX26Xk*~`6/$K1Z* O'pSgf YIx%/PE|a\ؙrm9#.Ƹ ӸdJ`R7EGOPCc˝)vsʍ'ET D@E0Q,mw>B[;07qݻ "~]^qx.`K@sI8!N?QS$|f`D"X{S[sWؿ>J]Yp1JWeH5}+#Lr};[ >2kFp6{ S先 r 8!3ռu#i^^%*7qtRdZ!,<0(v++h0+G^L@)?u[B5$TwTzL8b;>¦jc4 B~w/^mҐE>fKٟ9 ySLΉl=dw]y 8`!*yoڈ1]hϯ`5gA#+)]"*~k}ʘQ`lcjkwJ@82,yQ\OZΜ:#_ǧ7l?UåZaFESQ+d%=KPbNa?7-^O+wu]Lbf5Txb4|dnH#r~A Ú,t-Fޯ옇3qg%M/uV:p{[v~n>B Kv+]viȔyUdn&)g7SB} hBti~.PqwiLLQîu4a%7GzS"dOELqByJ+Evw9,.#>}&/"R*iZZWo,u\Ji`yk= y`CNd壐29zѠ||o}`ɜ\ NRSZe!c7z\X{8[*%ŴgyhV(ߘɻjv^p a|ՀGgk}Ќ~`,b9Slc _ MxúciNϑWKsvsCGRPlek89 Ş'R#]#hF==|3R:%541שA:ew쎡heCTlS!Tԟ6U/9uv ~r\@v=7GObI't3( k%#BM5cv]sʶu/bL/걊JfhUCtpici&4p"yjU)u"!?g80b3 U du6/%$Zb ;-)z*҉̈́ϞJE %S AR>; p 7W &%0gU5DKL#*׹nFBw=f1S63K)\F0[gO5!YYF`Ўܳ`3$5Pd' Χvη-Η({ <**Gc3 VYt3%.=Wݧ %}ܺ=ʔ6wұ k@ReWNy3l,'NQkt Z_ftrDɧlYg{> _~9Ų0݃ϓx$W[﫭Үs81qBrL%{Nok ?KLCց\/ L{ؾO-بT\ ʆ Ԋ9v0&8rYXD}櫸O&a; p0804Cw|E^5Oť MYրNƶ'QTC/S@~GA%1=> OzihFPK=ߛݭbk4 S[j'12s'әؚ+b@͟Xon0]K0WERHT${ƾnm׮Xj "݀!;^CG::@ҕޑz3{fk<*s#D&Z #nIh6 ӈ縸h85|u;p8EnD$L-ψoU?PAmSdQ*o٪aZk9#;MDF.#ކ X]0̳Y"@(l9ty̪I)?~/-Vj,_izƪb@Yz=MU2`8[@èIߧž|WDHfglk0q!^twZm'uAt7`-I+M6Ȉ͞H>C3qnʸ%Q.w[M3u&A5DMszp.5߷RQVD^t?^BZ4+a7PeU=_kSssln eݏ^fct zmRH$l;{+*j+6^0]`:]+*#.,2LoIp^8ˇ(Ƭ}ޚ~̲#xK'] jX[řJZw%K gppf̆*?c7Hb1=VH|>r}3]k؂Qm 2| ~ \* t\Jq7Bxx~u0ץ :L[S?nTRu<̳j͑;qr.f4 a9JLk`hNFzv_i(u#PY/<̄cҐߵO'3^lDH/*\5Kݻ-nU$Gc;C HA&:0[x Y!jQ<t}s\ie gQ'U~1 Lݸ'ZIz=KOd,'Xij;Ji }Q16,׎j҈uАh,+_=t@- {N!WȎlNjÊ-Oc骽yKe9Zerc0->_0hrR>d.,x19;Rk /c#"LE#R5eFݍS %,a֏ QQ/ f) /vjngHZ 0EC wnnҫڿc'$XxR_A0·,OɳKRmUϜLe^.)Z=C SukTk׻̆ھ|wc˨*Ds0 F8a/28KŅl3 5SakzJY|Qኩ:U55%n\h&?-2| 97m|dڍT-t0FU4OsR.k6ݝ28 $gNc4*hqq={{z_஦A3ܓXr\6Qmeގ|$mױ'&raqany#$*E,S$ҼU0S[}{$nmzG-N:̪ELy* J|kg 髽3偭tpsU9zVy܆<_A5f,Iܭ湥ȳ1$G\H3 W9IQ(0ʸì:s%'I 7G˭+BhV?T =f s9zIQQoJ͍ P"I-ªOg\]X3r[A2zr=gv)*Jѧ>҉7ݠKiGmLޝi%- #802yz3G nfs[L[b}wh-7ӰiYGK`n%~F[CYX +'wUـfә)%Reo⟒ciC}AAFWԌ4%M}nvQkR̳pڂM_!e_.mAG.gjJTjJirD°,^\P]֡Xat#ߥ \(ϲ&ODrqQG0eEKP kf0)d! S5vڋ`}ݝ%ʇV$.VujW>@M~Rh1F &ΜIY^^"#Sc_*ig$#Cϒ?Oq{ Rs{ruY9b-S7^,W9ݴo9!aRpomn]e4Y1@ ⰣNfGu-#>},6yg5$v_%^I@po״8#2]@q.{{Kc``8NLs" ?PE}cEV_FqdK2g|#"/q7#{xS5XKNuW/*`{636 eKlӯ:y'rȚ=ձܸ+%# y^򔫭{?@0|_Ԃjb-_ 4ױk~HzΔH`"\ܜ7CLcT(37F='`eQ %-SNZԈ>&7uT%̸v\jhIhm7 jJVʖ1r* cdG_[`j|z )he4Ϯ{;HLQcPӺi he+s!(띂]^8e0{ó $uC>a|5&A9W:=xeM#\".>9X<3Kd'|JX?j>'fjeMH'i),= 7H@^~[fE9M )ۀ#f+4"=%j~HYiG9f%I{yd7b7R&Мn瑥]8ۉ;Tt)U!{eg4T`\ܑlNǫ3ߨ&v՜]}!̜mL4H6^pv'ϓgOZ&eqc8udSj+;~M[̠+)n)HVdRT-P& &vQB,wֻWոf rznwlXѿc#H/X9n%5i vgk2dU<򳿃9~$~qki~#+yb*L'I9C1o0ҐgE˺ )f)^-mrmȣ78I6VJOA\}yXVQ&tsg\p|smWB{IgKC X[ЧY"Al ?:3r)E)s7}D\w B~6۷sG@RFёfAP{2?}?),Cm -3.22A!S»k^OG&-E$L/|k F(d>J\j {?@ :W~eO$@a Bl߭$71LBW[ץ'IG{gaRTń()0-d>9r4^m0ZF9sHqR`!V-XND{"=vI4cn?yz] j1jJV0*GeYѠHf}ѼĞ:BD4@({G+Ciolm4H]3a]XsÕT 3OMNCW}vU' /+ntL9i/ ;Yriiyoa @7>;,Oà٥VX3W#xaVT+g rE}pU*.i$ـRb`go"Rpj}J5쑞RC55C HҀàdu^wj0+] w!{̉NjJaM.P(goU5՝ڃ _2 < Gݰ? 5 yseYKM_O/;ŚOLx=O͖/UMaJXWԴ(K9Ox-Y"9%+T]<2ȑFlM$ \˭5>H J.Ōǯ2BO `5'"ߴ|>("`PE'}\<|=/Lo/ YEҀIWhVFy)tg(6x 2j7 ʷ+Xu ?s]9S@RPT!QKܿbCl{ Q=\W_j%yޗ~^Y<,)7R-k#&U]8w}GXxBIax$ǖ$ xbW@ܝG: zcKEXՑFP7g慨đADNZ\Z.zFh2 +Oξ $Օa nL? g۠ +j=D/W䗏9z8ȧ!d/趾tnҡiOўoHN9lpa6;9_ZYFo8uiUže? gӯW-C-F7}B },-(ݷAPyr{RȂ5cUrSU§?.(0'+iO6[f;DjjOE~i'fYl%?ԑ-zhiOQ3%-]fs:f w4m>Y+ jR'{ɑ))l Үk4>ľ<v]}[g9T!1lY6jQs'Or /,~[HY0WQ_oOK&rC]|=)%TGv,ʩ7A\~f*^k*)qrx7jk*)TSUbD0 /*N]LcjűܔUrCR@:;8rnsaKZDf'a$V,?h:C"3<)%Oǎ8H($H!=IOmUqh졻IhFDnAߥ54#kgդ&;Ӻ{~7n!.NIV6LBH~dTNc(Lc_&w"Okr;9z%~ɠDi[<=c{9G jYV"(=~U:RgpE@EIY0l6[f*ػ tl}S\t 7ొ8;((ThE=6νt8^K a] N9q;azdC-؊LeT5o>#ǜ9WݬԆCh 9xSp7˽AM xoQO@6kٌKpͣ~B U+/[l>2?c9J{Z伦a$Q9 +\UZyK1[=w)HdmPst2sR.".^ל>ԢhHǝ`B%fO6{G_4/JBs8g;zv>,3aDB7S IiJn!p WL^6OgIBNNBCWbӲ{'فko'QmD+G$ ZuѻZd]U RTSiN4:NrK۔$;˸do6C aЌ*?ɼy1y?PjtĨ^iѠpA{!{RDg| p"hܽuI )5`!Zy71?$G;xj:=4UQS;7(Uarz|ouy_<ܲKel-ooV! Rڂӯ 1ljB}+gMCk)=WItR{ A,㙧)WP;njdM9xLvPUPV6H_PfzQ^_8mbۇ< ]'AYҍ ';rUsSIJPG<k{1s>.F%tr2HbzJ"RY2KySw/?($D0GR/;KO ,R"~9Z5Y'U$A??Pv\h*4g>r#<]SxN=zCA{e!F \ {gs_&`)xx,|{43:a4bozzm҄.-r~{*(Ykeޕ0f|XٞH(3+E1ЯY(>߯TrTK%t0"TA||` KLUu\`wfkW4:vi_VݞhzL왍vk]ށ,C̕=r5Ąj1k7ݤ`M)pgܤ478wƪWq3XlNyA.G[0*ζD%%B nu,0/H{ֵWVz(Q3*)P1uXO:-:o@r7[չxj zM +d/r >m9E͘sR?-V,b*i`⇜D66?qkA \-,бk7/ʚF սH<_ś%/f`:v@)nrasۚN ]q-]Ţv7m^y۔L74,!?ۛR7a^u k|-U{P<sHbU|iU)Yz8S#2VV:x,4DKuϏ3yz!"J8'2R_&`ؾd+Ν'%Oڕd̔uT F>E/{篺FV8h||ͅNyAIؚ<68g~_ )7 k"b ~DN%[4}W^mNS86K4E/1DI6L p Hہ[VeR Isgz㌙ Ю.1{B{UT N/"E҄喲U.ӲoKz O S=F5f%bJTʒ>s]`/*ggYfN:i%WSa<ӼWo-T:E,JZѥiFaw&z-}mONfN~R>!}D33Ag]iaaCmyx˧W}F}rb0gl/ uB! [ŻUdꜛN>}'z* >z źoaX4;"/ϢCǧ"/8~d藡 ])29 uQ%frgY+foS_1^KLUQAwUmoj}CEw[""H?:YHsc=opg>ҩ6L,i쯴 ׋/խN' m(=0T卡*.ZV|<=+w8kꂮ:fJ2%g5UڔA˺B F2R٩G2p!VdeM}/V>aƳtv%F=׵Hm xj~];[/ɻ3F2B,y.7}M.B Tqu:JaR4H]@wxG66- bdZ!,w,2%+vJIq?csyHc5~0!;=!3?eYrיы @eJ”nXHH لq[&; LNEK,_ODS8PR_oxD3LmIutcx18hUWouav5a3\L`MUU?6 \fIh 2:03ʉ edQ TA_ޙ0ByN7:zy,C8Y߿:h% !L&:G~2@HdH%25QW¨&ػѱAM/].^ѭ]8KUs^*-֪%Tk';t| TW kjS3&{؅SSK9Ԁ!bg 8S׫pǃ]kX4#şsTη >qj.NEAN n"& x}8JͅZ FjŞ i &DHqkn%>h;vB WP$m&F>*2{# %i!WRp%({9[j@UY1csѸ|'iGq!7Cr%6)3)t,Rv&I!*0^Dp{@l 8lpTf]Q.nQ4rJ+>qPrJaYGŎth|8UdGߪ:5EiқhwQ"^dy𲺼%m7(<5@ȴW /!x<jY4ArhʺǷ05]c-4qP0[I e_YN4J0gT_ t5Dv\<3K#2C 8Gi^lmcTA|дy4>XMfBl~F.<=cI`ՠ[D]m0Ǜ˓j $8/m01;edRxY>aaNmꕥ><ȟ}G,/_'Cuf)f+?& Uߒxl_2# 撋#\ch}sƤG!q U%jw;YڕcG`R:Xs3('7L o=08}&_}@K 0ZK^{ʱ: { IdiH<$̖`u/IsGEXc~γfS!ۃPѮU=7iL`귱]4)b6%`ieCnv7n8Լӝ3aqъMohEoqxZE5⭫q-)0XYHB5sM%?h3m2,:Q|ivG=o,za01JB͖z_»j _4_Vrj\8?ymr^(y Vv-}rX]C d9s И\`mM̀FΥY زU9BO t +Z &LH88{ھ8;2p ?˪ٝCUl9EjDOJL1/`k *ZB:"zPfR3XXුUuw !{>iOc 84cHMA`O%.; Ipz"<,ãDPs { Ԍ3ZW[X8X6]$:v55,u{r8BWy+/`'4g}ӏiY"g>agcT48Kue'/Trl1`6ڤV$BE#~&Z72=w lQXbyeS #W^FP[<6:>OW7*-y-(3J!|<KDśL_{ bnB}R4[7JYQk/87f-e'8hc}G*UO3QѪ[TS8R6cO?]I l&L>=wQvWtZE63Oi .Z?/)C8`jVhzusbn<UcѢ{kB  +>h iE dIZTձ|,% {, RէD-VDgQ>UZsR<CC!LS&# ]% >Y\WjJC{T4*qp3d>j)J p}%MTkCd^4-Vm%HՖǞ T7>oO*$ζCHPՎ99F~ ,b1ud|_"l';d RrJo YqUެf&5^ e_Ix+ K`e@Ư Q] wyΫsPxA09kC=KStre!*ϟ&m Y8ˠ06G) 4/̌$ 3l8 lڒe8D[S^WN٦ o>e0AG0b['8;O.ܲGr2knJEN*e!!jUej\݀-MzNWȂsv" T?U)ogBڥLkiBԲl%k$Kc2zpdQow'lnj5#n/W"{8&3QA~PżnG:Ms:]LG/G; vw< F&{WJ]Zu+pG[Q2y/gB*~{h"%C$65׾ZHߡYq/:nPcw #&;9bpddgSM&/M W@fp\ B2\UXݷM% Y]`hz+* s6]zE9c?|͊qxRWU_ydX\ _uЧiBjsN>bTpdh9`~g1jSTO|q/ÐR1cGOLMdmǃ.tk*~s'bi!ό,MGdjYV_G{[pvz\Z&ehNM.R|I;58cm~UGcC(K9gzp pzv/ID-x_qGyn6lO#hڰʊy:~jiK}=g%~Ee/3!>D^Ʃc_̼hs%[NtټG$]'`ک?ػYGp-yo~p.s[fT<-ё3FVӹpTd=zp$ž}1i: =G=S9c,:'RS*;yN }P ,qN'pKxH{[Gt\jEE Sã:SsRs_yߔw`ISXΥx婧U7HbzK@3[5djst6[_Le˩uPlm•XRqO_# mceGޑثG󭟦4WŋK4r߼lxƠYſФ/D"m gr,F+_ Hn6YBUrKw˞tF %b_o]D=08) ~ԾN,DN; LŽ.\<Of`sKs{ ڹ]!UK?Axbnx@2) kn"#nb(z e췦]5h}Џ -q_,$xT{&[ @m-lr: `7H.+X[Z+.ך)>AݎW>\BGķ낪TUx_(_wC] W%WT$;lbv~"PbQk-k͔ @p; B-vy NdK\w$*i0Kp R[:`77$e{owqƀnI!6X`5sݛbpJtGW~H )MOA3=9GIwypOLIC0Wy0H>ѬJJN~&fS*J33y6yN$$5Qzrn仯2{&(@R%zUʭtBPB^BtB&AE@:$w1H$wsu:=sO5{3Y܅/K/oYï!>:Y늛"5%勴~ƾg+w6Þ,zor9d}Lg# w3On>C_HXCp9y~CZ qgG%GR#^5G\ƣ uj.DqRMb2_Cd77:!#7QC"i]WEjgm1?cun\2kV_~hTjqvn:}X܅1:r~hU먍 ZovP tH2+'"$.hbc4h`p[+Zb~l aG\6}FOK#~S%Z~Fiۚsu̙t6[zbL#k!i#IsrMƗc?1G/1bol;I?; !>dk `?\.֯R\ *>0^2*wuNL,{UAswB檙t)=2/ޙӞ>ǵx GYI Rw*!83xZcTdZEM!8[ iZH?PuQcR @^Cȏdw#֗} W0㚎h  9q (_`n1f8uT6W1d_4m垀.[un-g3o%: ?V".DH8DPRلޟEF Tz#llF--ϤH>:")F?tk_lV ېfNkHCG5ϷNADO)1k^ SLt 9sS,7sX+ SRqYĦL-q#T?SJi_BK +Гm/++p9< j,*p Ω|v8qQ2fgFunEŋPiuNoۗ^\Y+3m]w(R3ӆ?+i);m,mev Z"1&*3 sQ^Kyt1s i9&_Xq/uز.Rer8!Io왼r8$%.󽵨E\< OyNK&QJ[ OF-.^<3]hDѻZ"g"I75g(.Ʒ(j P.ϕ5$Dw$h7TPɘ<CCj^p L鄘Wie_B*An5,Wҭ5.g8sG; Gr ^nK ۂ;֔?&6%,? ZWL7(*^5%#u?am-`s:( 7atܒ3Q?#CU ;XS q:xhey }GȳVmngg&G> kh({өac  ke@Mcuo ^ӻ)3ѭs%Ta6, _ɢqNjǧ,Y.h6iaoƳ8 ״3LP-z{Q'W7ڥV&6tʃ[Izo\]kCb Qq+;!zPA֒s؎=4I2crԒui4eRO6$[Q.8:h_RV*u䷗21$2,;:j$ y %b#X52~Olӽ"=3 jLp5? juО\2 ahkM[En bxic8sm7,6$ ܿ*,D$+[z_bTtfm.xjϑ g,y`,LΖP 8! zX+vI[ ww/|>ݵ/)[+J\pH6sRd|)wX?L.=_;S{tJ@1ئΓR,W#<[iL^7ߐI B^ֹ Ԉ ޙ&T霞|{zq.e:9=* !|b*q|JȐW]ϭRʏsy9/vEBI5ߏIJmZo{o&' ,ҍ5;x)IM`?`UHnЦdmX#֍Z :F"<-4tή{@\+.p11AV]EM՛C _;6EtgސH1NΞFY% AT&B]z9-w,vѨ<ՒcWܡg M,,. |N]II6ǛLoccZ*mE\`](h4垳_gdRǪPkseuHA'';7w`y~=#)CK"MoG>#TKh8q;8sy'tTc̈ }ϱ=lߗs:8;,Z 'l~9xNe(l#lH&@TJshk˩ms3LVg>hO7tQVb~?V|j!G(\N[K/o#23h<.[9*5"GNf5H9%ݧ߷koڀPI < 2 "s5t Cq'û0ySc 0BE9Xd"-H)ǩr}++#YOl#1jR49O69ŬW~jn6@֕elj[w=`D'H[x5Y}\`Gj}pc~D߯,oC$V}:R ]Q.im1$}R^ca:j,y$X9{%@A:[{)){b31ID;֢j"P˶𨠥8ۡ>8Ji|E˃kqZ5Qւz_-c=N͜ssT(=@m@ ϝW!}ge_,",lZTG>t]-҆'_TMZG _Kse L{Z^C?٧IuT:yޱӣ}ĕI ZCVʩ|Kmy1^gu7(WFYn*eSf#n\ t!$͒ݓv_^g V7>zf7QZ\=+a~dN,m /ASӳ# oK WvOi%?~h`@Em}z`'c_\XL0'vgY&.gv/*IN ZDWVuNIZϑA`'gw;yeYngܖtaNajI2i͖ʿg^BBY<5]k0G \Ryضk5 ZRY~_"ѣ)įc1ŘnFP?o}Nmpmd)HiKqYRwn܏Sid%ܡKDhu}&Eab.ŏY@[J3}vAmɎXu ]iƾ*T{bÀɈ4B鼐5 -0 J 2h PwckJWϝI=?mCԎ ָ#-C$puuↃnvoi&UxxNŷ"}6;/-Yd=K/v+B P V%~YPcvZkA^tL~uWW ކM[N SyJ2{$c|7SwzN[8{`ށT!p<逞iP|nrڴwlc PKM"1Ga>f<``U 36h t3'(yh̓&ovtD*vhj! ֕%cynÝ: vDLE՗U%%Y%b\Sw;ǓgY\'L,$ph]՘q14~7VLm2}cW>[K2T.n)y-3n{l̗E@<#bt>8llyKM389B@䑲 0]| ڦWIZ]\s*q2WgJ,byr%39/zs4OΌt@zWKUu/2J_}+Z;u$=w,棧dt*ks.iB؀Lɿ~؋f9yVFFt}Ye;'eDpg_0zqF=Ӥ">zxm2_u^~UcrVN2YFC0BX-G)s C;J3P>p ƛFqw~d@}g#6Q\|/iZbu /5KA;p1M7ua ؼl? 4w_~4/9Qǖp 8!h^9Ҩ£}ϟpdjZ̤(EIk Kw m>ԳO ,U5e&`^MW`@њ(,7{^W8PJwJ"K(<&FǞ(-1hc$K$ 0ϣ ﮖ<)yXl{t[pة03G> ӫ_T}Ru@m=r@ž !&a!,UPPRZ=Q wQ(f>$5ߛ fe78kf[9hNl"o{NI3#H}3 ߏ B &茽o&OC&lY(~FK)-@:&7Ķz|2r(i+ds\{QqfkWcSR,v'#fäRZsvJU,v4:ugc0#.b_VfC/t.p\+w+i[:]10@U$~T )4.v?"%\Ѷ:dE% =%i- `rBts'}jP35g+"a )9V#c<8hJ߹UV⭪S6N@dP 拫,ݿe|N`mℐdža5R[l=1wFT&A7nCE~oGO1C#ը*/;`7ÜF<HMj'X {fmGohm ljDhv~Ie@ۋ!xv44F&.\#jklfc\n 4;17_4Vǐh7hp[1 ;ˀz2XU_}9jQhs{(Q֯D̺ l?7' %R QhSz۝01pqfar5WlE[ d^]~lRzP@x !ɝץ֨gw;Hbwr̗7Qw9 a'm;; 9襺ZQ|Es Hb] +fTs{z@qҹNYBvxӃw]dXcbɃ]ymTu~RNy'Z2v\a3}>q~$[*aSȈأeFlNx}oshhUܻEL%R0#Er9lV'wj"{Wsv7SkL,u)Fjt:B~?klaJ0dbOߜ<[ii+wya?du3ֺ7;)uѷ'azj^Ց7gC %&&0vtc /Vll*L[Ezt1 )34֨.SiYQ/:%J*C\H\cɯÍ]^-+xF;>|w;O_izSMD 0U'y"u|qtn%PfLj^Sřq]sWy[s:`8Q>vgqL:8oƨv2Miq1È ?h16olŋρXn;`ˎm.\(X[{ax6 I0w>o-_P{U+ӵt:IFè;^$\~X,vU,c=h}Ôy]D 2&azp8sgmCj$sܶ=fݡѫ,f AV6:N+bAvMmVfXR2I5…Ȓ.b0Ĩ/|/_wF6ʩU)ppON|D:X\yVSG_^Zu6Z`ŁGx‹ӻw}p%[UQ `+_߂xMxrQ$-W$QY;/0$rvR?chA}A8I=i^MSb Ŀc x6Aۛ^%2 %c]t}YBn,CT~o3"oFTU h)aQp}VE/>3ns>zV`C1;cmxjI6&X }A$ƥA G@WjʟZ&HHpFàQ@ 4N +~g(VvCCei@ i3DR_Ko5=!Bps局9Pc䗟qCͲ-l^9Los Nm'h*{FJVʵ.`ZJOkKig 6f)EfxiN77xv˯>[S4 EpǍM_6d'.HeC_]]iFn F t">_^+IF D ǁڒL!c;3-@Y?UY2]xEp 0:S6n f6P?AbnS~L.QIlAQ$fg')&t'{,)8Oֳd~7Wj(3?E>6vݘc7}B\gck)#̕} iWv>ͳܺ|[?m7wI*Μ^~:_0 g>-&Fm%^~z)1]m6l`e}P4ĦRP0s[?0&3ӷ%X;edJaf (ţs:z"|; 2s%3qN17\aeITO}_NdYжhG_Z2\<(2VkeG҇*A޹ !LwjDmP{5{͋dC+8eu|خFԏFpCk;d 9i:0h&%9Ь #7,ŕ>+zդD'W[M]' ')+}{W6><6O`Յ'}}-j_%X~ka%`3u/DN 2g ͤ [~͝BVZTTz6 ,C@j)6ʃƝbϬVD#<(k (I5@nXL'2{Q>ػĢ{\K'|wUgf2ޔwo?$2DA&: @1c{tQL&,%|V\X'<('0%~0l@`LEEWx@c򎣕PA]۸#I/3Kuuآ8Y{ʪQRU NE홱9;֦ݔ3as'xM TP'6ͧGf;+keo{ʏMO"%ϭDQ ,ꗵږAY54hȹ] X]RE*ht;M]5F[:xNǺ{NW6A?օGjY#w66f-Eot^5Kf6k-(1tUhg`;Qhq p:BNΦ hxŗX5p67E5B:p$"p7'ۄ>8ؚd!TsX{ S-,A(_UiyCdzLKG<4̟KwteWZ"y!‡Aq;ݶQJ0%`0;"7s Az7O Z{8܆˧a]st@@~0zxѯVw&-'*)nR}Fk㯕u %g5㙞0ƚGJZ,.L%HW_n:Ł3yW+`Tс%[1a~A,ϱ0Is6¡l `lhEC& _# vo7ӕ5cYX(!W΂aSGHi8r:5WGB*2 dv(~ϡBRkq|Jq{f%( m?fۿҩ0NâgO%^2{sR-"Y)d9+yJ!~ 7,h-t1w,-VIulmN܍mUF'C*JVtf4,)ςjGCYwˌ b%1˻kEo[nbIM Z ºRN ^sc6& -1ֻ'Z^iZgx!Ri.::ON!{Ɣgp@5F2a*=lX"HA:HT H HТTiAjP@Tz.]J5Ԅ$|y~9{kkAgu͞g=w1:JOӀ (m06T;E񁗷u42y35%r!: CGB6ϩ`3Ž^GB& |R`S/ _ev Nwn|4k^\Z(8 A*e\QI_Lv02v_X M ɇ Qa=uMW1wjjj.>v?0â>&jj6IT2dauXG0")n[C @8A)v_\RU83:8|Q{y&BMڒ)+f{dww5qy=oВ"/~C2)m8trLA|! fbکKT&k7,Fy_EtN Z:I|wT^5JGSfQce5# D"+͊=/+^c'?c ]=$&/#Y46a jÚbίZJ Tw@ RJol tT31aŎW"+Y*d_[\ʬ O2 d ]N^eo|dT]qג@nρ2B7H5,Zp:^V\nU9z{F0r@25e)^z{NO=8̋j4v{qjIo2; 7M9]RclcGU%n ұ ,U<^(fV{Qh{u RgfQ<##oӒZY&qRȃ: i:ScR ,7 ܌V}疯B]uF+__2MYR$@ffΒ3jηCAEeT7uiE͒K^.a5׳ Im!׎#{ o╋lSO_9< CIqXb.qkExڧ<E cit\8gZ_[ݠtk"*.^u)-Uї@N!,D槲|"L6o=|\V R[6˱k0FV( 4 q@7QRyqkV/z3Uјש?2˝pQefz(2Jr5D<3R"vZreS m+:O!qi:o.Yҍ^(u sFkQCL19FS@ݶsp IX2m05^3<%'|Us+{GVl^ J/'4u( LaCy/'\}?j2@Fj7u:ѵSU`Oa5OC=[R_zv~7ݪϜ1]SQ>!M )+REXT8fP9~Zg!13IKc+G !x2 淥;X~j^dU}̹I0[=Q)k^{e%2\uً863:C[)Δ]7&#=ݯQ|4 U"Ni yFsJsUJy-[TEi}sCO^Jzw5䮏U&[Y 031,9{|!e nƀC./ .>5=)NFl3ϛYc>TŘn*(s.QQ25`-x7\0S[2r3Rl_:Z8ߔ`b)j7qpG묲菀˪Ly.uP]U:@><%q-S9Wx# O &OAڢhlo{qM׾~֏#P+Fm]!$1m05<`IO=Qy^8#QX}Y.ֽ6+54Vq|je0PRuo7rdr@! D?y܍Yy>H=5#6>_d"u"0ëo~.G {yXe⫝̸-/Xm'G%4.M>n|{9a{qdTDE Ekqմ97]aab^zUB2Bo~}qd~?9p1XX6=Sx~ Z]^Rl (CuH_Z冱,JHFx[N0|BR/qG}9@q賻[[[A'*k\J;Ђ7mlLKßfmu_1R!Q-^)#kQtǣkIH/cէ>0MVLls}` rgco'ddYYΈ-9/ lK\r$k"GG>T~O]13jl{tN{kp}E9Q*o4guh{oAT(aZQ@P}')0O<(B菱h$ÅÎJ@ՓqG0EZopgї1I~ݯwg4>+63et`v]r ֙< Gu..zVU0.s&!az[-_yN*궭c΅g>_GG[*(ki7Vn=85#WTTQ-/ Y-21=|NÒTyTr'{X鉖c jvY/\BYͰHtq4g|0^҃Y8we`CGB"t;=O8ex6,](> w$W߯In%c}Ew3^wۦ ΍J`0|MU{4H}yy^G;ۂCeT#hu6r9vQg {?撷:ji5 NY8 WpYGH: E"u?[ͱ>Ld,O<kY!jQPNP+!me'qt˧Rhٻ&2ݲV (݌~Y2-x5IQKU0-T#*KU߯xo:ϛYT%-mT$U{XtY%;r4/F=r8's}.{ /<|ez5S.!VweoD+ru~!~ݧ埼ty~1{KG9` B9B'=ă^6u2*I(\t*w96 YϩsϫТvgazM|$/Xfj~mUX#|nNK G}0K%1}u) w:T9Lf#4߲v1Q UHF o@~ho╮/ {pHRM_ZCj{:Dp!:'Wyddh\qdtt_ rj#5𓲕4>sDp3'sv7LG#G6)\vP͡$NnTP>҃bȿXc}䊎L:E1RUAKq\!n~y~m֒Y-ǮgQUDZMJ|Kd2waG"#=/z~A]ʩv νȘBANZ|_ b8$>&o6v~W&&GvxhI ιȹ)bK%ܟ^[W|}h/{v ſ;i.z.FVHL,Wݑջګ`<ۖun**.E6t9oY3imeˁZ c UMt0 +&;dg$Bd.?S ɩOW0JeYr{yV6vlq'H-Qa=r1LӮQhǮѤg .~g9Uk_@Lcu2z` 7+4`c&JGuH);Pl,r'G^Ԅw}]Ev蜲W~/CFfvTvv]g(%L17F(q?=֨.:%"˧UFЩKc#۠w&9v"+,"$yqZ.w4.t8`4yePZ&ddMj'ܻW0\si QGƵ:϶THu8og:pcư# fweCغU ( Z7eKR:2VWb˜OfL'Sy&zMs՞lgap wfu{JeӈȪ1(?XӶg;St.O: ~rN$S0ՎˏUbw<%xsO43ӈK]>UXmB sɤAZwMx=Ŗ@9<~ծfW(Q 1ON }%4RZ:srE8)4΃BYx:Z70^ÏnўM@)D+PG葶Ld7 bP^B8ܣҋJc<Ћk}t/8*S`2~Ҭ~ j7GGlѠOS8ɝ@3dszܲFA kѣ7<O֟ ߏ>n5h&VL"J~8QmU".^Ȟ<*LT$abiFueőfFma}^xJSi&nD>-5~^G#?eoiKLt.Xfjq^J vˑ"ZXquH@\=\(ܐ ʉR-=x[#9rt%X Mj8_5߫9N8 _ثd 50bKI:t(V108 9*c[ ^ ]` ZLEAWuCR+ghP5Xs-j2oR9zw-ʴԺAb*6}; {PḊL7.ݧi }8;tLՇ@ŋ#CwM\&].Rƍoa)~[M'xi@|-eu<w㴇# ~ bpzmi{3n [%RXt*iI98"ene 8c˞a_I哪= t3Ѻ0^g,Uʓa7}j)bTA!/H5֫W~Ѫfg՚2{6k=cj# Lo0iE~kh4uq4 tL3^}Pd@=qLp'?#$ }ƻ.Ug|yyn崆#-0"T. jB7Wƾ!ٷLR̙vͪ2(&:!)WaDP^@픐Qs)KCc˔DQA`rc{bϖȬt;A3A5_Xipaز*Hf<Nt "+yvEp< BND~yZHx'>[d?6|h:M& 6`e;F7}d|B&4;n1[V-= Ѧ.Ҳ+YU7V< {͋A~PSK(\5*%Pʃjj_av(gC Iif؁e;'scHRؠr-uVo/q,XI&ޥ瀫&&F%4z{kJFK\8![ZZz%N'x=HAf}} wOZjsjܾݵ gmc۪)8n]pC&Qqt߱84}^Mf"Xnyˤu>SML]?e pyX$((0`x?S1]$35MyVw/]%H6 Ĭ^Lәo:;?ǘ-^մ7Dgs+=wi8+G9/D#jK} ?n"8yZj[.a\' >S陬j7؄{.WUוf}tp2v[.P3NCnt9DgN"[rA4OT 8d;e)?fsAoD`35" K*6$g|&.M/ʫ_ 2 mRh*oςe\^`kk4RW.=D(#wYu1Swmwr.(? ǒ&4Emm᜸OX#jl(evu ̩,:C>^甜o»% 7zWMVk;ZU*pSv|`фxO ̝I\#}|.:j6L`y<_Uv:ޡNJ[ԫۙ@>XS :M+h2?r뫄 BZ.W]k*gA5 z&rǿnuBV.ʂ= >^UM'd\V^kK/\i=.xbbH$4!/#>@@)/[M_<~7Hδ`pl(xh׈.3wSttl@6αu'G+V)W/[a3"*+RV ܊ׄZJN=^K]):8}`ۚN}Rj.9nC]^4x樦_! u%i =WռG\r3QzUu@'pxIy ʏʅʿdYs6p(h B|A<~ĝZ9IT]YՖy?p;عk+y+ i0.ib0Ⱥ@1,oΗIN#j\ h@#c '|&/"?~I\Y w,rp'# {9Bm&/0Lb?<'O҃߁'1m9T6y,ix(3 X{m8T Z>ʼn$J%oɂ9m ٽpE=W.cEx,$B>`9`Dv0ЎDs0_^I^!%6eU4XO +"cInRAWꬋ3hagzV5,Ȓ8U~lKOTײu`TBeJ#quC#z6Bv>Cj*bǃ2Yſ,H4M;C:nV|Z5`Iͥo( }%Ӆ[e;DZwo7`VWJ z}>ep]Y[:-Oۆ7fT\/3 `w 8*F`Gv`RrcioAw7> XF-ڇ&}Nk-Hcg`˳ك*+i6jO1o;Ƈ/7󙛊QZ'W܏}O zhtyJSE rT{[ =]*Mt|~< Dj!7=r!"V8r܂>Ѯv/θe~4SpT;i1Ta嬰楮!Z8tA+\;$2FZ8zSgQ1C8R=?W-5ې^mƼvwK@%j?iq(", (n큫o̘|~ծC Nغ‡Gz>=gzyUy ՜ ޷K3CNQ(*4 a%M#M֏}ne}%!5oPZܹ1;$AWއm臮h+)s+X/{LǗ qjFcUs΁@{w=5j5"E PGy=Kmy9F3xe_M󣖬gi&94<$Kb9 :yD{6F#dn9B d$hՏ.19=^hcBaNVU\1S-Jw滀+bDo&tf SOr0S &G6t{:y `ceW\'ױBm4pAB m҄'ڒܳ=)C򜣐 ]Z, ϗ9NhG+Q.ɬoŴ] NMk</M=53eK[96Tx7Cjv6cf41l(Ӂg`X%czYg HZ+f^ ؋S <(hWPw]ˈV6 Ek;DF)zScWBU:RuzW40@%-"Ct%5KGJwF^׍7b]tlnz97f}B9Δ#{@ZʲcA&D b1:kpG S/HO$LYxVpM0jx<2SڏOA fs2E1+3ͿguȻ*vҀ=Bw S%XNhAi,`zd p46W_pq?ƨTT}1?>i 1lZ:)ut,ԮiJdB8 *QE7i#ɑ&ݻqre,X:NF+1u^l* gZe d8dlL i]]:5YGbZlp` >Ē˶s[XYl_ZH5²qwь>|vYpg{6KL5nVp-hk,4]-L"XOo=N!O(?"VB q;UYp'8dGXGާ{]F`",h/'x鼱jǼ9Ynp[B,皃X6m,I^ y3'a,7U /jI7uDLu: aA￲ ,O$fٳqq:;Kub<YF咥[g6?t.@y+:DjrN4vXc~LghΣs'V :MNSVl!7fOx۝ O<p,lwfK"YXA1oK.i >ߕ*4ν͛ Џ'Ew5D /d%E{t6? 1 riWIZQxxy? n_;6oG7--ynPq> Q:fP /Q-6>weĺBةQ s@Gm=lvN]M?u(l .2iEkoT++,>/ZQ!iTb8=#h=Ĉ ~T kbrѪ%zܲ=A VPZ>ig259A֍e_CÏJQ$ZOa ?^BD$'f x~NYK|KJ-Ԑ)+OOAc1+g?ALnk >N1ۣbM<1*dF#JudP ōݿVmgj;±ܑ&tijd]jԻ#^uf>~CYnPQ]NZ"6WxnIVe{p+)ڌvu('.Պ/kcK'/秹,.(KdED fMQ?A{p-D~Ü^{g[ј;l{iQRӂ8#k&T:PfZ7y;Ů!o7((Q=\`ΣKN|SqjCyʝ$ӑVWo< WdR}na)YP|&3gB.2',}8~C5'g*9l]$ ~%n Ygfޏ=Vh돉Hˣr{ȫo(śK[[YO'Y.[92ȚnL-kWkR7\W"m YYb;p `=LrН-!)AǗ^]}5\&}mO$nпNV(N*!1adʔWֿ-G(/]Fҩ"m>Fd-PV>Yhc{I-tȊ@pAɝ2ÀS]*:;0K~nĞ# &&;yi'=JBgӠ" q 0%ՀHeP9[W72^0kMݐhL%sGZGK.Zߟh6!Os#VX<\vн` =zxM~:>id j ,S D]8B8⿩ >taKB[93t0FCF͛[c&ðvWSI -jɬT2j>qV,0B59V"G}i:<`]kTH1}zt*~pﭭ-+K&%Qk/^Cq#xc+gOU"eA قs. Hk~v~dn9HhFHZ,;d:loR /FJc&b(9UNKytN⓼wKH@ąM@gPu x"$$6z/"7cس>?!si п=tȅ s0_m%A+Dۜ 8^L_ifϨ:E rtqCLĞ9Sxt䐰yV@B]D!ɲW$7\w^ƥfl!cM r?#)Z<+VvxZ@['ɳ `ROKلw58]'0&:C +x>gi4_ PAK>w GEK#Iᬇa j 7F|G2C^.IC >&ekf%.NItĿ>R{3V:+{ߑog\']h'] ](l_-ݙA=b*@1BG.Gr{#tjG)|~j`cb;*?_MjnGL^`?Du>?z)Ϡ{Bq{vs46%:b (9W' @%ŠSW(/88ē~K 0? $ 5Ȍ?#(oS o B=h-t/A)cJ O5_αc-_h9LADzċ؂/$#uC1Rmge677ojф&fo?l Y@$TR@xk^|;VauQ&ak0p a0H֥, ?%bj7P$3",u1P %6 ?^&IcI s C+L49os?-ПJ"M#D=_PK 3(@yVMTEPUB/wasteland-nav.xhtmlQo0ǟS=7vrR# $ M N}"|;vë꬐BEɥCfwXPZY;$USl͝]TKzt5D9ׅ$p,s/ʗF CtӢ Z,<сBqS^B9E-(Qv-HLCjE ])VѸ X8dk%6856^T.JT+2U'N&sjNiѿ]"5K zhUȒ&kf+r6#.R敾ic`=thN0qkϑ4k_ptr+~ۺh`E~pq4y)-&?_4JJJOtD^M(>8#jͫUlGK5WܶYJAK/ǬZʃ1#>htT3oO|Oſ< PK ݍ-@6EPUB/wasteland-night.cssA 0E9Eh Xt'h0J5#H)Ż7. -tg*}rtqB3Eu"?go?x<':L|qc(,rZ[a-3e4y6ӂ) B:.A,b\YH0|3hHZ9LbZ=1Tf1"mu0GYbRZ$M-_creOa'=|_@gJXQ*Os0^V*2 K4R:AY>ܙ`\ނnf+^}˙b u{׆%UEvGzɫ?Lh;fyp0t(l8H{2M@;߻l(`oP ?`GNp Qs(VNʏ2FS1Zqv9Pǿ5E49PK e2@hs1=EPUB/wasteland.opfVMo0 Whe +3]zZR ePd&V#K%7ɿ%;Mr LO'Z{h4zd(!)^M5=O.bW@0[iRyos6M*KLMbLp\,A{LVI4,!N!r L]"vIqB7{޵36*fҌ+"ˮteJA)vAnmt6{ ȏPEn,t/qRtoJ3AnPmQ$6PGYFG_(1v BwӤ5:B5|4;gY>PvRU-х;4 84kdSa])*%] d#}1p J :tf \zE둉Bk 9riu(j~8>9@hN7r--Gf_KPee5{fAN2 R Ֆh=#KKj3.~4GF{D?cw TA kd` wS7VV NP̭EyP!=Sl q{WʰVpzgWChJvga5l!%瞰1xaYBu87h¯ b_:JlN/~V8x#:Gȇ59X' 'PK i(@META-INF/container.xmlU;n0DkĶD Q$ j%v JۇIO9y%oZphg ~۵N8gZU9YV6'øP2ģm!3<;]ծ"yR -:b>[x?oS<6'PUFuF10m-S)/\gV>uPK i(@oa,mimetypePK  .@wCמ=>:EPUB/wasteland-content.xhtmlPK ;'?!CB5>EPUB/wasteland-cover.jpgPK 3(@yVMTWEPUB/wasteland-nav.xhtmlPK ݍ-@6EPUB/wasteland-night.cssPK `2@ɜscEPUB/wasteland.cssPK (@S,/EPUB/wasteland.ncxPK e2@hs1=9EPUB/wasteland.opfPK i(@META-INF/container.xmlPK Vpandoc-1.16.0.2~dfsg/tests/epub/formatting.epub0000644000000000000000000003222412645626062020103 0ustar rootrootPK XCoa,mimetypeapplication/epub+zipPK XCW!Y|&EPUB/img/purple-aqua-square-bullet.gif_LvVLבʸ–҅/m6t频CQS IaB3S[V:ih/z^y~1yy#g+ta1U ,*%DX5V`\u*J~Og(-h   T((1СÀl:{BFAE€ƀ10*h4 P0$Pn$j$$p#AOEMCkI`Ii)eԀ8LՀ@#@AEq* H x<F X 88 8888=8 >C9pX9_ @s@@0*388 $$ *iPp1nTK`9 (cc8!LseN^hgD(ujÕZk #c{nomo3/rA?a" bjհY@ɂO}']Vu+c8{KeB딠%N1M2sOK>k~z4{ɧjkrKْy5;om)Oν|b UMl73gީj>7tKupkCvl 4eƿ:9HW e@X.-1~0]zfWsr3SA$A%5|LO`ʺKf-~m9!z^#?@(Yf)5 5A,uM,i(\Гy:Az9=4jA·˨nQ#:=$A㫍ܔ;1XbYuOv=99vCƶȋC'o;q}j`9'S|ǦwI'6NJg uwB3{]5~N)K>KMcvHk(C-ѧ ZgHh b^MG}lOs+= m_Pr(fмmF~Kޫ^]qg7nMSG&I.HND9yϏUz86:zפUon>#I%'-(./ʹqh0{,F<*v$JIoJʪíK~9\L8'~ {-)\s2wد?%_|!ְ74 +Ige0ye{6 Uξ3bi,k-R\\SeSBڶ<mnċ^}x| x׈/ƉrQ9\@|]M3~txXk{7ij&y-:qg Nɔ>(24\!./W > zw9FL;$ansGa`?>_.xu3lqNٵ^WOnϩIl:E 5(c.Զ6|Aݥx8=HvAm{K1>`}%FvևWfwab.cjj]*Bt5]/Z=\Pn=rUӫ{^BɓdfN|fZ7⁙ [f-:YkB$sç|pZU>qŃZcf˱d2}.mjy5VŎJ'o˸\Cy1+$=OpGgt.sI/l6i+o_wq9-+gyJ]:ZוYO&w /0[Y_PK Dރ;EPUB/xhtml/nav.xhtmlX]6}N~<nŽq:ݦfi飰/XE\Y#  /X_]IWW7(Z(gS')|ކ?_>TfTRCY1uR)[׃h &}I|n}|XsP}&@bX k}3M%@N!@:Hns:6ҋ E O@.``5DhOv0}'U[}&6y?Art5DK*i1􄷼l붔CB*OoR?_է)PZMgjQ.xBnw|lcINGۮWUD j`H} 5bIm6]\j) }݈͜}%jj%xy9Oڴ'}{߽=OK`v-Ȁ8K t[7KU|"iTڣuÛL/p2ܞgFꑤ8O,ӾBձvK[&Ilԩaki"+N빵3\ߙ,n[UU)kEePK XCԹ- "EPUB/xhtml/styling-xhtml-005.xhtmlWMo;]u3ӄ Z$'=@!}'cᱍ}ݤz'销T] >~vp1b^ @6nWfŋyr˫o._ui)zp^כͦ<|\󳳳z[b.C^D1vqz!V^tU{ jzn HT/cBZL' u{`R$zD@pKJG얢ʮ^Ʉx@GGQʘJ=ְ[-`aVPga_>g/ګ`;P.!D0-3-{??󔕕M$#KtwϝQ]~cS-Ѣ181}ݧmGMјh,G1d 0QIx#:L$t@>!&#`Bho}d$wM0(:54&k 80NmtvX+N|FI|βkb3a0eq[9̵9(f d qZ9(C.ATa!M`@68')3q"O|_q,G1r|pmLW X{".(CFMR[0>rRǩTnplQ nMˢ/&PK XCɣG "EPUB/xhtml/styling-xhtml-003.xhtmlX=s7_AZ@IE"\HʌgIbKE&:Lp ,H{~Xr}Wa{{v l_n)xzmx7?q0x_#Qrv.yyss#w#[5qݰW/2ܐNռV9ӏ'$zT)#D59|8n%2:#" ׈+A#3WN>]{́~$D(l5aQ;,./ Tf5a&~֏WCGWT៏=po/j5b88~/.2y^C̄&0#˰FL?sЫӝ`z Pr'd]mYA%>}^ TC/-)DLd1JznnS>8| '1 Lp!A{ PF&tO3hK‰Ӄk'(MiaR/^rsQ<v0ٺVM >dJ0iK5TqNM:#WZH PSWRB[P!Ą#z+q}w߳?wN|gdJ=䢸͕ịo~|$3hjxrt[{otvv歬 & wYe럞J+IƬ.W1We50Li0&JA&DAQm2)4te,_Ϫ,lWLXkBmzRYM 3&2ƍ W|5S˓2r]/}lD`IVz6KB eGg^`wVg$ #\9by #{6ix8񧖐>!B!"SK{i;b{NnWX> ..q 3/:[!93!9H~DUOC`v΀AvNr˾ ,&>""/pޥ `DHkkЍf059~&| fe, ]!іQ%±f7WGG8UaH2cpDq1.ʌe' ewbG|v攙YJ77Ưtv8 &6=j!qwg|oT6jb3/طfnE8DSHu @Bw0! !j+]_*P.I}-! z;;>@^lB(Yى /&"E]ҎG1*o~,9ƼE j+}`%A` J4N{X |HVTau45lu/)ْ% L=a.y_X\վ7,|dƨ]aL,GF>ƅQYƸ]a؏<|al&DaC.Y ĐFPMUǫ:<GF)z F, I;VuTSvڬX˅16}$]viW%o*m(EoPi&*h"#dҬcPyx>Z3͗.=NTc͠S-_d8:źAiz|s7h.4Lb#x%A%tO|16s\3kL̙2g,.8!wm3ZsœnL̙됵2W=bI"ּ¦O%M3g.\}8h<2@+T i2X*e?&Xşm^3IGNJS5MU+Bւ0huE.E󗶤i%Z+<2dqx5>}ڒv4͚S+kKaE3) ٞ.lxa9nq #ì<QxCw mX1hAok{|Xl>'HucW?sT}Zp{ԯV4pXD-Zq2/!JYz"ATIJ_"j  (rOS giÒPq(Q,A{oL"OT|QwsL4.$]D wĚ'xVF]y9Ju׆M5} z]UzV4tA::ѣAS#esc1ޓin\>OCw.ű/xE2c3]a.7?t>,K @rTt\^6[ꧏ~u((_o*Y1"6jU*.5|G*dl0&Eլ2v3er,]~|7 Ji@X9|٤T`:s4bϲ*2NONpm\DmS<EQPQ_F#4=:I}ƣMGCS1ի  3[JGJ$:)wKQqPK XC> EPUB/xhtml/front.xhtmlVMoF=+bJ@D\bȵ"EÊ,,w)Y~q`{73o0|u+8be.V¿X'8ڦ_Wѣ d6Wt?@W 2keN'!Xx"cJ0 E~ E; Ƿܿw:/ECcᶖàrWBV@ʠ#`bd*T+F)qYAlY}>{aw;0 :iG]cKu9leXl_αKX\,n#L f=Ƴ [)L:]|6\eeW2 t"[@ #0ДX cF?77^|} 6`ߐg~?tZruwRC~nHHz3235#Ǩgb+p9< U N4bnP(xtJāh3$eʬ ˙5#`>60F}=H t:8a{f=*v6I&(}:*. $BILu48kX]ƈ@%*}{lm ˇ'̥F{,bU'HL+k#Պ3Mh<F)y㹒zCCh*p-j`oZ{׵}Qto)6BVS^g e!y 82 b>wL3czSy\vD^EH<ʤr;\ $Q H0aj)($ őr9$wsOӼBI/p΄iHizS( ܅*N ē=qHk GH@V,S;]lJ; +YC 8zzcW[|0d&.b3)liAcL${qֶUMKP> ;_?'z;MG1AEMN6gU4Ud3ANC^ۋE?B# &Dc-K?{\dH t;UP38hmM} 8I֌3v `D0 `RٮDʯ `1.^Og 1[y*c'dۢ2ꖮ"qo]Mv8Ox?}d@t??Nķ9|$LmMfg 2+en5n84Kw G.oi+қ ?U%%7EXXBJԖz*`c].hߔK}|E6L&LJ&'&&gn2!moPK XC5EPUB/css/base.cssS[0+"[V 6`x"3ɽ4o%v%ӴWT3:>sxL`{.{I2 -*4PtW~|[2eI~?<Ǔ%1 n!6 a dX-֌:hϖ,)+`F2 ElY S6 #zFGϚW2H5*]&5ň\{phVhF; =wd:36-H=1Υ+(œC%$k3% %Bj ;&TUߐ6_ft6-I=2VË)rAWTgXXھ,㶅t[iٞU.ui/lPg`5#l|%Jͧeq9/$^)EH<#X {XnFtxkPTm~ Bͥ K.):/PK D<~- EPUB/css/styling.cssn SڕpʹTfŐ4;;&cR6! b͝]l~!"3rB0 ,9Pn`+5CABO;@XG<@ÑHrSD> ]&2قKT)niSe5"E+"_"8Yx/,rpI},kփNBӀK oֱE+ s_tP &jWMvv{ UiI}`YEfw)vY*5ہLmhfgH&IŠ^o$o9rw{3]"N7OuS?pk$,zf[&Ѓ?:͔Z %<# >ESfJ-҅zr4[fI>6 &V[v^/!Ln&}%<$NfZ#emᅧj?B79APK XC\ˬMETA-INF/container.xmlUA 0E=Eѝkz1j0 M*z{JͣNCV/װi gLxNƁ`0LvF"q+n쉳ycf>GS(A$w>PzFuce|;:*Ze~F10O9.?"c<)^PK XCoa,mimetypePK XCW!Y|&:EPUB/img/purple-aqua-square-bullet.gifPK Dރ;EPUB/xhtml/nav.xhtmlPK XCԹ- "D EPUB/xhtml/styling-xhtml-005.xhtmlPK XCɣG "EPUB/xhtml/styling-xhtml-003.xhtmlPK D8lG"EPUB/xhtml/styling-xhtml-004.xhtmlPK Dz9M",EPUB/xhtml/styling-xhtml-002.xhtmlPK XC7P* "MEPUB/xhtml/styling-xhtml-001.xhtmlPK XC6re"EPUB/xhtml/styling-xhtml-006.xhtmlPK XC>  pandoc<p />

List math:

• E = m c^2

• A = \pi r^2

Inline math: x=\frac{-b \pm \sqrt {b^2-4ac}}{2a}.

Display math:

\int_a^b \! f(x)\,dx = F(b) - F(a).
pandoc-1.16.0.2~dfsg/tests/fb2/test-small.png0000644000000000000000000000777212645626061017376 0ustar rootrootPNG  IHDR0 ۶lKiCCPiccxڥѿkO.-R "n(҂U(H+$%KB. wWD\]T\,⬛( )qA|}EI606+qGveKK_U\/J2fq'XiNeANeh`6m4WΠ.eV @-]_"!\-B@ [I?&d1UMzQgk8iu,`!:z1Wr/ƴ(YQbdϖ)n)W2h,;[l4qoӌ=fppC3o7~n Sxz?~ƫ-}.?3{oogY;,#Nty2~I)dy0~e%I pHYs  ~"zTXtRaw profile type exifxڅTI$!{:B0r}^h7U B@!z|>)\0~ z$t{kcO+A̶G;eRWliW&Zx!,{>'I1dr-w,g~O!gNgCs嶟ĚUs3g:#;geFP2o% -`\E!O(ِ ^p9$oG[G26F8VoAuk vpAg0 , IDATX]X[WVڻέtvq'qf4^$$xB$xAB#2e8qvv~xm[KRj˷ַep "4I$!zEZ$I#IL "b$U5hM213ҫ*q@QUx$MbQ~1kfT'# "՛PfPLiHxZHXhj,IBEQZg?qεWnE֞TUBUb4界g_@͌Q1I*ӧ2vWxab\CH2!"PE@Č aFH*POOUIAL&"<+NVOhccl7F#2' ƠUYTi ]u̠*hdޢ>Wp>NGqIv3InowIsBH{':W`10g`̘WDUa$1Je\՝ !V9g"E~}j3K>n =F e&Rdꕺ4ڜTEctÁk4(n6|0-&r4^'YMvN$ B @>)!F!AȚۗofom+E1[k띇JF;;w\?9~X.7>kՕN,漊bAP 愧ON聪@x<^[Fع> z;7^ٛoOon+dj5{ SAER$%mƎf1fA8!-…-Mv[o^g֗_|5ytߧnd~r,"H<,Ժx-+N^& W|RSBVV1md㗣|>;l2d7-a|s߸4WVV7:PZO 1.dmRXxR/ENj`y~0΋|mg ԡKeDӍd\FqIW\!(es%{!l6{h޾~:yok\Qu,ƸұIzٸx@l69bpw末߫i嗋bs[~Td_>~[/NƳm&/qn$f?+['cdUD䷆z3AKߘa顯KB&jXHrŜ(BJ~z/G1ilY8{fGU"#YV$P4GJy$q0)"jf@|SX**ĉO4u! MCc|3!WNVp6x|>4P7Ix6j:*RseU**^52FzbY*X*މU׎>m$y>c'i՚L*z'Yjx2YyC%23Yd0 i@a!Kc9 *wΥi#IRPӡ(DZHI3j$b4MEt4$A$Vԓbd`)BۻJ)p,h8Cww*FQBj" `Y-NN^b_`F8X+F?A`'*8UЂZNCh,Y.N٦"UX), ^2'  QtPYo*hԯ@2_'%YE{[O!e!-Z RԯW7adPF1o@IbZ;DT%iڤs4r{g`˄TVsh'OI Oƥ QQTE!,Щ#ABiؿ%tEXtdate:create2011-02-28T02:55:02+01:00f˖w%tEXtdate:modify2011-02-28T02:55:02+01:00.tEXtjpeg:colorspace2,uU tEXtjpeg:sampling-factor1x1,1x1,1x1pIENDB`pandoc-1.16.0.2~dfsg/tests/fb2/images-embedded.html0000644000000000000000000001363212645626061020455 0ustar rootroot
This image was embedded using data URI scheme

This image was embedded using data URI scheme

pandoc-1.16.0.2~dfsg/tests/fb2/titles.fb20000644000000000000000000000115712645626061016471 0ustar rootroot pandoc<p />

<p>Simple title</p>

This example tests if Pandoc doesn't insert forbidden elements in FictionBook titles.

<p>Emphasized Strong Title</p>
<p>Title with</p><empty-line /><p>line break</p>
pandoc-1.16.0.2~dfsg/tests/fb2/basic.markdown0000644000000000000000000000066412645626061017421 0ustar rootroot# Top-level title ## Section ### Subsection This *emphasized* **strong** `verbatim` markdown. See this [link](http://example.com/). Ordered list: 1. one 1. two 1. three > Blockquote > is > for > citatons. Code block is for code. ~~Strikeout~~ is Pandoc's extension. Superscript and subscripts too: H~2~O is a liquid[^1]. 2^10^ is 1024. Math is another Pandoc extension: $E = m c^2$. [^1]: Sometimes. pandoc-1.16.0.2~dfsg/tests/fb2/images-embedded.fb20000644000000000000000000001357512645626061020170 0ustar rootroot pandoc<p />

This image was embedded using data URI scheme

This image was embedded using data URI scheme

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
pandoc-1.16.0.2~dfsg/tests/fb2/images.fb20000644000000000000000000063430312645626061016437 0ustar rootroot pandoc<p />

This example test if Pandoc correctly embeds images into FictionBook.

Small inline image: alt text a small PNG image.

Paragraph image:

alt text of a big JPEG image

alt text of a big missing image

A missing image inline: alt text of missing image.

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
pandoc-1.16.0.2~dfsg/tests/fb2/test.jpg0000644000000000000000000045401212645626061016255 0ustar rootrootJFIFHHExifMM**1>2\GF GI (i\ p! |" ' ($* <+D,L.TZ[PENTAX PENTAX K20D darktable 0.7.1+913~ga0939ea2011:02:06 07:29:16PENTAX K20D?6kAM/)G@#[/XkVڬPte^f"'n      2 2011:02:06 07:29:162011:02:06 07:29:16 ICC_PROFILElcms mntrRGB XYZ  acspAPPL-lcms desc Pcprtpwtptchad,rXYZ0bXYZDgXYZXrTRCl gTRC bTRC chrm$dmnd dmddmluc enUS4RGB built-inmluc enUSdNo copyright, use freelyXYZ -sf32 J*XYZ o8XYZ $XYZ bparaff Y [paraff Y [paraff Y [chrmT{L&f\(dt internal)sRGBC   C T  !1"AQa 2q#3Br$4Rb %CSs5c&Td6D D!1A"Qa2qB#R3b$rC4Sc ?-tkf_`ctrD\zl 6tRe!+qhf*|t Ep%[g:rX?tu~̄+0rp*ƈrPAԐPʂOD%WO#e]#2@ n}Vh0[(BI\Ԕ@W̤$S2EX53&Ϧ:5*iX\eJ\G$F  H#8jgnp~̌?]BRzFs6d!'׾1PJB,T=tsW g:(!:-r#IR3 $-H+L dv9tH $|{z臕AQjl ts& c@T 0z6H##룝I) jʏΛ6Ȅ2/Op|ƈ("!2;TԔGqۣe>]C"̤!2B!=BC'w! ΚTLm >!J&2@/(l0/PO =$(,鳢qΈ! ~Lg9it_^`JL2uwfQ!H 綜9, ߶4C@ePN%T!bWG.A[4ٔ_єU5$(Etv>@8%Uя]O'Re o@P)e]FSE9:#@tCWSʷGS2U]D9 %q(0U{v:t rr}u3"W9̀HR(T]BQ@~C:>]壙E˩.{zdŞ hI* ^|- >/7S5[MMik4_;B+F]I8嶩: 0Vǀs05\I$Ӓ*m+lGYJ&a8?+ ;`>G:PvK ='ѕ![Ӷz$ %>Z%BIOL$G2$P9PBK&01!Fr%*EFI}v΢AScFQ2G2!$˾]At"ӇB2 POD21c9C98縉% gG:e{DHdǦtKB+s(B&3D!2Q0Q J5 R=ٔ1N%OL\ '0WHAh2tِBd] >DzmM@P~M7dG:Pv@uMtݐJ`fNrᑣA7e88x1*r2>Z+#5B=U+̤]QAySuA>y%~{BTW*~gD9n|tfBd*>J@Rrjg(VD* i Om jg(~:9BICözUt2]BPVl4TUXz.5t DN Xɀ9e8pI5sI=lEq#>lӼ~ 1ThKJJTJd= vlCwNːظYh`ǦI >1qVS$AcJ ŋ}m{m}4u(ᑃ#PGKvq n7Uyn!s]׾@~ܶlT\cxJO(RO4ET+kc ߼Uf"fv,u-{w%*:IBGRMrYFz;V9dClL؝mJh ;Azeu2_wuVcbuT^Ϊ =ۏ}ۨ= xi$\+val0=AEPE&8?-4xQ*GYs*?-$D$!PV)?@TIöPvQ[5%Pa ̤$? jf!m@H(zAR3L) GS6E cfeCd:9fDLggP2:УP{Ρ)=;vgE 6`(L:~#멘Pd8B;!2JEѐOD:Bed"P BC'ϱAvPB*~RT-Be~蒦,1*!2}=Ys i@2|tC`4ALslPBd'G22`hPB~M)W#^ *"hf)Τ}9cBRcM0oT}53 ljf)@J5Q[ErG4BGuU.*BAtDb ԔU?,hV=I|Τ*#̊S`eC NqtAA'c8Ԕ *)!)mpQrq,i7Ndg5mveqs9/W%EK֒DXa]z;2u} M2.ǽ6CgM d̫,B:Tǀ#@U8b Hhcbu;@$D}єaܨ tݶ̭7k`[)*(!ekua$I!>+#e3=k{lai᤟{I={%츚 0ֺ'uu? I\,Taigܬ#@>?z.xIPcbVlbCzH#/3뢩NkW$#)sf7߱TCW S''l# QM݋FUu$Lbt"A@u[<ם?P1W(O5%udzdQX ,rQơUdnCd*L E1  u*sçIߨRŴI.KZt]& i3QQGr:< IfQLvﮧe]6iܮizZ7 vk,RL'IBJ* @Pl5 DEC^j{vkR. (fN{F.id7 qSWAV*}#A0cBR>Z$AH+T)8MJIP~V(1Ӄ]$P(l=4ّNq(Pʞ2A3(ĈAJS@Q)|Q 4sP! Ih!iW׶! vCD9#FQB*}Λ1R F?SђB(~!ɐ?~97Be CjT&A)Y}Fk)続T @ z2|=4ّ e!2A+}te ,Д2MGq̌ i"z@ Aݗ# o2 ] 2#K%Elt蜫O} Д~vɴ*ibީA~JEr@tѕ,MIA[ P= P+'82VX}gjJd Z"NAh%3[+~n+&,#t)Sl& w=5ޅe55z)ge*Lee9Ǿ |ʔKOm~J=4YK|44fB!$`3(pIL` ^U*g8t@ҫ飘 ('ΦuM)`y pA5 !3AM%+kmzZuy$+7g*?髆R'U}˭ۼZI0ntpSLa>n؞ayd~DhfASfe·o'ϰ,{%f-lDr"#<Vs4nO<5I+Xn# Fr;驛uJ~LJkO2NT$QFC磙@Pץ98a>RT*܎ڒIJ n޺%D5 $IQ$}04AʟєR LJABD9 ~cP!sG5(l-S53 P'0D6\g*F}ts P ;iB+L/S*P=! L(B (yL&Qi e ;(̠d}|r2ˌ:!B /hH@d{wFO %:9"PYAQi@u`#,jJP@% ?]0rYMMxYU+cRTV|vU *B~ R=tCUmD|iIB`h͔[|*;jf(ĭqndQݧ4 ѱ{ǫ^ Ih.NEs)/T}k=֪(*(Ҟ'1<Š-$L;A#M ԮKx\hvز]UQGv(JZPةQK1jiiqqЯ N?KsZC͊rlqhij.1I"Ċc({ 1stÆfN>+[mvؒGC]M]tH3dylrA=RᢧA?gsK]$}[-%-l/e˜v{j`*'E{JQuY6UueIU:-m Já t^`K#}KvhQX>8M0oWx[>Kln}okz{*ư5S<.DrdEd|uͧ[ ث x:Z'ݩYK\eSl_,mkuZ&)N x7qC"e|hmj;%:P.  oJ;szGwKڡKtSԒ$,T^)~,I~6[idAH4:}-n֝3c@?|憡卽ԕ[oWu{zQG<D Ӭp dW.R`—IHL@ni5M(whW5n&]7 h6mdX1ca1S*ڠ,!0Av<@ږy@n7.'bMr,.Α o뭁.T~:n׽Ahކf-v9$d"cRJ|sϧST%pA&F&Uc9&nI",Fn:`Kg)"WAvZǰiJٙj=Տ3$1+ ҁ2{\"$aklESAN`xφ?J+^w%mt2=KMJA^d7HfNEZ.Թۖt^dŰ1\"vI$H:p$)[cI/5jA2L8  bzI!}>'e,ft k4SqʶI=u R{CЭ՘007|H#,0×'NVhAoUԠۨ ٖ)i2WG8'-lk.R?c&'Cz*ii9i7Y=W'@!%JEº1d IhU nD{DQ٘c0Վ;e's^8e]"`DbUr[?\k>R[*N#Uu4k8e I϶4Z'{S`E;i$hJ9|e ݽtH) $#LD2 2T*!D9Pk"}teB_}e1P2Ϯr!?lBPI':B)P5 5%d}t٭ eAa*FeAh!mL0E1r4s(Pg bEqS6AeNta$cgKRGqB*Fr;iD 2(;@e4R%s1F;! ^!!2FP7eD mv׉.Yt3(PhB@*-LJ1v\jV1lU$^XezsP!1ްN ץ1q;[6Ms PYZH фp+9A,9sl`o߰کY )^$jCw`0Awi3DحRKWhMp*/tVj2zU1̃>l8 @Kz<9,Ot?d>5նǹzʣ$#->RP# "dUze@ȃqZs>]ܽ/{*Oj} jy%TE˧GTt-`4\ØI.'fyZ:~`\|2勭 [2i:fJA1LKO$pE3fr(H=/&H+8941}>︅Ѷ'Qm?Zt훒nzn^RKAE <0KG>F@?>E}ʺɮM5$@ r|Ù <m s=IH 7aF? ~GY,/bMU bghhK,C>N#$%}H?ܞqg)r>sK7xøar40h".c2uh˶vݓ6^$t{\[_rׄ{[W~m˶i4{b["hoc*- g8aN`B8Ȧ܍i-&XDH| ϊmj`DߡmNmmq'6㭥qZ]*e<^]M%e4~j\)4Uu6SuGWA-t:;UF91L0B0\p nnS\LEsYpcxj&0A9b)7w4@"&Z Iāe0"y+8k`XZ͘@N g=PR32QB, 9=_2渹K^t@#&[ xZ,W:oSCBRܺ,ᕙe5fYe{V9@hh">Jx\D䞹H7%l;:6Cۢ_MQ0;CBJUTA*6( `#SVql$%tUߔqr-dA %2 JeHe`C*b #IM}mhoI]%FVT2t@$=܎23E9%+& l+]. yѢUMB\pAx` iI)kM}>VwUTmCO UM }Y]hUjmv'%J_F= 7ldCvKUf ڣ9C4nd8pG5sH(Z\R:;nA_\"Tc`PH(GDHQH*;繁D.J }h :ld@z(Ijg!w SMAC۶u馔ЄW׷mIEhEmBQA*G4'#(!2hQ 'ȠiP jJ J)QH(,tARYqLQ#d壙 ,lB .ueMAѕ.LZɀH̕Ad?=4YtT xu`e,*Ϧ{`v%>U]#RPh*F1MV=sD`|᠎UlΌ6EѓS4C"SK ٸ&5h:TuuK(³bN*GLso=]ܷ5*<rtq4/GLcU"4,ǥSk1n_"GDŴ?{)mm-q%~ũo Jg2[I@xǒ9:ԫ)>sSh->~C(#I|}{w7=]2iPZ[ft\{8w1oTw(kra]mGQ:d4p,N =F˕DG֠AX^Z A 9]2c9[F|CyEY`8ڪX#hneѬI`05svTPޮSO*h5Er4]DSؙ$m&ѩ6WIt ",bdxe7z[o\n5gStXQr@̪>V Dͨ7#HBx|wzQ)6ӼIwZCʡقRP:d$g ;`TFw}mE9eY趧'[l4QZsV\bwJG$s)rGKs걝Gt3Zj=t~H+jX,u-E ZLx#,Tei%% v_ۤ%A웪]D+ejGцU1QĕqX)a7 #11{-Sgq˻edu>Me ʅh!R$˫+F=t6vN~Q۳ϿvɂQƫطPuUbCH4Ď37|HAa$s]Pp$;S.[VϪ<ʔ}E_A%<"3P*tҠu@o&;M\OP6f:~lyK7nx9mSOGIOl6wuCQQdGDXC)C4r݅}'fAHt1HSwKs7NS'޶v~]ۜ5k˛ZY-F{Hiijݺ!*"2TчUEs59نM +}Zdkiqo~G^*6V[xz{kB9 M|O"9H)%`*q [)a[Fp[ ηyywUژCH} lu=/FFixFK㭷UKOu^MV4BM*_V1Q#ܭY(:ɽCKL,\l@g'{|2qtZEAb"ZRG%D$bDP%AL4r_cыżQaAmHL` 1^pH/$dL˻ sYxƕ;kqv۱eilklYe1Տ )-9; 3"NsP"b@- @wc[ I'1 .=]&Ȩ3mmK֤Vyx"vgXp#F#*5F2 hHVamFLx=f˨T_֊dKSLn R*nJDQS!N1th,x$|}IM;;5=$k@sfI{ziV¹*mceA#4r;JO֍YPw3V"epgXJ\.,wAJF߻yJ_nKئ)eULd$K$CPu=ʇn+i6Qx 5qIYi4ၬSM /u2{fݴݍ4kQuӂdXT˗ԟUM6f ^ISIEK WzG9lv{dwԪL7Adq˕u\ @bA ԕH*tAD I#2bF!Ć{jJ^FG@҄F]4Z˞2tB# hJ2ѕ! 8jJ\~Z!!#h!:(T/RE':9(ˏQBecM*B'~㾆dr1(ReHLL=}.;MQd&LȠ̤!2D9D롖 M*B $ >Hˏk\4C(Bn0:Qqؑx*@SeHW# @wR6V epfQ_׾d!WGa@¿@:!+vu3 Ba^ GS2WP9HZ8JuGPD}zhQ{t-ٹ8kb[gtZKZch#]FHjaiR875-#[[ MiqC-^^"n{FXT'Mʒ2Q"lHq.}9*8٧H|Q79kh0uqJY|QȱѴ[9y(檙*Rx5bib}{΄Eit$*qg;P(D}OT{ﭵ7.ǪR[o5*Koܕ㆘SH%4Vfyf,{mbs$u&m:0}ݥ HHDq${vK&w]ZJO:P%Z4(UGs 1)X}fQńS "#P til]IlW3~^.#HoM\yeR[^͡5E[SY arNW W#6RXUǼ2q#kzz8L;_EZ)n{˭u-U VgA$~M5< ; h&dBm/H{^"I5|Xq DfENk9kmÐ7mɾa[Ŋ?d(%Tqi⦨I|#EPTNjE䃗$\ 570fXh$ Ho JY%_ӖF1+P\!J넵>t%Vg2dtp}UXbyY"# mmۗwmK_Q DH7n(( =d:0dG}4BMW>'9ZWf}KAU8WTE,x$0Dt=G͑47 \ k}aj`:H:Mȅ*8rMfUTSnwے'Tla&hB hyϢ%Z`lF{eJai$Xx'wokZU.l -sTQ4Keh+(N` IV:Zjٲ'7w[ጪXMөԓx%JI,5VtlJ{c#ϲihO)j}t<[]Q|WSP^-ޱ5D17S-A& Z`ٕ6 )|H$kc 1ME 2Auߺ6?xs%26V͢aY%4WB(CqUKoi<$cZefe,"1l7"p2;32LtS1SO|@xw\# }ouݐU\Mp =4^dEj#5wbi$m4/ip3sq׭.ӦZiЧJ5܌9'[!br-·v;c-KvܲQ[MKkT 4*),YbE24qxR~@5.1= 4'YБGH2#P'x7b*[zͻyK88Ss 6\1;Ҋ*^Rߕ>Q1GD]tSsxt64H܂G,o 7LVmw\@E6B۵Î%ߑv(*-3Ir-7#@#_,L!MطRk&405I{Xu1y̮<3V^$)7wrjܷM5 ]IVD%|`Ck<Ei=e[ פ/:z-+xWy.Ƽ;jl HFK֮kE/=bPY,:)gˆ@:$^?16AVSCuYy H"o7d}-[ˌxPn5Q;eRRJd(ۧޖFRV#NaLOPIdu(qb`iƍ3wdr۵8qmuV讌:T;QGlp"V%+-0xP.u?.s] GI$o ~,a5\0 lEMIMf4rI= %%EAMtpO.X#E~ r%C$$${Ut@2AOʽ=ʪ-e&ݥE=Zbt$]yUT=M0:gqװ馦UfA_O[?{O>[eU5DK4k3CJV3Uֆ }駨߼U; MO\ fTѺF1Ƙ0H(1D9B:OS2 u3(00pE h!*$ 5%D2953‰ʃQ(EHƘRΠr M) ~C=уLMe(dΠEqL2ΞwS/D㩙WG2lTgD90$gLJ Ǧr =0r !2uSL !8RQ:2A#2 s# (:@R6TOlh@8LT^ݽ4C)0҇(PHUUUEZpTU**̢IQV*$;’ 'Rv@F(EF + _4(Bb%] ~# #i3 \WqOk{ymm,TIZXʅx"`́Y1֎s]pv#=0  }E^{n_xeYYMuܛ"H!I,)tG8HOiw[ ])tHrsC! UwppI K3 s._ǼxNksj*l{oJC-qE+G5<ж},sd򙼁c阼q -F5q&31c_ >&-khx} ʣʢjVCYY4p& d8)c_5URDJu!MH&47&AH6\v&}&aIAthG/JP5gRn ےh3YֺuXVTu5g/HtD2#fC@cat8xŠ5 ȉd12*m`ҭv{s[=}/SSRRUsEN#P2u᠀t$d BP!΁ 4X6-I_EƗ-|kl+}Mn"bLMS+K"{"J8(Vs_(st"yWcQ䓨d"mxk-︯7lߺ-i6Dwy" aQ<( ^a?[HOeECI\˷q頻LMqN%DZ^ ?&m^Yؔ{T]],9('DzM*R!(˜ǓIFexrC ]hH&@2HA(N[(h.u%j7~H<;e[ae!1x;:LI5LcDsKf q< Ӵ9ohl^mgo\d2EUJ)ާ+˙d)V 1^}zNpsjc""fbnR"Ѥܙ ke9ű.έޛ^I,/4իUae$V^N<5gS,hz /؍zak/n囖ڛw;vEd7pfyd]$2;2=*~ ڍS @t\ D˛qi4:AQKA"[-~7]]5T%!be\ ]da֞{50|#61+pb܍׍ @p/1)wGɜu&<\+18G?M$ K]#D=tMmna޻ˑכq%t퉪] YԔ p#A ʺ~y2e]:l@~J'sxZ}uPmn79* d HFr\//=wVe6&wm^4VKTsyᔟ%{zFC6pZ ->;Bn۷g[5=U{QβQ8޾C'33/PVӨ\#I:]j`Knڢ.S53i9RD1_Eu=^N>C`SI:^ѹd]C-V[԰-"BmUUKe1zwU$ep}Z~v\Bll7'Kew&7^(ݕ52-K-e xJ_f EӔ9 (ǔə@=굟!N\:/3~ЍsEƣ,wݱ6˼MCSHMXud:; *]TOIM_IWf%NL|4pf2&Ysq)M$L]$@ӾrJ|Ξ&b}d650=W3r;{<*hYThΐMȀ'NQͅ_OÒL'Y z,6^YNJwu6]MAquASq TM!2)w ƶ0:kE&0| 9kH&`:D u&bD/B<5."hj ƎfFi5U`g(f*XBw p6۴ BL=gTt: 6AO>a^+Jhw]q7QڲM%Ez(!CԅDՉn 2v٢@H{{i150+l-E.#6u4TwJJ!ҒO5/#jcW$BxB0wRH6*7EŏCxױlm7=rD,ocϋ_ĵ%J*-|mJۗnk?2UyT<%`rTPgc Hd yM $XZF,IM-P6NEj%0"n87F[ ;F'Z;OoZl[hJezK,'9jIѹy{[_(걺:ؚh` E u8EۂAYۋ.RTz[ʖ\b5SUu1ZQ} u10fdz|Nn?lI9*V/$򃠐ړZcUZMKRUWӢNUWJ >I<t跰ew8ZvsUuT()K:46jE,詉t]9,m$t]_q0 5`k10ne2 5^ME|mᒙiItwk(UR}Flb~ujx6$o܏+Z4,}>J瀒Cc-4B\;)e  AN݉Ό c:90Tv C'|?~%HHaL~鈔2P9C+ޚBL|tيIB+fDjgP2N~S2P ID&\}tALBAP}teBW蒎T6\Ͳ /ϸfD6_}Qʀ;2"952r9PYsuPts#~1tԔ@BqC$D9H@#taM@WS:Es 2Va׷ᩜʁL3(H\UcIQVEEDgQEZ*Q Yq(gW˹RVG,tIr!&i=H"&Atw`N kZ)$:zӛvŠmimۊgUZT/KŦiUdWV1u67> Ϭ +RcܳjDQ=| %NTz+#/aZu2d9W.D-3I;wfͲ᪞VQUMj YPA(^uCk1tA`:q8DkNb 4coTl޼/]ngWICP#cJ`,piaHd6&@g'AkIseǜ4.tܖLˠ^9cn}snp5mfQ_LKURM%1 .,fY)ߨ -s)b9pDLltn+m:v [,2ˮ B=b>Quc|d}nZ7tڴ(Tѡuh JĂ^08Lciˌ2X 2Z]r}K}LnH+`ռ=i.: cY-wXSLhj\MaûZÓ a`=0.a }{WܜaiVoIMenpaa!/ղOlFF{$a_WL9kMwζ(wuH] 8sPA :HtKbm4(|{ .g܁IU1\oTmVRVmUʰH#fu/auɰXlbu+ 242}@~U5 ҝF.:"]c*X=@ `s z~30{H[𨨒i$dCjN0JKq>HdoaЕ\FHcK,RJv:9 I*G婟`މg9ʆWGneHơ1$dІFGRs53"F`CeϦdPʞݻOE FTB#TP9!ΤJAhfMPHt<:~:`TB# W ɐq̢P{jf:;l#PH!eA+^CeS26d羛20˜%$:`JXCe=;jfDCԈ@eӵELyI긪3(@j*΢ *QVXۭ;#SD9 4.=g?.qv?)15aW[+b~K4F̱ɕ T~-ti)lN{nt1.#!&h3w'%fs܈n57Z D3Dԗe]2$g*m2`םu6M\ְ j@ϢoŞ}nKޓoVˎsD5Y:)hߤV9R<6 ;Mݮs-GL-ǘLZ$:v<ʼIɸ^ ĦgiKM\3SұhixKA%4RC|7s`iA洉vx.k+/"߲KuIMxZ OIEQF=D=km_ DxM3̂AJ1s Cdu&H _v"Do]k>ux[o)[| E*>r)*3Ν4sy$h 3CՃ%$kc"[ DXprFs'}r_4RmIx[j6]ʩ~W( 7QUΌ&iQ]HVciTӭԣY/ԋ#1\7!I[x|Wq{—Y&RX 6T7zhաidn"5l`0(; x97 r~N 8c)4lM\ @Dvf.zn5tofwk򤵥7j;͚&&GEQ#$A[B@ɉhg4K\F#` XYqMR:@!dA:0p3:珂$6}ʻﻎ<{ ]'G[oV-4sG,M+̎V8cui)$P`s3 ZsMԓa}Pt@aFc{iV}eg۴IA_WAI ZSjQ+XRĽ&P5Xzo'meB3ss@m"fm6ͯ6}vMGvo3ۯՁO "B45;DE*5"VXE4xkɺZ.V9dXN&օyaPp6w]7-4vŎd"zꨎ%+Y& Pu3Al$:3H4مrRCncI$I  m 7 U>jҸHG;/AX鯶cO41K$3o}X0٦oA^J43o`ou\9[ܖ}hjUՖ3RIٍ]mV`L[ymSJsThpi')3SXǾ:9s\ 70#@W3c㯶1[,_;׀o4VuTTYmC,A>VႲX5Ps d"P2 ]#e 3eb "2Ǎ*mqȶ> {u.-!dCAh5UiQ/t#Ca=zg;"!WтܧV֩Q4扰 8Ǖ[ݗ5+mq0r\iRնvuYS_}R:`ȞhpvJi Ih`$l@76\W 2y "DAcj;r獿bX#㽫jeM#-FB5xB40bS0s -_#]amg 2EsQ: mqV/fضGfyi(-Z2"E27R\dv9x T=.7n|?XV q?^'rlg7w?qS<9eH¡vr:C$`q646L'y+(Sv:/ߦ˕n3m b].PyՔt* JJtC$ť^8b0`[pu6͉`bM_`ް`D|-|\}4GӇ@Y9|ZgrSA@j#MHCe>9H臄bА4s({23Ae#ljJ0ѕR;MQ WhB$Br4sn!2G:SmI:95{i"Y~8( B &~2t@e|Be ̤&zi*hSz˂] *ԒTU/袭6ehQV`QVMG k;@Y'ODl袆t6͵UfV{@J\"B@PA֪-s@hvΚpy q7ot0mɼ}h8&qiQdIpt\Ɖ,ALI=. 1d<\NH$Z ^ :дӡ̢f|Yۯ-0mej]wFnA#B4pJ"gu݋{\)1flu1\C CP X9fm 4b9A@C)> Tͣڷ{G,K$'!JaL@DΒy-qv"t Bu&lFm!h~(q$@ ^|+\6ϹxiVs{ #w!ojik(gthz,8MEZWip#\.ơh<tƑ6>_k_]ŧ[v)nwXd? pcgÐ̤p j&#Bi[Zh"D/c$;mx}#~++7Ѵ-QHͧۃSJR$?&x\\)KkM/:w us3 "v݉){ÿ$n/\[w(lhn։;QG Ea;c2 21w3Ra|_Aksd]k6qn,Ô/lێ۪v[UnzK,K ZRf)5bEsҜVH"bf:5 ðjF6浠`40#pw^JݓvOp|q_vz&EZj}D$dz9-"$p 2{6:wPi6n`_ V߼9 vV;KmX[ZuGZnVYdxFLɬ kM<@ 96+^.-iAb`IF"{.n]{zdߡ綷اMSIk"J MDT:C%A:ߏjr0`[;\lhWcH-c6c}Ԃ $Nܿf4'y;;\ KUtKU)yU*bwp_ZqM{DԻrKwoxWln 4/;h2.Ѳ6X/۲ySZhKCO|rT zٍ9^jRY2ә }:uᇇ0!HfF$8>ss[,gh{|^IȼeWK]vlOOUEҾ'֦id#=%LjνLiHT"ѭhq>bL04EuQO!G1ܘ -$ܕֶ\\O+,R-wo U#$žMO<T0}ÎGQft@`Id4եEbqdM형{{cJڥ]˸<]Nϒupzzz$$Jp%$xcgN9uw2:λz#CC R$0`b^;>/9ޜKj=~Ik!o(cMt!sgu XuZcEC /b"fou7R<o22"y Rx\g܏w;FնH:!֩cv.xUBVU>X3N"VX3\@0L#\} m7cL4K$-md +6P勝V]4WuZ :H0GKCOD$b;m!YII m<^]qu$rƂ'U^շh'gCyX)MΠ}4 |L\I^(ʱFCiLD͠,1ŝIĐ}6. Ēx]9h)ZbU]ú3E eU)"XQ!,iL+ AóܒGRlA%s0f j- -4hw,V6LJ_+7=-jeW{z_|T LTAWPЉch;t:FkcD Б:$\nY91\$-$ vpNnO|oxMnY65;S^-|G;$sѹ1E0g븹&-~imsR4=k-줍i){e[6 n@}*h\v\W4G;ESB/L{k3+mA^pINXX$$Fmuwfܛ[P]|4˃,pU m$2ʡE )U=j vi{ԍ@'mBz][2S >kj޳bYEe|q/T$rʙ$1E ̄Hi0,m3#_(;w=-srˉuĉ״ŠH"cmPuR$:~[o 9پ͖E?llخW##P!# z$:!6T"L({4dddP9{4CHBa=CE#D;t! {jfB\L>yts#e~Z!GƘQ L>cMHA @Q BLp{ȍn˃L;D;hA`HLAaΈ 0}ɥ r ʄ 4s"7aGRT=~:br&!7`0shbzMeQ2궢RTW9Τ_M@NQ_Е$vԕO磘ZWff=ԅ+ߢzi;^aAuKŦkoq@n0'Et)PU :D gpޚu |96+CsTmmU-˻VM~Yi%T #ʭu;31i۾?[Tq Au=DlɬMh'RFA!3y#+ԠycUR%Ė0P@-&VWdJSUnm^K?]{kXj"Z[}8 EQ1, @qh-vnLbI2[:&98D49I-oOexojdOw~λVCWMoe 8a4`%0{1,sx#H! 83ZI"%8N6 ./w6>ݻZmKۊuY$EFGtG.QOVC|Humrٌܙ-Ytˮ3uڡkTA $[kSS[xTUUSRйH΋[RR3IFHnqC.&Z b]N0NsՎ.0t@es LL ,r~]]$]}d/}ѤsyUS4~#MO&\>`- zleCAsum7{u ďzuR\6+m*:ʃtNg%^O%z4 |LCAs8n@ Sm@t#f]9\$Kte. o[v9'j-;^ǻSoZitsV5+PC1ꗮYD9n)SVH\6bCA@u_Kԧ[V ..LI:Z({aUZi!ۧuVSnH*tJ8xVo3ڤO0 uEUCʴ]edq6Jxr:q ì&hk\__y{n6nөmt%:z:yltT*1?HR2# 86o;%D.ԉ5=,V")yi kL-0h,./Ʒ.;5^wut5phn5K]=B2$Gb)346 &܉j >LN!H$H8F\Θ póMp\6K jx#bFQ$ŀ-& tDJm'].sFđ04Y[Oni7TwlUPjZ;4 "uj@2C0ES("PIqHѤDnO6Gb) I;"BpM~^IS[Ww(vݚnIde^t)H̵4<0c$Ϫ,TDM9M-dmP Tט~0NI'H lwG2WԑE jf $u3YD<~L!ۢgQ fQ\ТQʄ )(ZWƆkEöB">%PYp{w҇Ԅ2:Aeƛ4j ƈr,H臨D9HA`}}u3G)@`1S4J ޚ|t@`aǯ}IM:l—|uKIQVehfQV~hOEdci]E@g8DF0p4TUwL\K2*ʪͺUEG=3%lwn6bM-ec۶on5mIR|z.bl}G]TT.GYF´fJ 4{[G~Nݟ請e#DcX[1Ue0%տx^zH.tP`ˡ:?57RoO}IW[vJ['uiJǘDfQҍH ᴘzr믬6 koׂw3{ö8ݼQ4߱]GWvQQ㩋M,RDd(vq7jS;ηʪ`6Mއ_ɾ-I\oVlMTl{66C%à#Mo D ,AfE+6ccR}1_ئ:/Qny؛Vռ%ɿ¾HST̊klOUk[ uZ&L6k4olAFTWbiU'4Hiiɦ]}xĜ]eqzv[(n5;eZ3OWShHs2q/UuQxIEk/b>!ŧ@N5΀_<~}6ǹ8n*6mx{VZ㏩iZd~-puqO~ l@\U';`KMz8iRUWTBujeef:Jt?\([\ OrMx`z $5ZM t] _ 7vKIm+&Z*'X`eZ`\QIMT$цs1X|*4β'Vb05)_nFSeK .96E&iXvfY/4Wb2Q\okeJ-M^q=+51,V 6giդ \40H0$8kS{Qhpi HEϤ%؜;r흷ö"WUwT-+$q\'Sʹad,ѫHThǃQvf6g >L]lL D޼km9n4TwUE\hU#aU51 QL -s[ A;s>?FQ.` 61=M΁x㺗xw&{>jl_w8ٷu4PΞeDn4Sup#[-$FfnmR{2yE3_Qf'Eyn _ǔ4V}^MuXΦ*⩒8Dj f9.Me2-i2\Hcx^IfA |[eTC?4K$&dtu#wđ{qNs qo)2$j;LHksg.෣g/~ւF)!yh( ):5{Nmc{sXܢR-ń\FУ؛{۔|˽w)U޷!7-<3[Љ,4":~\|]7vT 5$RWRƠEyN^~fD +},{O;뽣r`oms,+;};.UT^G_$DzftUVy$@cZ.:pb&O)I}U1)Ҧ^blI3,ZWC۾-nMqJUU]5[C9G6k&Gq'H.>'P0pߊv Z2rg?KZ,2K"7T3K, d `SN  ~bcMX7>;.qMǞ vllfܛv]-M5zZ=;ĉ%HV2IC'ZY¼=O]=)1k^6zyŻoa%y8S=P^q'VM=R2c k'mޣB57 m3eXj'86WCfG6=T;Vz{I'' o NüZ9vAVU8izĨ1^]SĆG׹T*,0C<Ի{}t#0~:jg (~@@S :C@Uŕ 4I&@M5NZz[veP2T, u(IʫL44 bOKnt͢ݴ>_V}EfUnj*▩>BUY,2'U5CӞ`ĩ6k\|4tp]BbS 28"Lo{ݰ- _|9<7/x˼/g;bnT2U4YJ&Jg4)]X2X_Ć##fR6""H1'Qq^' _pɼz ^L6%x5wSg}GQmebs# Ar'UB6K_ ;D62$K5_p%nw{ O.'u+Rcx! K зKL]MٰUMe#n3W% "XL><1f%nNKٵӷ5IL XmG 0h=CȤfXPHh K%ēr@ *ai֤@k2$abL lJ+{oc[o%Up149W"N/tA;D#YT+UQiu`b@ay 3ï?W^ݶ&lN9ljjϹQ[{M,I5X jԧ2УcĶ$`kK,kAyCmTiv^;4\Yv3m,ۆh5%l3Z].M ϒSI S J "`2-ն64+_P9$6r0 ^}~喗Iw_ r[wkuWoKJҼq P̬58&&cPIiU*R4nvŌK7$_b@N-ŶnZ$mVXx͖j3ź J e[eUKTu[ mhRqJucNo:#AXknKWq;pحtPv,:%5 \L/Ȅ z-SVv6l$Wmkehp\b OWD/iK&t2quLjԵs^oSnl:ZZ;(䢧G k*YcGCؚ1Y}\gzL45K­'UC $Dq!KJeiP)Mr!wī*Z>VOz]x=e݁2svInnkuomogxj4MpnyL,HG`%[wIno;װ &ځS>ҰSܫ=u<,xbԘe2^s'ISZ [@? '*T6ͺ nҤVLAՏQ,OP$-LǙeZA !ǾN!6~THW(ˏmIRp>= Fh8ԕC#D6{!:l6?@@C?M}0tK (ddMBB@@A`sS6耆ñԐ DZhDwAoSB au FzS}OOEG*婚 Bn'G0@L 9 `Ύe2m8^AVrٔU*+訫FTVԒ+]TaQMa,z2F8Հ&_BﻆMnMr[4L٩97_8Fv+Ucx3{X!? :wK@.wc\6-"7e{HzKTOHo&9&n_-_[ @`:pGi$UH\<y`2ΫiT"*˵xկQTW\s'ZCMjog"$V&7kQn\i:~7`4mrN2] <8Φ+!T`+>OWN9V)C d*@0;d0戠ֳ ˏsrˢ'/ɶ5[4/Vd mA&٨$(%C#>;VLFfpDp.'xРbI:[&LEsطKWAZf" "9˔IH19ZN_]Q4lp-klǃ?hm(x,J^70nmKM傦w{tJKLKt#HԂٽ MmmAG1@Ua#eN. ԯ:|aÏ/`#υ^w_o֚"[Mt'Kh"]Pa1#lJJj:3Ss|M"\'{͜`\uaKc'kdޭ0O_~qC#/|?n9opD_4p=u-;3g+,0hho׊-Rv]mHi'{s. YN>.E:a浜$^{_f`[w sV>CvȞ/=;Y-Lc2Q,#K8s- ͺZ Af\)ɴȋ]2Fomutkp;(ƶ:VZf;Bu84V8S̰; h'7VլmnQ$BV>|7`pw(R\,[mKʙg8\$" Qfk*5G5aZ6ɀJo"( 9qvH-cA*}~.`1OuPq,Xm{#B*V:IhҮ ΒM ';^wR͇>`M.9n֒= MkĴpJU=G>Q 5v<6I3`}N2Zا%mn~yba fﻚ\3WßqYmߛieՑ=q+SRidV1]c_P8$aX5yLeoL=3m;4Liͱq/0<$mm˖WWnc]Vi+a) jeZ+6,{T1yA9A6 x,'h03ysFoI.u(MSqxހܶ VkxHP&$_:|Ʉ Se#)ΎsR ZL'p|@M@!NJm,${_ sry5d1Q76vuڨ@=:YUi'oOX"^@ZV{\S:HcA Ib`DK/$TC*TSJUSOvSf++eke cV:BU.صXVj*'V5'?xkUpTc {]\\uV0b0NYx7b =~?nCOHֶTMH>[WK$L{wnc>s'C36}I]a$* fꔒuF1ƐYlO@$i(>̈\U̢  =stPϩϮz!P_&ʐ{΀`AaG* \ A >XΆdar>PԔa ԝ A=ĢZQ6TA8s) ӶiD_2t"0`R۾53&hʀG㣜 wG= !R^tjL*g*+fꢾ{u3u`MHZ^ͷg\ﶫ5̵u 072W#16 uG $}vzCE% -dW*y4ZzcE(2a#[æsaUdRbԞ˹̷ 5VX5OP֊y*ǜ$UJq3UMIoRap_Al~Ytii|N~_i|B$I89R#I(V0rq҄z~җe*yV\[3eyomfS<:ugLI h$,o跎VAL:_X荳9mr.ߞ(X&GYWF+!0i-uS_Dn==CU"LX pr%gin>_KUU\R]tl2^sJ)x.DI]@v,$ChD$DzMFsqa+1e<>}Ês qޞ>u%\=pVGB#,G+Cm:>!z> @<f>FuSk74ک mU fZIGU]8YaǞ*è pŵ|!btLc!ui2Nf$Yę,uM ''knov Ԟ\ ;,׈yY@dvqsNnZx2:lI#q7Qi@77ԃEhصqʗJ`)Q:=%y jD҉cWu_ög,$dHqX30F@;̬7džhU^ꦶVۛ(ےsE,,I(.ta$NCmL#^mopb^` TI`#P+>mO;J fmRQ G$7E=L!Ib%]q wԉIhH n߬9mbJq)Pq7(Tkd;WhN$MI \G=^G)+0?#qoH\#JKׂq$/dʞzT$$qިkABT(1#Tש4qZuS{? ۃ'SL͵.hm|}\ oxDZluѸhdk{ȥMyx [gwߥ/7j+D5==fx#M,r)8>Bvl>ϸgLY3v&~'\DI I |_|<7Nrۖ9+]QH-h4umf' E.㒙 Ip$n90u񸳂?#2i%W_ry鏢O+'!}?hE6ki|@(m(eVV hЂA:|wO @`)|&blTdi4X6P4k&zύ/T>*W,75^{P;ɍ⎨B%i`>MDq1+94@.$kNy'M S{F hܝ-iz?o ~6N6q%wɺ=)OZA^RPSĂ@=~)b)׊, Z;x\?&1TqsKa2NRyX#8H. .j/ WBXojST\vmD z'j.Hi`+冇+:\XZ 7cuCjZ.|$\I,,0WH)|u@:}W~='JL4Bh4sյ;. yEx:M1 b^o1$`FAx,$%t#1f ߃9;x ]qO{Y977j 2Z+QFQZxTt !cVXkc0$`LJ%
dr+`0luf$˒NkWCq6D$.SMZS4Ɖ& ͚۾9zYam^&\ *X'2PItyVy:88Wq6RtU"bIq00C$C$T23F Ƴ"'2,%= _ <+rxkᭃۖi[[ܩr' [XP˓$m^;1 kg ~Ӽ]?A|鰛n [a75V"\ P$F [Րtu`3q2_G3J A* 㤐E/FPhJZ)Kԕ*$seY-BUL*Q N!Ʉeh $^ t3Xb>LA#(9\xG)Ao_u3lޚ`2A?=@P>S*dKeLJBAhfS*"}=u'LD\P"̤!>>Ȑ ^,7mLAl|3(Dz!IF[_! w iLyxP;̉jVFd¾*̢LD+؞P;Jf긥huj|3[x*ŽJz.c\)!T-9=# K'S< aΖnWKoBh^#X_99:\I+I'ĞgPSRxi Js5NI0ONպq̐}P@ !hUh$öu&ɘLxY䒚J zq^q{Ν A ]6=-&WijU~) o,g*nnS؜:ۓVa rW0pos˧-Je}4@R$W`J>(cayu 6G ;9;$1,qkrLׯ5f^\q῝%;^2[vo44"Q\LI 3{xa-ZaL FaX*>$f4i,l8qOME^Knk)TXiXN%FST,du10c`%u8W3Ĥ&"X-tLA&Wľ-vF߷ :6ظUSR'WRi1Q~:B#UO6 5#M$ŭ++\3u +A7&u&:A2qG/>%[^ɷjmW쵓l0G_S!/$g/&F TA͘bv &$- ^ahPGa'<A$:|3\gĿ xY}ZLeVܰ۶8H.*۩im&gS;'eF,# )Q/-&˦ۺN"oȒezKæq"&h\K@ a0+ۋnJܾ#%*FMhѽvZimJbZP$~CO#xtM F#Ap7vi+1NBIYB9\ɜѬ1-i+ç(X{"\|CG(-wݢI=Q": 8A%LOi,!c Qp'71KpkL,|=LNK ih-%ƷG39ӊ ݗ%g oXeܼmJ *^Ϸ1ǕFKH8xz^ņj)sj`o~d#A$4Jiέ4sΎw]鷆{ưmJhn*R\ UHLb #XuL0!ALl~PcHmˉ& I@DN똶f{]V*(ڈHVFKQQTpK/2H͍Hy^x = $&&mQk?kxěJʖ{.ꡠf$VU2)'WJ5?ܼ E}GX5V/U۾ _/bk/d\ShjwbTsBu-#̊.@u/?łmQpo~ pATS^?2zs0H6Ae]Xlr-) K*gzG!r:fUH7<39/?YS*}k jeJ4Hv'x ac0}uo"AA/&,=mD~lQZɠUpOb53Ίr ȝBvg U[K6E$Lh TB'=ALumrCw8}EVVd=FzPrtơgO t D?(mD1#P;d%0lj=u)P_M@CP53Gb~? 7A`>#Pe!G:`)=3F1.PݻmeA`3)灣d@@a"ZxHRǨ\2rg4eP#)KUu{2%!BPȯhz綄)duN?)#:)/{,|sSUUM# $ 0a#@}s0{\;l̗KTj#F2~%#fLCY^)],S:|{ztI8a{[E׉40tr2@?w4CQ-y[oEVЌ育 ii`^B;r1hVѦ\OU殮{5;o{Z)*Zb2; QR/A$(7z[2|˲]{;7{֎T QQRV0F$t0NCYh:f 9]6b"dMn1`,C&ܛnnO5AJgvO`#~lpr0ɿƫyKXp\d1@=}g2Š7s}Kv׻i6DkM)hj٧I3iM;=#1lD]r4- &MΧPI$B vcrtE/p`Ϥ;Sxnool{3nIK-VIzg 2CL eHBƬ%nPgs~1u3ѤU?tD0bvD^83v5AKp1rTU:Ȓe!έ4K>}9iIi8luH1 WǺ40FG[#Z@l㦅v^T[S>o1lK.X3lVvPMݍp5 PԄ/PjOk-⻖xwUl]wؽk ,oV-4 <,XPejTI ˜q k~-8k{AAIcm=x߮'nOuܪ8ֲMDc{ R,ȽHb^08. )m0˪0vvUé7s@ kI2HMk&Ρ2*r\67P?uTUBbXCH9$*8sH5,Kh7qt'<47M[oŶ].1m/UϕdOTPfH%:/3;#|5W%$MzuBoMbmT:n+!yUtqS45y@b|$bH-&sqч@&4#E<| tW;bHSBU|rj{KYϯ5E.>1U I kmk$mp.tnX߫CD %zRp,,=DdJ`zqegM\kE.{ ޴M=>7J[}}{+Iis8='MEZP> HoLeD"I?IQ[L i15HͲo*Ƃ%X8$P+|43M'MDekBzP6P~B$gPdhL(DzS4) iBhfL~M@s& @s] 1̠MH@>C:$ >2}Fxc%]j@57oLj |{D?9,1x5pAdSdj(sW>9Bʶz*āu%3Dұ$`z#JVҤ^`ooժ+vSA-<zdr!AcҊVtK{IN@VU].{R7K:iK;QaAx}{\gL  &@|=:Z-[nS֬M5IJ+y0ASx,K0˛FfI,ab~ G=sƣY)y[W_cG uJ Y"|HbI=#dI6 xf5vN" w?)0/n.R.A;swZΦqecO3S4 Dzb2 J4lKLOr52k1eDA ir& ׇ-['l6e5@t].LkI>jH#UI>M;y,%Y0"߅MΤy+/TU8rcH:l,M]K5vᑶWZʢd%g0JO#hGK!fws w?%uODwWoݭoq]~F\ˁ?(vgmyo wmnokx]7Hr+4uidmz6iWZ9@h3טfA!tq&գ[k A sA$_/ 9OhQC=BRk-L!F^UN v1ms0 LN\]0,⸞Zm\P3\Ad>Ca\羣1"LX09@Oً9Non,rԷTC[C_ozO Q7]<Ɛ(zRId:K#(lG.g$ Ej3K_,c3Edk\NQhoϴ[FNPmK~۪ifۗPԏ,EutHuV<y߻x~^3n\hh Dٺx^'vOª1w1cF4Yt$y6+m|4C]Wg jD5PVEp>Z鱦K .=3Υv* Aa ǡ^/x: 9n[-M۴<>?O3[~m7b^K1Bc16<ԸEB'ܘv恘t8x6=FK6vTbϷ6F?rb~eZ,G[|bSԵ?HG$|:FoJ.t1SJ~ h{UԨ ӿ].s3NRE͢krX'pM]o2 8=KV*>b0L>kn.`$:g63g*6-FVvy/Q$-I:#Lt$gR>: 7?potT`w\.8dٻemxhxuK[oZ0-|PW% D!eT9 ֆ.&H'~]'%/i^'k.wuZ5_kWIPu3Pŗ' N{(X)/{ ml4dY~Q adoc-o׿ QkAlk0Kڼ[l Mo\T-lꄘUp: $KyM}YB*F--O[ALTV[ka6qE>ͼItTUmvdRP-5ry'}0IAs`HdubԤ1-Za:I7+Sm3>'9Su[/5UW z7KMoyZ Dtt˘ t1մ)KV#c9 hM:Qs\iΤóF$/uFaʮ~z .}q2RƖG 01 5,ȥM5~$]I>h:d&rKP@h¾9~EEތ!^ɊޒHIQ]-U٩ƒTEOhiQ&yQKXQ eh=Eh/KVqLC)R1 ݉ UoZ3bwb/kM}Y܎(7 KUZ&DO H;-0.u6U߭7+Q‘TQ1xc*t~pOrp=Ens'[R@$IBлgqTooD{3JΎ,t#KVE雀 s9_w\ז7 x\wYUTUEROI0b3D.O\D8 uվ(b]4}`u[NK^$ZӼ#_Ekxޢq]hܻ[q7$-ER\EMr@0)eHg3:$]{+164hh @(2QfA"HmމouOý?rU-d/l}?\J…Ltrg@[VW]V0 Z Ĭ,N bHܴ73-դ? '$۝w!fV_j]U®cgS2ʑ*#,RDTl@^`L Sq5S-$[먼+Q<Ûy6 +TE8c/AMTE#@tP xf+ s? 4{L_O xX^[Wq,w>˱yx{CUjJKU D2tH\~Խ fK.7j_,~3)I.o"kȀIwj'77M+nlR5:z㨞)Dm$EDLn#-J4 [6`h LҮ=nH{u})I˜[cڎǼ>0nt5Bzb`l)Rß& Z}> 1lf6^aȶ< sۼuU r5dnzJ{M%7 _D;/WA!czGq_v D[3 mnSǯQZ(e/iqv6puȁ"%s~Z:W{N+ ꮊb;I0bI3ӵwgm?l=ɻSo~;~A+,QSK::(|ar xVP$Ē"\cE;Sb"ql 0Ğ^8iI0Z l'y2)#]'z**QHI=0f5t(fq.e/ya,h3lH p[ "]U9LC/p@ $!Nq'`sݴ\ias ]k\oʠЁֿL8T7^j EZ?OBO@:Y^ƅ 8}@m$9h&ttX\%|}3]e6[ZC{VA;)#y^,J&O* Z[ ?hY.$2[O69vX1|Nj;+17l>w}}~4knԻ/v:NM&ۋs[d.r:ħ%O`td5qĽ :E\7=W<09pj mrbWµMRIӂA @v7?s~ڜ|4al]xdC87 w/,4TT 8ī`匠3& )  /0|'hgLR \B\|V>3>&Ȁdh K =u E!0aB,;U lzLS)΁1= @:gL)3߶5 )!343˺ >>bo\ߣpb1> ~S:!'#L" 9Sh,G:`Awst ?43#L\RWy3T, SPȕFu2*{z0E<5fcNʫ=IJkK¬,)]܈{eI#,PAGCYnv{mչͶ(WPnZYMDzXPx-. 6& ǖE,F7,&wo 3}rE9oAPhw [1Fk&x`_4`*f&N^~66gRq2ƒ<iAS]|&'RL ˦$LjD\ˈ5\h_-"WuhjH}U4fU% u8`ag辕JG5@$$ﵤY$k.KY$·H$g rA$\I7xhw=Ni#y}_'53Md")SX&Ifa1rID=Ѩh:7bi1F&yA9$` D`52c7>^ F#|+{VGvީ2ʢչRq-\P†64GUHt\w>\T4xs,~@Ihxc6],U5]*hT)oK͸JESȧpQD .4& 4vLp2}@.7',s8Lm&MŽtn#b wPH깴kͮ$[)-Wj4fU?K sRdjXʔ*QyiA]WKa4B 1>rGߑ^SÂA1]l{b;5|s b')*?R=]FM#+p-\7P–-f\Z}doΣ~}vuWn-lT<sw JĶIlv+U79-d4T(cYMPTx{C1z'cXMM8W$N7ovԕ ԥ~(me,Sԭ3?xzIlNHR3CejR4rEeQEHWg1w?3Bpl.W{u45SƀTD̪uK92#Dq:Y!#`$<3xXpIÆ2:t 2Ih^}VULsׇ`D Imi+{K$5A%}Y5E: O^6 R2f;chMUw;Y{&Aw%,ֆK$>Q/)Sѕk*^$Dņ5롍Wx/v;3 F33[H|IF۹rl/|o i\v8$QHBAfHBR&qM̦ǟ2чri{I~و}L]{,sZ@@÷lx8mx7ؖm+*ح4ֵݩ/IUKFPJu/P`43Tp:ӑs4R?ڑFVkbZZ`\"IB߶mjvj6ǭie%]|44H!{6'ji**x^1;RKJ"`V 1zVx8wIλY^̌eJu1o-F$`u1yr#;v&0ysr5'MmaIy~f ?iQ "/L.=&x. 0|I׿ⰳO9p iq Cte1+=<+;"9MG,<6]UUMW;’>¦]Pg92t+8oqCu!):K/qm  t_b*4#RG]~(9'QVem4wh;NQOH/kg{C-dHWxH^%-sdƷ  lch]&z7= x-q%lܱ@v.MveŠ߷.W:pv4pj\4%zf2dyX#k>66\ZL~[Ŏun5#_ p<HD/r0-dR ro.O7ڗۅM4\媧"Qah1\ ȿK`A؃r Y˵&4$^ Z֛e6yny)4G ]9Hى(2 'f6'asc:|Z 1 w\ur[M] 닶{RGxK(*U֕+qU;I*" 8$8$ckH3.!h:uu7]U{qo{պq%-^5@YuD #Vt'ji;mpGLo0HDA˹Øx6bs^[OHIRmqbE1e\z[!ʜ0& A٤oc:jT{r8Z]h'C~:JxkOwlE='۹mjjJh4}-,'S\ObۋM4-p8Zw.P<9aiզ䴝ž0[ֆǔA%:4Uiф/D3]/,4^7#Ϫ؇_+`ulhۼl-8g1]OJdƭ`e"D!j㧍u7{&<N{\ KOo$꽧~pEk22d&$PI_$7n.~dxӷbK4‚]]bO5!L28bď-VpKMA & /z1c2 T [2N;Bj6|ŷ~QݷoqBQR UUݥiMG!ŤN Ӈٶ|n Z7n}<$s.d? ~߸@6/5dP_ՔM4vꊥvH:x`hf jp`vIF%E1LuR370Ig7-}E}?S_9ԻoAyWrz*cjfJDDzK2ia*4.PhI337pXIq}i5`şP  u뭟dm.5 pEûZͳrXh]-{6 5-bN{Gt1JI$dxqT_s$9oh'QefW jxjb9&\y~C3fjx~nVNmZ vDS7 8exwbb栍P{D4S?8&ЧgDxldŽ'`ۆ-WqpxdX8tyΦM6{xl^/ aI6B m5l9:|h j$2e2^NzCN$ט V]'epz< "C$ "A r]|I-֛BSY^S;*SRK$E*fRseG=!5vt:\3ʘ#FjNH";q ?osNsn7Uw֋t 5$N917oUu)Ѧ2k @s 3\L<;5NhV\5.y"6o|)]W)Xi-ڒ1gs-֖5+牪*!JTHe(Z79RILP`[q6 6cjK3F[ bM-gvDJߵxX(-.JZS[VϟbO,*>WSTm7k;1 @"X qѢmS ^&Mw0c "GB襦 k߷O,$W)<Dd'˝! =!Eu7Z5x:xrֽA?2#m _\;/q𖎚YKY^UZC1 14X^AT*HԧVaBdŌhH^#cۈ|b1&bH)'nS+Z6ԖV/T}5CSGJJ=I @Ej 5 c}Y7 T-qvmM<8Ԑ>'p5ʶrWW5GiePP *df1P2b9Iv$$`ɰOWaTI5 Lbd,)7-}pw^|U-HuV1u Q'K9Ϻ19=/?{ g2&nX"-mZm4F=NDzWMMΫM>&۵?YֆS{]R]MS9*mK,=qt, d!q'J??RӤI93B6T~u<_@=8f{JqM[NdC2=sE43&pq2i&L d  e < 0bArsS hf_G:qM = $~ϲ`ffNf'P̙`_@:+z!4=.i6D6Ƀ I۾1@iG2lAis߶4C ]G* H=5P :9b& bnts?願e l]q]QxQN>x!w?M _iE<4P QgL_"ɩun+$Uy} a   L5Z MV^<;; ӵuFf7>--k*J 'o"ޔӔ?w΍B0N&3#[0ywX"-"ׂEoOV|Vth27 E#go`/-E~DW2DbRF#^miqHiIIĸ,U׃]Z0L\ \|SdkMye>Q0^/ ZʥibCHj7AIVJ{>+ l0`-缙gK rn<&*% ҜN)soH/m] 8Ei'FWK{in. n5{~sTx ĦQO;ԣ*Aßu h,&RIk2" չDh|\B[ǭbm87vvhU6EDTQE bnjDC#΍eN% wc*(P|kgGlXLVVsH%q.nX$h ?Uooj A|-Z()*EykQKj6\͖Pf\78=̈c]ql΋Vؒ2=W&ر2wMhꊭ.= নNQ \D: ޻ hk;eyjCIS_.KӔ0k!eL埲#v<ܪ{+nb_?Za=sZoq@0eojq1 G m ,7`r\4_?ڸj a5$#q+ZZjeZ5u"M '^Ebb%!N>MfP]ΖrWOQծ)sef&Lf:G:{lC(<\-}~ m4KNAIa& c/1QkSn91[:/ C6_f:f Mfzr^.brV}K - TNHVn^kD+o|ſ+Ĺ6IwDUEMyjnl[RpSZ)DH 1͑γ1|bApݠt =YrdO)&bȷ|mnS~l[5'W+hC[9<Qrd@C?g фIhBP%[GMHҾH/[umqUڭpGnFJ((|; |I?} חC_%:p2[L?XFfyFmH ؞x?grzE[g$-Lmp\R!NN2:_j o~Y~X*0t &_C>A/#nQ6^j%xuIIsqm[S%:KUd7Kd ,OgxE:[ @A$jCEl={c+dHd혂@/ ~ݼ375;tK"7:S>.i2$*'R.G3jjJZ㥄87gP> T$2'(kqDADw8N\o։mbK%:7\;$KFUPz4xmq3Ȋ`yvpuW=87S&s0 [fSS'( xW)oVKoutsDnWzHґiI.u&' `2%7^W[ Wsb\^{9@h.q"I[Y21<%q}w9ZFƊʖ;̴S23)%9a'ӈSsb|[8L-$؁4] /pe:dY6b274q!xA{)7%u5]0-uF䦉jkOG-tRSՊѯG-Z)h$2dŀ2$m*jpwsCCCE8@Oq79rѳmk:nˎݒȲSWE$Xȫ  4=D&Y%E  sFg\ t` NP>)S5GCZf$:o7/i kdo7lv|-ց|=a䩒%v^Sm)iJuH:g,5`AI5O>kJub-DN'}Q|r\ny~ҍDNO5S1SD}kw̥Mj,sXp$9O(\1qU1SH<qsrN'ʟbݜ͖=%kvnE]R:S+/8eg&ڊMXfs{ì?>d%h'- L"ҷKޛxw H -jA`'oQ$Ց)M<3G]IP_3`ge'n2ss zĩ:e"aI?I2n\Ŷ}Of|Kw+p1P^1Dj2#Iruˏva` pԫ_%$9L IārUm{z併] /@鈣0$v22:1& nHwTTnUE2Alc;&~s6Wԋ喸1~A_h2FT@zjX m1.Xok.!BCh ظ"mf]K -FSF\.eЫhOq_ojmoI]%%E5u$SX&lwΠq0CL7f?C0e$P:hfONtAΛ QΟe?S0e/M j& _?C:aM >" ~}3&LQ7eSH2}šAz Hm1rN)LN{aΛAiOCi!QP`Ou ĹPZq=N}}PQdaJm07޽ h:WQg菆G?|O\QxPď7r% GčjW>@7!xk|>2NGTL냥sƋ^f^wuwwJ{ h5S&g2"Kzž̫H6;D|I'KtF@ 7ө?m>֚֨k-iu\&TQSHF]ƹ/ha=l$$,8^fU]wUWU}Hxݤ =Vxynb 9gI$ba8ZiUOsn%ʲ;@YHct*OI#IWVhH0܆ؒLѠhiR9.4o14e1.5"x^+7\߷;ŞC5-DQnf"UeRef^,sz$ٹ6:«|0 ` kl:[`q$omcC(7 tEnL$/Uu*B,X1OC ̖82ӹlk^)pxhNL8 sbg K'n^l9~۱.|amt [i-Up-L =(4di#֢_NK\ر>]p1mVCNGl?iI>[d4[h_Ϥ7k#Pt:k zqG$ C/DevVSKKLî]o*~X>Ɯ̛>tG5n6- O5t^mS+4qE'X Rn'év KAFf i㪻il ~[F2@)8wssn{5Ow&+%lm3KC-i*AF8}:h_{<*U| ƹ}r]K}X7-hO FPqCq VQuL!笏>Ķ@Ao1_|xxL7l7jPN޵]1 u9A="sʦP}@|+ ŪbL},<4\o7tOP$^ped-_Ļ"K"qxfS,\ qo~OOeܹp[v+eUtt2.RP)AŸRcex05KSavc0, Fį{JD>x?be HR9W? ė7vؼxT xdKYnT9 䧿$g4{i2p,eHh1ɕ V5qTHXѣNc?@j\gǕj1l|fV#ljFF'= ƦT)]'X!^c7.ՂI6@[M~A&{< )Dw N2nm*yiM'"*e9eh`y,9I&I3]{L @@E[h*qUH4T4uG<6=T)rOF #p3)l h߬[b~@ zjG`x<vS-9%O*6 Bg Sη`5uC(> XS` eE03|}iOln=ۜ颲m{[֗pD,EI2Fӟ31pN:AtN\eLj+iS}RA| i&$ًsL@{EJ |s-EvY8n]D}X4_%ԬR,BNqk&Sځh3U\4.͌B.R|XVǘo!<+b;qN>3[x>[IUP+cVX5g$b S=/3.2M!w j?ĆNA9]k39FO%3Gy6Z\-3n~J"S!**X0*Ӷ3;0H6ڑfsx xT7؍4y]7.4q>m0;]ܯ[Ynr\WƮWGl ,&t,'b9ל \;.MC+hXx~ӳ]*KIUM5}3)%OSi<ds F{_mmiw:,+i *ݒ8^FAqjhuJTkS0I8- Ipz\깔8es :]hlBKj԰̻r,IG%n۠i-8$=hWUpHLSOAH2qN)G~A0Wt3F?p"#s Ii>]|DJAq^SdΗ=׸.VdHiNF 5!q8`I/nߞ9)Յ+2!{dE4׿OB3}u hm6sP8fjgqI >i MՂԧX7L),C_hl_iM`"_+/s8άK3|>H#xAV =f?]O LE:OPt@iN]43YcL%cPTI QI>GS5w3:)+{ С88u3 $8<%;t<V7O!iP~`LCr]ti(cR=?|Hg ̴ҭcZ$ç沴TԶd%&aOSI$@v 6ug癏Dx(EZ.F:@Q&>6XSKj WQE]˘OS98`3P,M@FakM4|wZfuܻz)CY, [br#A1Z-p6쯡+T`wSk}մV/eA8V=*z|d xCKZM'y]Uι6ϠXn[bGW42V$JPtEy~rc@3BI߹N:^@P`Q 6/:/OmZ[Kn%MBC  8z].qXA% St(ўRwlI2MC/UFkյ܃ȖQj%M3,T_0ֶ WGgi-kDu:.f#{62krdċM )n?.ϊWs_6rqpPAN*{xZUTB%GWpZ%1L1 /,'_-9ITqlm*lO6{|Xe +L[ە|x]z/d,pFUQ-I 1G Ou+ğ]gQx2;6_6ڟxgWX.{*.*=-Ʀ_[tp#1Ai5] A`f52L$I6'q|OjۭW*Zŧ9nj K3=DJe6h 4ܕ}GTvg v[Ԕdi(idftrhٔe?$21؝emH7SG3]l:MQ6֦p@){s X)nǾ5ѫq6qY*`2 q3.NGQ*HM[Qf9 ,^݈Xw=r Ⱥt1P+Ɨ_ 0v|se4yaUMG$u6gNEHT)auezN0aq>̂.$ܐ'n%Žz5=^ и}e3?[Me覤}j 65DGSOqTT'.LW"F\ً˥tt{r[a`pZ238 <PuZ _gUn\tݞ,(ܭ⚆WYURQnoPE,,屐˗ Jr=I4TӚ ;%j9k+ 5b{dDm"HH0-uFU8 ǘ5busu*]p~֢ɹbZVCN4i g,шX sl O5pIc5Ӌv%u%/ݵE >tk+̬zW>GIWfA7$^ReN|i4%L=j]vkU;"U`,M9L:ީ+!+'ڵ 0 x:XLZ *!S76Fas"Dm_ڥwO*lǶjzJ X yUDPF, @T6.I#~kSG*4[rIjNvtx}e=]L0WUxaZY-Xh?b#it@Ăoxwᵫ b@ [OGI 8HYcCγ`;r-m]_8JZ6*()j4U 5PhczdQ$v.=X5ј#FS>a0f`CZ?™CH¥F 1D4,4~(6vKƥq_jaROS3Pba`6`).YĕuBXxRG%gn+UiIw LjM Oʭr4\ g4/kl4$dl5)zP uCԂ7*G<]"UT U74 9i~'ę pL 6^?]؆N, O,$ a#ਸ਼0,\cӲ z`|{/o^߿uUv껬puS+G#COd$v+PQm33o&֟"hHf|BtvS.=N!A"w?3=cܬu)/Qu|1!cEg9y$CK@>~1ey${@]=\Tq3=uzٖ#H AuA#F9UJ|5UU W:~c}o{UboKEqؒzh$Kd 0cGa֯!ss&Ĉ ɾ)SM˩m0 }bvvAy +IueK졜(qEτŠg%ґK) HG3䈠fQ HsӴ:Qxi_ !1!wUk0{V~'J W4I@J53<i9#LtJh%{NqCKZgJh+IQ)MOi=K4* 5Px`OGq&uL93uZ񲼐+oWZ =hV9 $\9?i[} |Ornmn}3P*zfxݕEr3; ,GS&_E[J#[7I ޿u/s.HHhjc[}ZyM*DaO7լL2ݦqmXYqyk {.uNB@{zn4:f2n.0 .s wt v>5=r/t[W.Y^ג Zn(HURWbFQ "UUp4Ve;O~u]Oe|?3S&K-t6n?B}۶̳![oqTHˉh&i`ʰ7Dfsƚ nC +QHs&5mPUG ޷?"X)%kUhA=S7䓡W1"Kuwؚ 00$H{\rf9/6% 4M4cWlsl=i%-,YB3B؅!\^ԯRԩtixuDŽ 39A"[8{-|u]JAMPc)3ָ38j`,1\ 63nw9Zv%FFB4!EF_w` 3`:8vw.-ĺa  [ef},ԱVORW 0Tu|k~[^+ h7/=w2iuO.M( \UFX.;pX˚QTniy2BLl6' *4^mrwV1с'C?\~grU 5MOD> aSMKXe3Z'ïK|w@th+fO( HbXdB(CT=SCȚshfU r\v5V=t*9idNde!"_rK=5[Y lv8lҗb>$擪׶ A}s<"nԜc?@Q OjfN(+dДŠnfZ?술j}ItL($)d|R~zQC53'R H4F|ƌ AI#P;aA$|ԛOQ Ʌl\PC5$I̜QAzNq'DkWNơ*aDdiO77DaF2>D8¤碉UYԹGfLt z'yC׌H @>i~WRM5.^ކ9.rӊI<5PC~C@:WĘK^;Oa.[1.1 '[fwmaelQ$U$ՊyL􎮐WU~}~x{ ^ZD$]ű;Nl6-} ۵W:o)犤-%3kE,}JO(8a&Ķ.` M/c3m-sWTߛnMTI8)2S0: HH=Q#Z6h?>#5+x=;͔3kVtSx⻗&xHwrZIw`0-ʢ73TBbLcʍi;Rk є7 u${a-Þ2tO Ou\)eZ=]lIvךGc&XI1&dc.(Hh<?0&yW8,_F lry(&۶qճA*E4a#鈆iTh~upAaTw$-ӯjyWfClMC9_F eh?e}Kop͞&[rYrޓQVPiaMM1S,2iLpP|?-J9E"bo@0$=W\]6qtϘ5I9DH25b6ح񓺭b5j_M,SJ4}L]XNd? g|Ƿ5-/t EYvSrmYq6#KFn<͖]Iw-5!DVѣyep$}O@Ր` NsJ籼>$+[-ȖI=bgo&؜_vY5oAQ_`"&( X'^~kj<ԨTwPX<6$r}#hq|*mҙy-m1 p0A|×d[m o7Z:詮Kҗ iCQI8&q+`aq4X*  Aue Ibk)ȒIl0h9]Ԉ\W|!D,d*ڪwlf1WSGny=y6c{;9^9EAyr J~Yxlm7KoeqI-\gnr{x4~ 鹶:aM"zdt5T%(ڬ>xO ̆n :X 쟱x)<]{Fe &ٝDz[ Ӕ˗kl_:Dm؂>u1h@ PQ ~t`B+i'`vL~ziCw^~@EF?j}@  V3$"==va/D V䫭+Ki ABӮT3ݙbB`wm2uރ^ σۯO^=K],NY^Y u3Ow#Ot[3E¶A-H#8^0.A-1/c-'?v]\; e6| ֧jqϺE e zka]$z2C/az#EDPtAΩ /9>Q.u<1}`[0~KV,4Fn5OLCQY-_ H0_34h~[V~ nd[ӚwY2R -)ʪqSGrp5pz:׾,x)q"O#~m}a]R۹{%ka0QG*Д 81ԃѭqfw.\LALnN7ɍ]ݸj {a"4Di0 1}=*#LFdDOeI1=cQ8in[o"^pVCUq\=SeYm%-T4mo'O,Hcٞ'Gc7Hs}ߠ~R*Yr^و$7^lFS6˔]~ǽgZ*)a %`f/דk+a쬨e8 ka&IhJSkS& Cf0sq$1y>X\(Mlj5A-PJ(ač_hydyNHxW=T$Á0pnfh'C+ZZ}ϦCm..d 5;0 Bv/ y˻.⫭RQU*GW K3U 늂6vHn=/هq hfw  N#MlWΩOpO\3:.4e/thrQo•erx{rlJ8$1EO%$ZȤ /Jb8S29d{Ei6l #FBov6.3ExEzo8Pk!r3uMO+WkM-=IImtY+NIL ʺ:t_.xmH"hI 6.aZ7j6M%kD^>*@~8ibYH1._R(򃮲<ִΓs}NwmjI. w33E_1iLUdPzH 5U\Imah 9D;z]S*9N WO[WnԚrTՕ-H#0a>߻@j_x`0i&偒BQ4F2V:KG ^*'=Y`4w<ѧomo٭:jʺ'o-9F`uI(9Q( 2Cc8vUvwHNJշ31O2U*1de$J&%Wޕ$vP~S޿D1ʭSBԨ~O##'D68ہ,C'J)ƩtB52QMq)dg?ޑ˲a cFs4L#E2aN5 ܥ ȓk(Ѻ Xz{uR7M W,52K!c!Hc5Y笥dFt@蛍BἺcK,D t9/ь%l兿 5 V-EXQsIE =ڴ%4+s:6|.u2J;25 T[GM䬫|\CH:~ H5,_Xߓ* AH&oc<ƙ26 D?o BS?\-]A@d=!+1%[ B k 1?D7}# ~>oпͳm/D7{W %H~XU?M?ajW ktc%"P][6"_瓢ƀf>'4,gY,>XR{r d)Ikr#@{_?%W,ȇ+9 @$~.T$h%%`XdrJ}R{T.&:P%o?,7vTn]9!r}$[DR۝XbFXXg,A$g~Zi^V0D4A'_cS]jEJXaBHe{>j eOCk[ UKvz./>zz`q+p/uXMI=EP\:FH98f2-8$G~uɽ7*]2 1Es#*zsk݉p;ga!*_GC`oBU~)ɿ&֛ TQ{|>uڔCOtU!la֭ ף9`1fF1' VN0 ̆u|ڒ蒱ཞ`x?܅ķ+yIhn]ocmڡm0f G?z{tk%"\IGU7g~0V%-c程Fku_FµUkܩ|UqT㷬5 nx:x)bS_*{7xuCڇK]3$Bpl8E-sOkI&&CDVo5Q6um7h#G8Y d1N_gXcq"\F -3 p]_cfm^~(Wp rU^w ݢSVR$[mUU#Q=M8L?TA?p,P qsա igN+pTȩN]I', 8Askr2#4Bp}n Ts_QNR [| /h͑}}[~]ڻZW7=m-%aE} OW$^^rN  E':32L/ W/T[k2\8Ne m4KSwm5N :S,T1W'iiA}8 *L~{7"yMs9[Aڽ߇{; ƋrEd78—[ޯG$l,wUh &5Q֫oRB|ԁ1?Rp?@i:u` ?;=;i5(<D4d{nK47M*kKiwEھ"VSO-cw`=yR ,`Ig _`{uG?U@{jdp!VLBV l~mjr_kvuigJzz,U#%GRW3`4[D= ]ZgQ,ni$"!Gevw%:-i٬OzCΐHrp^P̑X 9s\lƆل|P&"Wa浂!MI+q)7^m@{m+-Eeʙ!ZVRDOꨤbRrԢyhb{ {~6'4f;LO]c +.M12ǖrT,}p;'${8~g;%\SF5S0pI {YE~f:N#?lUT$> U:'TS0K#V*~=º8?qQrʼn 0vP0|3W`˜\1KV6=V;wXW6c_Vsl~% =NjsC7$wF &=}~Z$&BkY׷CK#h&I\heOh2^@sS?TF _co A0ok?PsN7{=5~W0+OɥK )]k z}^FoZ{Ecp S!"r $"0U12'"ANt > T2oP4h;~j3 NyQ(4G o肆_.]/( P Y=S{Iv ?lhD Bc&ᢏ>em*g VDaHMtm/#fwwDPMqHJ'~|AP?8TEK'oWh:(,l̍@ƨ)UVʠ t u('E-Yf?dh 15 @QAhqefq}& )lS|4ٮaN 7k4T4&vG:aNx]SY.E视hl;_(& ໇6 $a? ;Q@5 w ]֒Lª Cܻ#[ye.*lpz=={|;x$8!\?7tR? Ee4CDf=ɀ" P8A+Aq?L08A-k )*S oʣ j6觻\YM :$S{}X?G‡ :$ìHjP0ʏƬdF-v]rܦ!wh`WRcJ䯫7AlgЌ As@FPtaaRZWEJHuNOw_=;~IFl+GKigp%2gKId>K;(8xݔ[ڵp-kTĉGyofĊ {(b36w6gӬ4I{@~cNھ֛fmZ,Қ5f:PK5\r Te4ȔЬjգEc Hbc-6N,K82<LUZj#,N`eTwKkp?GOSK4r\DUjxg.UKG!1"JoC[`I1&p_Eih6P|r35 "MJMv&W{ PE{SYYAZ%Y9å!PЂꮩ u{,0pdFhA'o6n 58 oO,ݱ^9f3[bv~A&|KܣUdwkTk M^ ɤ8Dd~^i b$CvY7.t2HFլ1jl,ִ!ܗJ_80opU4xbV}үO ЙrW!UF5g !EƵ!Eĵŀy.Z%p}؟gtۀ;|7Vqrl>qIX u+=xłsf}f]% _*+gpkPoi䑃c2{;ca@h e|coX%u']ܦS\$9@^N97q%#CkX*C],nO,uJφX#5i>'ud -Г {QGpB­!\@IRb_g*nKÄtlڛ]OQYEPODtHሚJy"Q%\wK ̵GNsԙ%@!yW\]wKi2=lIygxmUCm,Odһ<}bdpp_'?تǽW43Qi `U5N Thi %XEa?_CMp3OI:u! $Bpx25:vUNŝ/@s]  Ž4Q#MK'i$ɺ|_ Im]ed4Z;Mz%FgfơQJ7410? AIt\:sT eng<@-0:Lx ۴-O_7G2se֭7 $SQO)]<~UKH"@F΍Ƽ9v ? ]D`st.I?O {E e;sGٍhZ Dԗ>V;?jV˻.v9)tX^V9BGT!*-q \6$I?v]K6b(\=dWϲ50m+ݪ[*682V9B [sGag=ٶxs&Lv'W\ltGayyۓŝ獸UշmiEi;žX X^ x*Yi0KN'ZUL7imbd=bӇ nQH ݘHpl͗ɗ{1PٕT]6miOjHj&H "HF og23 ,23-} 9xp17LKHE7W!p,Wm]W {mѰiR ‹iYr sjq}Fi$q_zX.Ikđgo5nx ٩^V5t01'Y݃s9i6 zt ]L?btͻ_-iwQ]vSwsX % cX!#SO+5<fHSuj/!efno.@pp.*xZK];\&V+fEdCɶ 5%DP=$XCLzpİWm1f.6haaF M&;)Qn*5;TcehRd {A/5vr[;وh~6]}z)KqJKv=3媎;dv@7|S3=R7DuU8/ጦaFRݗ#v?i}Bq6x+Z* =S dr 'up6oz l67ne|,65Gn(I:q D\w:{IVņm7*o4ܛɝe6|m-$ll.IW98=16'].xm1ΊyZ Awy]wx7I5t96z|BG\hDh ]<܁)dMLiG77DѲhHl 'j )6lyotvHuImŞO\w4=B&[#i#/)M&Sg?O쮁ŽCD\ ϙA4}B&#r9Ā?ĝ764LtMP}n#M/T6B1_Y')NpX@1i[SixBҁ]E$TI?t拐4E7\t)__v1u<0q/|ۊ!ʃ'N0hn(:1gZDaa_hU2&I|ٯdMv&Li&-MpS'De SWɟC*Mpae a#ӌ9RnLovL3kZC}L8΅ $ޘy8p8:xpwGw[E?@` BxHBtsh&NWG(.(5TG5,?iG 'V Q쵑sucfEU. - 9$]äo(6?P.Gn}jC5:Qjx@?|ѣ24ꎛБ840xB8ҏKa G m*|V^#a4.?qT~_(M4 1EMryCKc"׷oN}\3'L4? td뽮YP->= oX Twahjn;M4U-p)X> ǪÄ-m~98$:_=To|ۺuR9oT5|LZzz^Z2EB11K9`؂z\٬"qSh39[\Y1n.-\K~p߶o,h*W*&jdx(ߥ4^B%[MɁ."2b9+Фq*9A$0 CAH%rWf|vۓUL;zz[5ZRG*2tf@c `-!@^eJؼO`bc7C ˅΁G;M!qD;:ٗ:T:ۏ$zi০e8RH]UBMQ,A":VPb&h7qXÆӒ34082@\.-wv ĽWʜ'c^-W^QRT,Z`*JgZu*j))%yzYRjW"Cdf8e9gX.vRvڸ|kC2p ekNM\gb6)Z,W6uK4t5 "y桡>t]&=d\Ujbgl37#d\8ӤW{H֩ -GR-C e2gNbݛyW{njk-㐪棬G %XPRJ G;{r\*dt=t]*'i?~bZ=DSpid|2/oǰ UCE"\`M!@b/"WWEbbpq Z`/ʎy𲻘4:\`e M[Gyxݫ#ڿ ے=gQ\lXfg"QTg2#>_>תI{r pśGeq;ӭm 09ۺCyRWύ^5M;k<0֤[6Jt)GM\b:2Xtt a\ ǸS;n$ԋ@:߳vN Ul`A0\4Jk‰G$W~S%Uj䠊?(tL':Ȗ Ls}H}_Mk1G: 7H_v*=?-zܯ.πmWRU;:jڮqL9CH$uuB AXx%u)%F7Ј!}OloM{1Zgst ݼ{N- x/]SJʆ20|TY@'_/I6v_ XZ,nP4@6ּFHb!ʹ8bYZ(hU45^H=t  ^@3R˹9@"{˻S(NIΦ@&A`LI;\tsf&okM5srtw}TmS[UCNT,Tt8R1Ӥ sY`? ƅw2%|q;xV13`  `$0n6Er譇gqN|} ( Eq^`*҂I[5`kH䋃؃'~?Լ~2o J簼ֵMɋFK|ATI[cX-6߻.K.hu5zz+(XT=:j|'F53;r֜I"2U\K֊! {nC^Tܵr\wq~ѨU߷*QQ+#=*UΊ|HXF Y]/g#:D h0yDHrwCGT!E*,5&A`\IT7kەDQb롣VyMC"JC:dJ{:2KYa9A$r.nwD-^+nb!KA綍o+rn; ( ;4ܷkEmU2SQUb8JG8w,-|Af7x63au\Jb0A/ 67WI35(<%r}cG+iVbx! b'1{;d Q3lƻ@/ɂ`&N 0չjP-`,$ T|kMh6=TJ/;bd7VEmq[yHm@؃I7`o SRLğ"6JzMg||w] :O}7cu¹9=jVPz%8*=Jxy"&"Tf; Zio)kVhVXF4! 9mW?|9k~q(0գ[ĕ-M5>޴6}P&V v_.a%鮿\%ήINm.Ghy =k-"fJ2] RJדx9]?CW4;ZXԂw 7mVpp܃3&帿`:^8~=Ч?P`ٻ~K$Z^2!(_}騶Hp{&t#-d}ZHΈj`&쵎C}T' jQt$cZQSY!cgu Yp%Iha{OD&7]Ot솈&;~z`܃0M|ȗ{@B7v!{gEKhAke~zfQ( |lq6M{(aI g$u}tl?~a591fysLp ݗ#~{iMw۾~u=tS7DHCDa .L1?MdK03wotNt3@F<jqAk4?wrz># KI/s 94Yc` ALV:o<ܫ}ᒖn5cЯi=ԝB Ķ$cw*4)4}J:"K˿¹= ?.諾\MO(:o){j~F>j\Ʋ-/sgiir&ܧdF)N:/L8C0@jX]TӪ?8t5r2otgP6>*@qOv7{"1}҆_V]᮱Ǣo~nE]vu p&n1WOB@叟\toGpW65::!_QRB7PYLzSvտټJ6CIH~ʃ<ʔ7ifu[qT"D|#P}@ 'OWGnp3$9X.A ~r Ha { Mɰ 1nVRlת{h-A`4-A<gvBB eL8vaoWˉ6= LNbq5nH/sD ΀ .^"]Q]h1i$7h~c@37eN |X_r\)0hIK[R[/o*bٯv6}KM #$*;2YbT1*9  _p gP$C\cqY đ=zݗStSsUTI%I!Q)$c #B̽#¾'o0KI:Gw:t0l{q.`- AHhqW ;wzAm;١JYzLDa%?8#Fes0?ށ'J0tDbA\7IZfu󦕱$'uaxt ?r;W'Ӹ lm[ %;?aԘ ~D7'9뼑/=f07D[4v]xi6Ѹ(*UeOh1=L)sf7l:l> `q% sI_moz'up[2 NtܺE=Ҍ ĝV\j2>e&VNBm" E :?/HxljW] Uν 鴗zW˽-;}|xj '*D~\οhЉ OsJ\+AV#DF&ڡz$_xGR5l.5Amrd_<\Q'W\? I04åO{M\w@ chx]l{cTT}?Dp(17D2'\C ucI$CP3A& G|>G]] I1#7S-!7{?`F9tgY>C]{usAk t|i@{8k(n=#u$h6{ċt+gZe ]Q-%(ה7/ q۴@+hq QS*G\JcS!i8wxzMWVDC@٢4Dt[i,֞4m;`J)N#Xb$i#\2uU,;s кsaB.0&׉dit ;m]ߴx[*>7' n @V@|#Qj !v2krobu%t0Pjyy14 hdKe|}ɹ,ҙDFV&dh eaZi\5\.U^q!+5Sj6~7ݱ7ͷe6{ v,e@f%䄕Y3<9D;$mmX^m E쌓qvu\kokʚJU%M `HUTJ8"[O'S#S"4 Zu|Aa@N3&$:Y񭺛oC|xmUW:*B&4Y$1L-ea!ΛE=4^ntQrtdHӹX^{[7=[#qh(:X}2A2l`[Uk hLOqe @M]W/_(\e}X+ENIqaY RP1ֶQi~sSËRrs͜|ԭA *w[`:\,%.CI(X۩qc#0<^~o gCWpp fp#^Gʽ[j'Fa3S\iΝ%HbKtF ml6?f+ nnEֲN|T?v ?,ߴrŷxi4D(v$t+ \1~qg9hzJ*=ESIOlڲR6yeP^zfDQ'H/&CS-htX TP00TjmM5sI7Kb2{y`67 ))ܵ5]a]U!i+eW ݊GéDCA]b$]GVcoyn̹N8en!t;YvڜMiKꢋ&jJB&&p>Caتys6Z/y$uESIy+-J8/[-ۧGfmH$z콵.;Eg2DNѬ LfjM縤,T niۥ[P)2ľXbY]&=[_6HM;!p>Г5ju bE:M>۪Jv͹i)mVk 2+3#QʙXeZ3L.0l-iq?xѕD8ɐ!MP kەY+߸+j-/6mcԒzK4Y1eH5@W`zC.pbZ4$CA.$zUCu{9A:Zf-rzE*TVZZi-,K,e1t2\vLf'/~n 36Ŷ#kM,rw;nתq)d$MSDV$9= Td~r~||nH=?qE(.)ľd3JJ.ǧs^`7Tc:菾_}a6-0$M521֊E@ yT*b;0WޣM &<~6a߯k|~qpJ}e٠D."WU|]Q~08p?mX`=r=zы`0?S#DN.Sa$7 BFj3OuwIk= p304C12nɿ`ƈau OEk<ݺ+M=̏0 _s{A}dSL?tQDb\~=nJ]+W?:&JHĪM/vIjy?u?hh*wL"uAgrE:0z%8:6~Ʋ&o_ߦ8N u~R;g?O{ŵ7L$'W+ݠ$ P "I:Qc@79@+{v7r0i@7jOMR>M'H\}b#6DD y|tK@׸q0-]245t'T?V4]7]&PrN3; #%Đr4&:_q J8\+ZӼM4[(>9Ip6DA﹠(uMtd~d3uQJoAQ#a! =)ޮ#l0  se_NZ8T.GyL(MF[fΧZ(.N{uwq8`H *ׯ{( 0 Fa8]11PqC:eaΩksl MvLJ"] ]a7E[vwL)L. z}i N.dW7*褅hPN2w?{.I\pm"\+e :eh-T!&úنOeo{MGY h`zjxT)hbB5\Ƞz+`9g w8u\׼; ̘jXZ}Mճ)jZy)cLH*#`Z <=ޣ{蕸MhkDMkAz^׼wyz .ᨤZ!+\yE9Ral)iPª?sQ۶n0Z kO[YQ{T[(d۪&YGaQU0,YD6x lSO5@eܝm?#߾Gj/tݱoIK䣴7:D`p:GVH fe"m#YS4FH{\ŗTϿ2~4pQmBCX%)y@>X2۳fqm#a[kNbgK"B{ӏ,HVI SR2HgeC#o;tӠUm~4/8 6]+cltֺ>mJ T=:X^#GCq}֐;IX-8&s tcKHEį =b j#IKQB^Z'Tw9 WT4:Mʹz`5AIEߖpvQUDYDбgyhA,2U5.@a#k:đyp "@ؘ$5s ɜǴiƶ]Qeta=d+1 Յׇj^`~7s.}^?[CܛBAr$1-c AI吼M8G/7rA5EYʐ֠doua\ԍ7e"}k^ xu<:~󭎫mu^U_>۶ !C5{핒BpWٻ7jJM#]_j1X2$c;>tYs"/(nAVKl\m/hj/h$!TyI:|nf zg5*GbsEVmyRSiCwy/7h妡RmUSlpcNN~JUhf~[k{m74PN"p{wh<л:1fi$Gg #&Bg3 M`$LndNpw2oa"Os=WaMm*ll>9INcM >JhaW5 4[u6&fMG#_/u]K7>=-ŵ꺦>Cj89bfݡܯi ZDY&^pd֙%G%Jن۬j0+aIg~8X2_ÚXX㮺ۀlĞ&x '$EHsF5.!*92m增[_l'Zӻ2#LUAf,;iaZh7X-<*Uj_`x$*e]*ʹR7J~RS?H$4P3~{bELƃCuEoxGJ;`~@1~]uo [b>]QU;evª8`~:öޝcbg- fB7rKLI퓥8QV(OKIk~΀I9SἧpmYyez#y'TA,԰1\n'%5`^ngoNV6M#j v1vLC *zrză n8fRyԍq=e;KX:H#@ 77f-0"m*iQPQ$wDav 2g@A(x!38awHv} "gTv~ :&VCݭ#dW1' aFE_ZZ1B4&8 ++ px?nnGSб]v#EweެߋܑA_w!Q '18n0B7~'4}~I_#S\&AO]Cc̒/hAƘe{a;vfSjSv!u=eaMAy6PZWiۇu9Ѣ\QƇ6Hqn(-tf.%=gL=i_db! Xj>_]vtBl uǝB 1' U( }5=j4ƌ 1]ԓ g4Ɓ:$v$JT~DKHR~ pH貙6~43~Hڈ't+Յ9 gw?;pKb]jqٶ秖"Ku,e`~w~ry -oiZ]h[|[sWo[8THKa1 Nsdtd -c_K7ܰRoQp ODO[dÏu[%w&хOޟ}l'C`Tgn=ʴKSL؅t"t$GE{- G5eKE,J1#"3w%2cWklJ[e+$ߵ42T!BylC%>'&9|@?p }EmbOhĴr"蔃,cC=j_omn_i<ͦ]uKE=(uQ@#?2Q0e :Ze I Y-. :L4E0.as!w˕mlU=E}:j*EMD1M5/y6>2 +%_jqD mAn/6xdsXoKt֪[jw9M"`'Q ]ë=އ_MlIhr[dݼfۣo\xVBԔXJ==Fa%WJԱ"\@+Oڲb16 'vnY)mDn {IYʪ'0R e+4Zl7לqOs؝mmmݸ+o~/孙l6UmLXXT큮bf2gRpnacm-!O~(nYvwUNRA}=C id$E W9g` Vd:㓋mHq-u~}wh\hs">zވ\]y|itcHwk p&Ҥ[M$.`m'e 6n.9WۭbXٱv`T:t0(mF0x*UjH$m@E۫|@l]jde6s4KL(f bRǬ0VqU!ϮOh'_Z$4d.M.ٹ(l]UO$ BT.E04l@ ($Tb N]y 1o I\_8n4gF@jw7fݵϷrOG/\=tձ`u ?B\AӘ؉?{z|5iRivrH;zmÔp_-b8T!*H[οi]Sh cwKmOB[su%׸m=$5Ex6Fp _el=3=RԤ5)-;h6}JTJȕ1Ԣ~&a4}dԯ @:[c)"foESYW3QV#]ԓb7p0 "'1??_IZY)1rGl=qPѼ.9> (!f4{#B!nRTžHR١=PҗOqVQ g|Jcx%{GИ*%ʒ|1!>mTk~O֬U9 [ogN?F[i.ᡁ&&и: $B;iEu9|-GQ#PRTn=cC²'bPs[#$5{cGPFǙ5xY)E &ACtЕ]t&2oͶ:F=t[@@9kl;,ФHQKBo`;TO'ڡ9c # HM ~tpCqtGirW9aDlq4%$fY\jxGd`^WGaeoi2,bi|VqlfLUmt9tYƽB\*a3zR=?0FFG2LJ6;It|cHH)PU \qSUg%op Tɓ.qƉö.@(aVԟJ/x/[7KSuw?_ٮˆCZTctFR \*"2N6{_s];bq~g^ _sVycRfQ{F={'QTFXu1΋dj%usf:FICedΖ%3 !lއCʾ9AoOM s$:>_'Nĉp8p䘙[]7;^㒦7fu#ct]UIL|%G QĽ~NbRѪS.hoP?M+=Ĵ6m2D lls Y+u_kBZwی#^ 8U3TRL8O7$[XB ,`lQ#Eq-E*;dZK ĻkP$nd_x=XZۥ5\]%5)hĐ)P8T@U FP(+fC[̚Y;L }>zHc Lj72Zy2FyгtlN>i%Rqb,^8?h!FۭsqS%+POc|=uHe%/!p]l F W#XY 22g\{*|J*bA]*-r`|~uoku-t{sVf#) D!T`g4* &;}b3KJ6~ŽoOS=dHQL+L TD@JUda^ĈtMR<ɍ;ɷ,miwa NP-Fs#㤠l0&/xƺ&΃p ⵨jl^]ljEDWm 3SSw԰ (뫆,'#6/5w=,>WhܜŸd[MmT0t2Lfi.]&.:}W@հi zu{ETm?Kicxnk+ꨕ*g4rrE'U3L??챏h1TIv qAZ]ª~PtRAAb8, KڼD8?Y5ii%EY]֓rI#' -7+P[v;[1IYPX^4l+%) 2v1Cqc\,5}yię]kXi,\)k.PÜ\C cZ\ Jޮ$h4T20=XOOo }[j{_L-0'Bj\zkjI7>~ƹ,i1Tr lݥRDc}k:,=UG }eyVݖURK;]k.Vp͖}߻õnŝQ UL9'sO v+S5ڶ)Wڣq$y#ս/H_1.1zVvJn\v=n9l,+5CMg;duQȡԺ9Rz'H0tؒzj[WKUƢZ1O#~2s~_Mf Wo{V1ͬgUn0IL5-w1 ( OR].7uY]wmdӊZ !^?#uC!dj1&lL?:R\R8QÖS15Jl_NkYewezjчPC88?m%CL;sSx&dzzXg'>T`ju}̂ם.QTi$` ѵb}xq˧.JpBh%{ 姩& 4\}Vr'2{Vc?:'-LŎl彿]l%$FOUmh蹙B֤獺"GO?L0O%gwy7ZßD0S{<^G~ӌ%a툾MUvVde@>cW?f{b-`=Z~5}40Vὲl d 8 ekD*@ -LKH=$_DY*Tt.c 1(FʪƜ0 !9rOPl G2psaxO9=V5p ;yr29i3dH)J $$# `}4KLH߻FLupw=7: ;=1h$p}e2ez2^4!+MX¢ڐDV6 rϯP8+E UB$Ҍt5/a۱'n#T[+_7#emi6[e]USq:IU,\F{` ; c/n,$' ^IW1r[Iđ=J,A$]2Xh!jZDl"!= 7?|6 3?rƷԪ\D*_B '15^Cϧ[N9Xղ{D8ܪ$CD7XV;UM> )j`cQh2{?=G:rF{5z$gN : $ ~gD8B;t}{ZfȄAҸE^RL,hPMeY=>HCdl&a+zy"h_ӌrGc;k&&2HN_:ߴI[L)$W'{cu%3yibGH}2s2CMmtuez rz=3PCL\N}"3TFTI{Y? zX/e`q:lNOlwӖ:N xCz}4 bCt7Q'?]V ;,P8:\βd ΅Luc*9˞n:|l[*TRwc\UJb@+d˘WRFQF;~msEhދ;Y5ܕUE4$x.1{ggWQ~S&LqYS*nvuc \EœE)O!/ϠjHNIb; >T3^aNcuc'/Ts1N4L%)tĜDUF] +iMn<ʖC{iJV$~?=:7=@C1JD&Hb2) 2~:[ZM|20 =5Y.OQ$gzz7;'Tc$k\Wtt hǮtS{*iX,F=Vdet_9Xj$e@Eۤ@)-{N/aDl(kjJTLdfP>ݽ=4ib&ha7 \)$V9MFT #:8PN$з߷QUWeL\N*u#%>##bƀ]?}6pMS-E5Ž ;{H⬰M b:,B%ɃqUFs ? e[j*s(ȒT @X\`>G*D\Y\}2KOP#|zX,ΫqE’-]nZZ#pJq2 O箷 LinKDv)-ĕiI$/z -b*/Zj(nQYv PcaXb^=ozNXf%5;Xj9K/ìjzlݯ?.!XybT@gNL#촺nj 3?Q3?:\Sz}_<\bWw@p;|~"cO=MHz,5IE VBa>Z/%ğUc]+;Պ42G95:Uc+Y)*9xa"hfV=aNnIyQbT~]XE".1=E{ ߪg,`pqˈ 0^\ҖulBffʠznCQN>5X%ӿN+zz{b mdT:%L䓀>}^iPdP)" OYS+~**4 UjDAP=sO\$2FV6Y 21/窼[6T8)$>{y]?Ϧ?x֊$ &f EBRݦj "2dc?o}hɘOb2Vv#@# |GScaeiqo=0cVo0A;n3*qVr޿VRŀ;"5_932C uaǀS x㦆8oU'8ʘJ JRI A^ҝfAV*x\S̎".D lz8ň+5F@Y=,V3T}PgF`UP|ُtMKxvĘP}rA?PcDH/K3UIy-SYP!vBLc d-;qfu*3O. Iqp1,d|zNpt-ip5=vZ??Do{`G} nBuI]ٿi42?]84Ps$:m{;~H_^WD {=5 v3r,A̟߭nSAvIHCk媥jkʐ3IapJ-XX p|QbX\|HM٣"'m%ooBs,$|G\smSM,G#0>'':;Ī]>hNo,tjP=JOB IbtW)/#3XZ$:̏AdcAW-D0Af]9'o\da AcЙ)⪆FPÀ;sqM*mPࣤS檩 ^gV*۩JCO0u )/t-ӶEugʝelP0#?Nym+5\9Q,6 #"An;~4B29R02s?LJBڼb?']Pa̭'r\RQYDe13l}>z[KR]qʋ=TF2B&`N18+n -FyY"y^^Oq? $z2z&f]n)EtA/᮫I<-LYdFOUJim]cf]Gh7T&t13ZQ[tCkd,J2N4IM^ɷ!_5zY;M.qAN4C  t7"@X;B8 Pꓢ"ODBF=HQ;%s L.{][QaX\d}H."!p\ A120"ø-&'E94.:A/4 5Sv]ٵP=5De@n =mtB[宊V;,IyEͦOe+z*I= < J2!,A#>c%EUAO`Iڼ=XkCTEgݿ_* befEB\c![5[* SZă` 巧ӷ夨pDy?I9'Y*-7GL 1w_˄Qo7;P̌z|Og'e^W RWRcDi#9>o\uz<UQ}Z 2\v#T8Cn4q8l QuH ME" *7~m"R;kA[Ls ]d%<q8_]ZǏ+`}m,z㥜dS_@2}{ MbHcDȼw䪞5:T\=Rd" Y[UUHB"(ϡ9ss20\$`ZYL@R \ Y?D>' vBYZsP'R^"W%e=>=9:5nq ڂ.}d%S+׹:;Do2y}t&_n*;a_s4\qz&VK@"L?CKR2@5SBӸ`"O*Vw~nrpdvi2$E8Uo0W?ب+V# z /V0ՙ哢ȀūoWAAs5@ժ|%Gau8(W~;Th)I >5 Z`k!5aYy/ԯ_O-X0gO5Ӆ7x?Vxe]I|)% u |k5?Tʥ.~ (5c,KⴝgRxocRSjOiLk0]ʊW,X֨mv:GS`"=PXuGpISKePWAHj sjϯM*zɨ& W-fHf'ǿU9ɒ臄 e2$Xԡ"H2=jӊH#8zsmKf ?_ߩ{Hɒ (6阤.i8|쁡LG~mNU08?Onuw; D)a:c: KPMQ*՟=u[또ЙZMFyxi%+㨒}~'5TquwӢ4i̓E(ikR<`}S^`S7?~5Y]qRnzGoBTZ<y.J7K(8+5i!b ~?K$U:*ӌwWGߪ"b٣%{>QD{k_!] uE$&E,;:,d֊5\-FFXb3:,5O ~:Ar~]r .t]Y.2{u|{zMXxJ,6e]bƝ7?$wg1u*\YjT19:'w=ڠ:SJQYq` E*/DUQ0GjArxO F+QIoc3 QP ~0ƶ.>]mfMʎo|i]/T ٗmCd䗠J$`=~^gc@;d(?'Ƴłt(:ÓG9A8Eү OU;F_U7{R30:,)sNTcDF;}>jԑ'!4Xz=<#@~:I46{m s2ZcН+Fo1WV!Xf5-{]/}hJ B*H!!\dctİ;V()DdD/}Na1ڕ^GEW/6%9% Oj~Jwm?ע۩iXHs?|ӵz)&Q zxkh1GL΃Uj~*K@1keo.z=aP8L:풀" OC:HEcӶ1DAvʀcin,\$=9J j.xVgԽN!RTz@ϡ5)Fl?1E2X:HT}#9ʖYu{@V'Ү.=H 1Т{`:B.O'q"}瀾tmk|DЌqdЈ'# Oǿ0PܥH$cڠ^RB?ޥ #DW **ս mn"{" O9 yE΃*s@ C^Qم\S=}N)]!T_p2_Ybn D3!N:zs'Q1ıG HQ~Vl}I18mDh1{ʊt2U[* $yAXS-n@uQpJL{HRc @,F}~84VBFܴPR*t:ν~#H] [gT25V;+At3!(\q:&jpBqh'@. רz:"nk=^1>(<͡/cVjJ'K*z`v=VJBl+z|w=$J QBc=}>u(n臍a(C1f.ޚ`](*RW-OB[7VxܪkIjCd ܠ^J[LG YQs|$:֬}\ƒuVՅΰt_T'?LۈU)BXܪ垣SpQ0*;t t@I001tr: Mxz9ƪ-h0UfVD.sL@ YVAJi.{Ħ $s/LT1`LNݽt]Vd!DZ:74ʿu}iۼF,[9Kԑy͏hƛ'gP߼ +#st=Q R'L\(p*7 l Δ8y~_CloTJs\=d A(DǴD9'hgp9(= 5UȴYF7yJOox5`-zAPX'psmeMG>V"JjH$|~Zls'a}6H) ģXsfV'˅-rӚ 2Oirq:!ȸQc:HƃOnhm'%V~j:UK̀+V: =[_3$a3 u8 vh6YLbQhO?}5kW 2įct]SM'B|}tƁREp\`HL!T y5[p2UhH(ۅ!_+'V~ciۈRy rn^'K)@O^q$LtƮU[xWVt[Tj`RNz?}@;V'ru A! s$~6;$Y%n>U1?NV22uK{n:<`lnn ;wRrTo]':.nl22JwIUdA|^L Ijގ:+y{]1JŏlXd3I+}!^2lU=uDT.&$Et@U|##LhgOޒc,W}ThCs=*4 dIё[N'V7، HA UF/a?u=嗾K uZ2kC`CPb@7Z{-C;MM2c+2opp{NWT3Quai>4 k$=% <C}P)G7PY8{7mC2PH'(Ry T(J*+,{vP;mHV5'_.k#1!T[:-Jh5WQΉx"JxP8d^F>~5DXj`T"Dz[$1n/HH&$ޠML} J|i^D7E@]zTu3=>s'FTu*Z+TFF>Y@\ym$X?^ޚV/ꑍtvuj\'x>'u[ٛUUyW#PD 4r c #ucE )H˫K'=8uI6FSWq/모L &;=.Peu=s&USgJ.B̭Ǫ2CH=r5u:"tX-mEE2U tǯj8˔ z7aZMItD^13W ^ 'UPb,T`rϺ"[go=PLs43uE6OX9\d}> TGs'h}fկw`? %5Tj% :; PN+Xރ~JjtBH 3D`7}MS0.ܜtj]!r*g+](t$ D(wߢ5Pi.$' BN )?xuX(o}0pH*+}[9'EcY:I_$:d&7Cj4MQgP@D wg 0yB@WJ:~>ت۬X)?_kXHfoܮEuY@Ǩן8{{8+hyg sZF%_/*DzD/_ƴn1l6HOdv$5<'kDQUc,e89IEf;ZW ZF %8Eđ{ѪNY "OF0{~]x$ F8U،~2u\B7ETe1㾀 #P`߄rAhh&" T:GIUr8a_O7& SƎ탏3AG,V%;7TlI.?tu%fv?3ӷQΛ  ]+`I#-0=?~ʨTJU ds:w8jlzFGUpX"ҫ|#V\tǤ~9 v4c/W_4ȝSҫ@:muaDIC%l o}F}pBYn=Lli\LKWT);RGkݛLPZ"1:T[1z0,k'Cא!def=Lzqt!9=h"IE!UVŦBvQsH2q,ڵylcZoͻ)IOP 7ǧ} k VtadyӜ_d¨Z @J`{g d黭;HjOx{' ~}>#g~{+SpA9?j +\kTXEm!)V$i!QQ S_(ޝqU 8|{dFYB 2zF?u=ᇗd;~;1 6GŷR̩>>LC<]np¦FW]A]6KD7J|0P̀dc@:=3Hj$øJN6t=(ZF P@3h LY]nA+:SXLHP8Ο0#~ZwUB4"J!F@@P6/ڤ Ƨ8s?M7 .}C/t'xRz ?L:-s@N *Z ϩ8oG4(NMX&NW|Xʄ I\Ձ ''$}tsnSȶX\(aՐX]C)f&̝ 3܃!L }5at)ZI ֊H&6),ug2ON?fV扒! =L' ЄjuUV#f2" tA~C4 A9uHU9= :c_rD+zg>W b6ܫB:d @= 羪ualHMZXI+#h9R@۩5Z8=L!6BQsMrT$ Z >jnDC~+Wg#>gT+􀲲VSTc9n|M钭{@1pzOWzt*sN&#%W8꺕6Cb#b{|43,-W]÷Ս@0UGop?3+]{BRCtt{ձD+&2z}FƼ+!{JHC{4n95!!tIz_d ǿZ]JhB$T?_]6WC'+?WK:EjHVM8ŸdP)$?:"&a{3M=a妥qmR)Yn䆊A[LXpVZ '}3uW8:JFT;cn";$5Nn'hL(ӽZܽ-ꤜcm(4[X=3)2I=/,`k}6qT|-V3*4V0 PI7OW BGtL344"yH|5ZRtTh"'$;zm/o#t_ecsbB2|; j6rA?V ږΈ9n]D0Sl6J:>יQ寛'$A$}>Z[Ht!{5WS2-tذL2{e]%GtC4LZ9>]>.ycDMST{mLJ*?v|]~? 7wG88b_O}> r,>?|昄s>>û%@ ^~h8:b>OH=|XE'Pݕ@'_LB 1`,G#u0Â@R}1/,D睃3"vbmg J$-*U!N?^E2d7Hjڗ"9 3A9D'Kzve?]\.aWnȴ {Aʁ-GjSx'E߯lT/P8d'"*W#Vʋ ;1`G~01jˋ- 9 ?"qBCb??,# !$`Ҫ^QĂ(bM<גGh$t؏Y*=zҚjK"nv{O8yM,B0 5Nam9?S!Q0 :>B h2d? _ -./Js}V@:yGWsp Jq"xbN; F!`EM8f ~ǒmd =uMetu #އ?\:MIxh KJ#_=CbofUEX@Q %]V,\̾ #Q"=j'M>j[-+SJ(;+)סbw-ѵꝴݷꎍ>X =8~9V4K$ p-ES]bt8z4lR`$f %"IBA}~^uK#xF3۶~PXEvH"}?.WeM&yeAOEE*ƭe%:si7- ֍UٰUFHge¨Q+HeH+,đuN8l~ʺETW>A h $F2,Dv4ZAll' v̱1ncԍq 6mzLLݻuNL<;DoDuSM;*y&nx3z tf"j&I60:&VGR*V`:Hk@%iFĮzil d*)N0¼x?"=BêURBps3N;GRJҊꦧ"Tr#5R/glJdRg~s~zS@ `=?!pA#T@ 06mUzxQ"*.\|j?YXłp^8|ՆEbFH"2 GN$[HU:7/5Q{>@u@BVu,~<@l?DnJ(_|鋆+O eWO듣NA"Tª%bCtA4뤭Gn6%Nc1ѓ`nE 0.TD?DmPQQ@Ue/" H&2'=/?h KZV&U.'p?O#V& c=fa6ZM^ɳS !3wΝl-: ܷ KH(O%aզ~X}4z&u`G\v|OԞ>B AMEo2U|cx)A<tzs`PDUꪡW-ӎ3 w?-Tc@nnXInǨ.N3}41sdºR7˅ }K4͓v MpъgPr?oa].R.Ua.UidN42 =٥&`iɰ@ h_#_ P{e (=΋i6? udF`:r}}t gdi7 I;(?];OI\+'=DuKnUU)Υ \gA#>o "@VEȪc!DSQ^2f[p-_CHcRbqj9F澐(U#:/dILJ^2{ ͌K4NKIT# FG:`I0DMS=4GI?]tHrEE yq 4uun)r3t2#.nhFN.nQ sAcՎf[HfHI0`~Y\ַcuOQ8fzb`JW4^]Ra `v҇'!!bTw9?`:B'-Ԅtŕ tED`AVbD.;@5T:' ad"Kq]!gUޡ?5(d\ QS) C]3KAKHT8-AvU8UE=?uT{rdnS=`#TWiV>6ԏ_MP~@ԆS1gdQS/@#TWkPۣy#P5yRS2GFXr[ 5L Hd#tXhe1@|R&U:V(j5Ҏrl̕g5`)RǮ#Hs ̕u4#3y+.5D*M$؜~Z1 5WF$K&q0_h9CFHDuesFT|>_-n`_RQY?I *)PI@;Q`B\ h4V`"VM9hӃqCN`J0 [-R-"T,&!Y)v_/L $I4rB:rcfo@>:Bg]?5M')ӎ!9&Ne6CQĢ ?6-d[_T& 7AAI1bDLR4s73y-v@i3pT 6b}5:ni%TT9ƹ{u~z,Ir6Xe1B0,!Tz-cH.豮U=Su0u1*19'Q \;U^eo9Dr9!Uc@1~L撲PIf~?4jA l ix |9 &R־80ќWʇVk8E u'm/t 1?DK#+u z7t(#fBXX4݂JhWܷܳs0Uu8#(:/ :N(UG7֫S8W1S ?[#~ZC* T:#HaqH()[hMs'IRcE$0@h$p$ , :O@hɺ1O"EOF|ۜ Eֲ%/9zߝXiU$e[bƕ KBWƓXIFqCd4[!2€{c׶+2c$$]mMG8k2NI¤;g4P):*KӸpLĂ8a]1ҫ>M8Jj00f`D[6m|D3Rgi׾;\ɒМȫSu ? ;1OE=M&͒SqP`;!L1&a%~ivQ8x+I#OI?L#tUs9I4DBpsNuDK*C:!v}I&dISL~_=@3$'qJq%(21՞ib驺e@N8Ӈf[SrHG9S<̓XY:<.;=GA+Ae*i*e=*>~ztS*҈ź}p@!@wD4oieU34#T4,L_,~ZrA17VcU I?cFMWT#$si1Ryp,G~ZCg'0#n8!hF}L&hLh7>_Me$vESy$HaUA~jR=զxrSڟS]&ڄ%E('_P'&L+^іwBίw^>]&m # f=k<};j~|Q$+9uM&=tM *eTz:p*&Z\U#uDIKt%9,ZHeHOO`mZ 8A#v?.; O1hk3Je PCW;S}4K`ʭҲ1՗ .5IW PUhyJ=5HuRL23Ov2\ *{HN3]6sqjhTL[yqgQKA-U CԌ0>ULi\ c YufPF?-[2J/Ѻy%t!W̉wlL  H8T*nLY4ZJ BdG,5Ob${}s;n X*,A$~z4{뻘$AzxUЅ=3beBLޡ"UZUL42f$}(2;/&0Ǿ4$JҬFJ+z &߲0#ݚ08nrK)",QT`nU"Ttq,+ 15mCm10QotC=c\&Z)5:B"䁎 +Za5 :j4QpcPa'B%D1{h6A7+eē݆iHs-R"QN3ƀ-#[+ U$H >!;%hOf*%{?MPU}/5~Wb4v[}Tz?1u kfF{"/uEO/~k)o!vE_it~HF#=D߄kU/0X~ȴ~N;~G⿘յ|==)bK_PjO]\TS r\꿖fuSZM]kVx?zQ^ODoO?CGWT@o/5s&7G~5O溩f/+ikKuoZ?_VcVk_?tz~?C$~OwoOίvRRW} <몇u?)T~ZǙz]y+~ݧtq ]? RX*o_S4>߉I}?EH[)zz7!?fX4uVq*T}.u폇负3?T.|T_=`vCS螏[i*3]R#}TD}GtJ.ވ5C.#KеڭqЬݏ=YWej}uJ_gmUOT_7[ 5?#B/Oq4|-MBIVu+(-#<5_/Tcy:QM_EЧt1V&hOJޛ[)UxȲ]+YK?8JUpandoc-1.16.0.2~dfsg/tests/fb2/basic.fb20000644000000000000000000000251512645626061016245 0ustar rootroot pandoc<p />

<p>1</p>

http://example.com/

<p>2</p>

Sometimes.

pandoc-1.16.0.2~dfsg/tests/fb2/images.markdown0000644000000000000000000000056512645626061017605 0ustar rootrootThis example test if Pandoc correctly embeds images into FictionBook. Small inline image: ![alt text a small PNG image][inline-image]. Paragraph image: ![alt text of a big JPEG image](fb2/test.jpg "image title text") ![alt text of a big missing image](missing.jpg) A missing image inline: ![alt text of missing image](missing.jpg). [inline-image]: fb2/test-small.png pandoc-1.16.0.2~dfsg/tests/fb2/math.markdown0000644000000000000000000000023112645626061017257 0ustar rootrootList math: - $E = m c^2$ - $A = \pi r^2$ Inline math: $x=\frac{-b \pm \sqrt {b^2-4ac}}{2a}$. Display math: $$\int_a^b \! f(x)\,dx = F(b) - F(a).$$ pandoc-1.16.0.2~dfsg/tests/fb2/titles.markdown0000644000000000000000000000024312645626061017635 0ustar rootroot# Simple title This example tests if Pandoc doesn't insert forbidden elements in FictionBook titles. # *Emphasized* **Strong** Title # Title with\ line break pandoc-1.16.0.2~dfsg/tests/latex-reader.native0000644000000000000000000006307312645626061017713 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",Space,Str "MacFarlane"],MetaInlines [Str "Anonymous"]]),("date",MetaInlines [Str "July",Space,Str "17,",Space,Str "2006"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [RawBlock (Format "latex") "\\maketitle" ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",SoftBreak,Str "John",Space,Str "Gruber\8217s",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,HorizontalRule ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embedded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embedded",Space,Str "link"] ("/url","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Emph [Str "emphasis"]] ,Para [Str "Level",Space,Str "4"] ,Para [Str "Level",Space,Str "5"] ,Header 1 ("level-1",[],[]) [Str "Level",Space,Str "1"] ,Header 2 ("level-2-with-emphasis",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 3 ("level-3",[],[]) [Str "Level",Space,Str "3"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 2 ("level-2",[],[]) [Str "Level",Space,Str "2"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,HorizontalRule ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",Space,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",SoftBreak,Str "list",Space,Str "item.",Space,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",Space,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",SoftBreak,Str "looked",Space,Str "like",Space,Str "a",Space,Str "list",Space,Str "item."] ,Para [Str "Here\8217s",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",Space,Str "*",Space,Str "criminey."] ,Para [Str "There",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "hard",Space,Str "line",Space,Str "break",LineBreak,Str "here."] ,HorizontalRule ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "E-mail",Space,Str "style:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",Space,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,BlockQuote [Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,Para [Str "A",Space,Str "list:"] ,OrderedList (1,Decimal,Period) [[Para [Str "item",Space,Str "one"]] ,[Para [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"]] ,BlockQuote [Para [Str "nested"]]] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "block",Space,Str "quote:",Space,Str "2",Space,Str ">",Space,Str "1."] ,Para [Str "Box-style:"] ,BlockQuote [Para [Str "Example:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}"] ,BlockQuote [OrderedList (1,Decimal,Period) [[Para [Str "do",Space,Str "laundry"]] ,[Para [Str "take",Space,Str "out",Space,Str "the",Space,Str "trash"]]]] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "nested",Space,Str "one:"] ,BlockQuote [Para [Str "Joe",Space,Str "said:"] ,BlockQuote [Para [Str "Don\8217t",Space,Str "quote",Space,Str "me."]]] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,HorizontalRule ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}\n\nthis code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,Para [Str "this",Space,Str "has",Space,Emph [Str "two",LineBreak,Str "lines"]] ,HorizontalRule ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "tight:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "tight:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and:"] ,OrderedList (1,Decimal,Period) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Loose",Space,Str "using",Space,Str "tabs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,Decimal,Period) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog\8217s",SoftBreak,Str "back."]] ,[Para [Str "Item",Space,Str "2."]] ,[Para [Str "Item",Space,Str "3."]]] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Para [Str "Tab"] ,BulletList [[Para [Str "Tab"] ,BulletList [[Para [Str "Tab"]]]]]]] ,Para [Str "Here\8217s",Space,Str "another:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Para [Str "Fee"]] ,[Para [Str "Fie"]] ,[Para [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Para [Str "Same",Space,Str "thing",Space,Str "but",Space,Str "with",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Para [Str "Fee"]] ,[Para [Str "Fie"]] ,[Para [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Header 2 ("tabs-and-spaces",[],[]) [Str "Tabs",Space,Str "and",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"]]]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,TwoParens) [[Para [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,Period) [[Para [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",Space,Str "starting",Space,Str "with",Space,Str "4"]] ,[Para [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,TwoParens) [[Para [Str "a",Space,Str "subsublist"]] ,[Para [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,Period) [[Para [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,Period) [[Para [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,TwoParens) [[Para [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,OneParen) [[Para [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "Autonumber."]] ,[Para [Str "More."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "Nested."]]]]] ,Para [Str "Should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "list",Space,Str "item:"] ,Para [Str "M.A.",Space,Str "2007"] ,Para [Str "B.",Space,Str "Williams"] ,HorizontalRule ,Header 1 ("definition-lists",[],[]) [Str "Definition",Space,Str "Lists"] ,Para [Str "Tight",Space,Str "using",Space,Str "spaces:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Tight",Space,Str "using",Space,Str "tabs:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "with",Space,Str "italics:"] ,DefinitionList [([Emph [Str "apple"]], [[Para [Str "red",Space,Str "fruit"] ,Para [Str "contains",Space,Str "seeds,",Space,Str "crisp,",Space,Str "pleasant",Space,Str "to",Space,Str "taste"]]]) ,([Emph [Str "orange"]], [[Para [Str "orange",Space,Str "fruit"] ,CodeBlock ("",[],[]) "{ orange code block }" ,BlockQuote [Para [Str "orange",Space,Str "block",Space,Str "quote"]]]])] ,Header 1 ("html-blocks",[],[]) [Str "HTML",Space,Str "Blocks"] ,Para [Str "Simple",Space,Str "block",Space,Str "on",Space,Str "one",Space,Str "line:"] ,Para [Str "foo",SoftBreak,Str "And",Space,Str "nested",Space,Str "without",Space,Str "indentation:"] ,Para [Str "foo",SoftBreak,Str "bar",SoftBreak,Str "Interpreted",Space,Str "markdown",Space,Str "in",Space,Str "a",Space,Str "table:"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],SoftBreak,Str "And",Space,Str "this",Space,Str "is",Space,Strong [Str "strong"],SoftBreak,Str "Here\8217s",Space,Str "a",Space,Str "simple",Space,Str "block:"] ,Para [Str "foo",SoftBreak,Str "This",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "code",Space,Str "block,",Space,Str "though:"] ,CodeBlock ("",[],[]) "
\n foo\n
" ,Para [Str "As",Space,Str "should",Space,Str "this:"] ,CodeBlock ("",[],[]) "
foo
" ,Para [Str "Now,",Space,Str "nested:"] ,Para [Str "foo",SoftBreak,Str "This",Space,Str "should",Space,Str "just",Space,Str "be",Space,Str "an",Space,Str "HTML",Space,Str "comment:"] ,Para [Str "Multiline:"] ,Para [Str "Code",Space,Str "block:"] ,CodeBlock ("",[],[]) "" ,Para [Str "Just",Space,Str "plain",Space,Str "comment,",Space,Str "with",Space,Str "trailing",Space,Str "spaces",Space,Str "on",Space,Str "the",Space,Str "line:"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "
" ,Para [Str "Hr\8217s:"] ,HorizontalRule ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",Space,Str "this"],Str "."] ,Para [Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",Space,Strong [Str "is",Space,Str "this"],Str "."] ,Para [Str "An",Space,Emph [Link ("",[],[]) [Str "emphasized",Space,Str "link"] ("/url","")],Str "."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",Space,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",SoftBreak,Code ("",[],[]) "",Str "."] ,Para [Strikeout [Str "This",Space,Str "is",Space,Emph [Str "strikeout"],Str "."]] ,Para [Str "Superscripts:",Space,Str "a",Superscript [Str "bc"],Str "d",SoftBreak,Str "a",Superscript [Emph [Str "hello"]],Space,Str "a",Superscript [Str "hello",Space,Str "there"],Str "."] ,Para [Str "Subscripts:",Space,Str "H",Subscript [Str "2"],Str "O,",Space,Str "H",Subscript [Str "23"],Str "O,",SoftBreak,Str "H",Subscript [Str "many",Space,Str "of",Space,Str "them"],Str "O."] ,Para [Str "These",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "superscripts",Space,Str "or",Space,Str "subscripts,",Space,Str "because",Space,Str "of",Space,Str "the",SoftBreak,Str "unescaped",Space,Str "spaces:",Space,Str "a^b",Space,Str "c^d,",Space,Str "a",Math InlineMath "\\sim",Str "b",SoftBreak,Str "c",Math InlineMath "\\sim",Str "d."] ,HorizontalRule ,Header 1 ("smart-quotes-ellipses-dashes",[],[]) [Str "Smart",Space,Str "quotes,",Space,Str "ellipses,",Space,Str "dashes"] ,Para [Quoted DoubleQuote [Str "Hello,"],Space,Str "said",Space,Str "the",Space,Str "spider.",Space,Quoted DoubleQuote [Quoted SingleQuote [Str "Shelob"],Space,Str "is",Space,Str "my",Space,Str "name."]] ,Para [Quoted SingleQuote [Str "A"],Str ",",Space,Quoted SingleQuote [Str "B"],Str ",",Space,Str "and",Space,Quoted SingleQuote [Str "C"],Space,Str "are",Space,Str "letters."] ,Para [Quoted SingleQuote [Str "Oak,"],Space,Quoted SingleQuote [Str "elm,"],Space,Str "and",Space,Quoted SingleQuote [Str "beech"],Space,Str "are",Space,Str "names",Space,Str "of",Space,Str "trees.",Space,Str "So",Space,Str "is",Space,Quoted SingleQuote [Str "pine."]] ,Para [Quoted SingleQuote [Str "He",Space,Str "said,",Space,Quoted DoubleQuote [Str "I",Space,Str "want",Space,Str "to",Space,Str "go."]],Space,Str "Were",Space,Str "you",Space,Str "alive",Space,Str "in",Space,Str "the",Space,Str "70\8217s?"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "quoted",Space,Quoted SingleQuote [Code ("",[],[]) "code"],Space,Str "and",Space,Str "a",SoftBreak,Quoted DoubleQuote [Link ("",[],[]) [Str "quoted",Space,Str "link"] ("http://example.com/?foo=1&bar=2","")],Str "."] ,Para [Str "Some",Space,Str "dashes:",Space,Str "one\8212two\8212three\8212four\8212five."] ,Para [Str "Dashes",Space,Str "between",Space,Str "numbers:",Space,Str "5\8211\&7,",Space,Str "255\8211\&66,",Space,Str "1987\8211\&1999."] ,Para [Str "Ellipses\8230and\8230and\8230."] ,HorizontalRule ,Header 1 ("latex",[],[]) [Str "LaTeX"] ,BulletList [[Para [Cite [Citation {citationId = "smith.1899", citationPrefix = [], citationSuffix = [Str "22-23"], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [RawInline (Format "latex") "\\cite[22-23]{smith.1899}"]]] ,[Para [RawInline (Format "latex") "\\doublespacing"]] ,[Para [Math InlineMath "2+2=4"]] ,[Para [Math InlineMath "x \\in y"]] ,[Para [Math InlineMath "\\alpha \\wedge \\omega"]] ,[Para [Math InlineMath "223"]] ,[Para [Math InlineMath "p",Str "-Tree"]] ,[Para [Math InlineMath "\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)-f(x)}{h}"]] ,[Para [Str "Here\8217s",Space,Str "one",Space,Str "that",Space,Str "has",Space,Str "a",Space,Str "line",Space,Str "break",Space,Str "in",Space,Str "it:",SoftBreak,Math InlineMath "\\alpha + \\omega \\times x^2",Str "."]]] ,Para [Str "These",Space,Str "shouldn\8217t",Space,Str "be",Space,Str "math:"] ,BulletList [[Para [Str "To",Space,Str "get",Space,Str "the",Space,Str "famous",Space,Str "equation,",Space,Str "write",Space,Code ("",[],[]) "$e = mc^2$",Str "."]] ,[Para [Str "$22,000",Space,Str "is",Space,Str "a",Space,Emph [Str "lot"],Space,Str "of",Space,Str "money.",Space,Str "So",Space,Str "is",Space,Str "$34,000.",Space,Str "(It",Space,Str "worked",Space,Str "if",SoftBreak,Quoted DoubleQuote [Str "lot"],Space,Str "is",Space,Str "emphasized.)"]] ,[Para [Str "Escaped",Space,Code ("",[],[]) "$",Str ":",Space,Str "$73",Space,Emph [Str "this",Space,Str "should",Space,Str "be",Space,Str "emphasized"],Space,Str "23$."]]] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "LaTeX",Space,Str "table:"] ,Table [] [AlignLeft,AlignLeft] [0.0,0.0] [[Plain [Str "Animal"]] ,[Plain [Str "Number"]]] [[[Plain [Str "Dog"]] ,[Plain [Str "2"]]] ,[[Plain [Str "Cat"]] ,[Plain [Str "1"]]]] ,Para [Str "A",Space,Str "table",Space,Str "with",Space,Str "one",Space,Str "column:"] ,Table [] [AlignCenter] [0.0] [[]] [[[Plain [Str "Animal"]]] ,[[Plain [Str "Vegetable"]]]] ,HorizontalRule ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Para [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Para [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Para [Str "section:",Space,Str "\167"]] ,[Para [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Para [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "AT&T",Space,Str "is",Space,Str "another",Space,Str "way",Space,Str "to",Space,Str "write",Space,Str "it."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "\8216"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,HorizontalRule ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","")] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","")] ,Para [Link ("",[],[]) [Str "with_underscore"] ("/url/with_underscore","")] ,Para [Link ("",[],[]) [Str "Email",Space,Str "link"] ("mailto:nobody@nowhere.net","")] ,Para [Link ("",[],[]) [Str "Empty"] ("",""),Str "."] ,Header 2 ("reference",[],[]) [Str "Reference"] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "With",Space,Link ("",[],[]) [Str "embedded",Space,Str "[brackets]"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "b"] ("/url/",""),Space,Str "by",Space,Str "itself",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "link."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "once"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "twice"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "thrice"] ("/url",""),Str "."] ,Para [Str "This",Space,Str "should",Space,Str "[not][]",Space,Str "be",Space,Str "a",Space,Str "link."] ,CodeBlock ("",[],[]) "[not]: /url" ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "biz"] ("/url/",""),Str "."] ,Header 2 ("with-ampersands",[],[]) [Str "With",Space,Str "ampersands"] ,Para [Str "Here\8217s",Space,Str "a",SoftBreak,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",SoftBreak,Link ("",[],[]) [Str "AT&T"] ("http://att.com/",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link"] ("/script?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",SoftBreak,Link ("",[],[]) [Str "inline",Space,Str "link",Space,Str "in",Space,Str "pointy",Space,Str "braces"] ("/script?foo=1&bar=2",""),Str "."] ,Header 2 ("autolinks",[],[]) [Str "Autolinks"] ,Para [Str "With",Space,Str "an",Space,Str "ampersand:",Space,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2","")] ,BulletList [[Para [Str "In",Space,Str "a",Space,Str "list?"]] ,[Para [Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,[Para [Str "It",Space,Str "should."]]] ,Para [Str "An",Space,Str "e-mail",Space,Str "address:",SoftBreak,Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net","")] ,BlockQuote [Para [Str "Blockquoted:",Space,Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,Para [Str "Auto-links",Space,Str "should",Space,Str "not",Space,Str "occur",Space,Str "here:",Space,Code ("",[],[]) ""] ,CodeBlock ("",[],[]) "or here: " ,HorizontalRule ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "image"] ("lalune.jpg","")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [Str "image"] ("movie.jpg",""),Space,Str "icon."] ,HorizontalRule ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "footnote",SoftBreak,Str "reference,",Note [Para [Str "Here",Space,Str "is",Space,Str "the",Space,Str "footnote.",Space,Str "It",Space,Str "can",Space,Str "go",Space,Str "anywhere",Space,Str "after",Space,Str "the",Space,Str "footnote",SoftBreak,Str "reference.",Space,Str "It",Space,Str "need",Space,Str "not",Space,Str "be",Space,Str "placed",Space,Str "at",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "document."]],SoftBreak,Str "and",SoftBreak,Str "another.",Note [Para [Str "Here\8217s",Space,Str "the",Space,Str "long",Space,Str "note.",Space,Str "This",Space,Str "one",Space,Str "contains",Space,Str "multiple",Space,Str "blocks."],Para [Str "Subsequent",Space,Str "blocks",Space,Str "are",Space,Str "indented",Space,Str "to",Space,Str "show",Space,Str "that",Space,Str "they",Space,Str "belong",Space,Str "to",Space,Str "the",SoftBreak,Str "footnote",Space,Str "(as",Space,Str "with",Space,Str "list",Space,Str "items)."],CodeBlock ("",[],[]) " { }",Para [Str "If",Space,Str "you",Space,Str "want,",Space,Str "you",Space,Str "can",Space,Str "indent",Space,Str "every",Space,Str "line,",Space,Str "but",Space,Str "you",Space,Str "can",Space,Str "also",Space,Str "be",Space,Str "lazy",SoftBreak,Str "and",Space,Str "just",Space,Str "indent",Space,Str "the",Space,Str "first",Space,Str "line",Space,Str "of",Space,Str "each",Space,Str "block."]],SoftBreak,Str "This",Space,Str "should",Space,Emph [Str "not"],Space,Str "be",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Space,Str "because",Space,Str "it",Space,Str "contains",SoftBreak,Str "a",Space,Str "space.[^my",Space,Str "note]",Space,Str "Here",Space,Str "is",Space,Str "an",Space,Str "inline",SoftBreak,Str "note.",Note [Para [Str "This",Space,Str "is",Space,Emph [Str "easier"],Space,Str "to",Space,Str "type.",Space,Str "Inline",Space,Str "notes",Space,Str "may",Space,Str "contain",SoftBreak,Link ("",[],[]) [Str "links"] ("http://google.com",""),Space,Str "and",Space,Code ("",[],[]) "]",Space,Str "verbatim",Space,Str "characters,",SoftBreak,Str "as",Space,Str "well",Space,Str "as",Space,Str "[bracketed",Space,Str "text]."]]] ,BlockQuote [Para [Str "Notes",Space,Str "can",Space,Str "go",Space,Str "in",Space,Str "quotes.",Note [Para [Str "In",Space,Str "quote."]]]] ,OrderedList (1,Decimal,Period) [[Para [Str "And",Space,Str "in",Space,Str "list",Space,Str "items.",Note [Para [Str "In",Space,Str "list."]]]]] ,Para [Str "This",Space,Str "paragraph",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "part",Space,Str "of",Space,Str "the",Space,Str "note,",Space,Str "as",Space,Str "it",Space,Str "is",Space,Str "not",SoftBreak,Str "indented."] ,Header 1 ("escaped-characters",[],[]) [Str "Escaped",Space,Str "characters"] ,Para [Str "$",Space,Str "%",Space,Str "&",Space,Str "#",Space,Str "_",Space,Str "{",Space,Str "}"]] pandoc-1.16.0.2~dfsg/tests/writer.native0000644000000000000000000006554712645626061016662 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",Space,Str "MacFarlane"],MetaInlines [Str "Anonymous"]]),("date",MetaInlines [Str "July",Space,Str "17,",Space,Str "2006"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",SoftBreak,Str "John",Space,Str "Gruber\8217s",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,HorizontalRule ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embedded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embedded",Space,Str "link"] ("/url","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 4 ("level-4",[],[]) [Str "Level",Space,Str "4"] ,Header 5 ("level-5",[],[]) [Str "Level",Space,Str "5"] ,Header 1 ("level-1",[],[]) [Str "Level",Space,Str "1"] ,Header 2 ("level-2-with-emphasis",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 3 ("level-3",[],[]) [Str "Level",Space,Str "3"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 2 ("level-2",[],[]) [Str "Level",Space,Str "2"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,HorizontalRule ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",SoftBreak,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",Space,Str "list",Space,Str "item.",SoftBreak,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",SoftBreak,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",Space,Str "looked",Space,Str "like",Space,Str "a",SoftBreak,Str "list",Space,Str "item."] ,Para [Str "Here\8217s",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",SoftBreak,Str "*",Space,Str "criminey."] ,Para [Str "There",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "hard",Space,Str "line",Space,Str "break",LineBreak,Str "here."] ,HorizontalRule ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "E-mail",Space,Str "style:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",SoftBreak,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,BlockQuote [Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,Para [Str "A",Space,Str "list:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "item",Space,Str "one"]] ,[Plain [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"]] ,BlockQuote [Para [Str "nested"]]] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "block",Space,Str "quote:",Space,Str "2",SoftBreak,Str ">",Space,Str "1."] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,HorizontalRule ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}\n\nthis code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,HorizontalRule ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "tight:"] ,BulletList [[Plain [Str "Plus",Space,Str "1"]] ,[Plain [Str "Plus",Space,Str "2"]] ,[Plain [Str "Plus",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "tight:"] ,BulletList [[Plain [Str "Minus",Space,Str "1"]] ,[Plain [Str "Minus",Space,Str "2"]] ,[Plain [Str "Minus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Para [Str "and:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "One"]] ,[Plain [Str "Two"]] ,[Plain [Str "Three"]]] ,Para [Str "Loose",Space,Str "using",Space,Str "tabs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,Decimal,Period) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog\8217s",SoftBreak,Str "back."]] ,[Para [Str "Item",Space,Str "2."]] ,[Para [Str "Item",Space,Str "3."]]] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"]]]]]]] ,Para [Str "Here\8217s",Space,Str "another:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Plain [Str "Third"]]] ,Para [Str "Same",Space,Str "thing",Space,Str "but",Space,Str "with",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Header 2 ("tabs-and-spaces",[],[]) [Str "Tabs",Space,Str "and",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "spaces"]]]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,TwoParens) [[Plain [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,Period) [[Plain [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",SoftBreak,Str "starting",Space,Str "with",Space,Str "4"]] ,[Plain [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,TwoParens) [[Plain [Str "a",Space,Str "subsublist"]] ,[Plain [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,Period) [[Plain [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,Period) [[Plain [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,TwoParens) [[Plain [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,OneParen) [[Plain [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Autonumber."]] ,[Plain [Str "More."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Nested."]]]]] ,Para [Str "Should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "list",Space,Str "item:"] ,Para [Str "M.A.\160\&2007"] ,Para [Str "B.",Space,Str "Williams"] ,HorizontalRule ,Header 1 ("definition-lists",[],[]) [Str "Definition",Space,Str "Lists"] ,Para [Str "Tight",Space,Str "using",Space,Str "spaces:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Plain [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Tight",Space,Str "using",Space,Str "tabs:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Plain [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "with",Space,Str "italics:"] ,DefinitionList [([Emph [Str "apple"]], [[Para [Str "red",Space,Str "fruit"] ,Para [Str "contains",Space,Str "seeds,",SoftBreak,Str "crisp,",Space,Str "pleasant",Space,Str "to",Space,Str "taste"]]]) ,([Emph [Str "orange"]], [[Para [Str "orange",Space,Str "fruit"] ,CodeBlock ("",[],[]) "{ orange code block }" ,BlockQuote [Para [Str "orange",Space,Str "block",Space,Str "quote"]]]])] ,Para [Str "Multiple",Space,Str "definitions,",Space,Str "tight:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]] ,[Plain [Str "computer"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]] ,[Plain [Str "bank"]]])] ,Para [Str "Multiple",Space,Str "definitions,",Space,Str "loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]] ,[Para [Str "bank"]]])] ,Para [Str "Blank",Space,Str "line",Space,Str "after",Space,Str "term,",Space,Str "indented",Space,Str "marker,",Space,Str "alternate",Space,Str "markers:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"] ,OrderedList (1,Decimal,Period) [[Plain [Str "sublist"]] ,[Plain [Str "sublist"]]]]])] ,Header 1 ("html-blocks",[],[]) [Str "HTML",Space,Str "Blocks"] ,Para [Str "Simple",Space,Str "block",Space,Str "on",Space,Str "one",Space,Str "line:"] ,Div ("",[],[]) [Plain [Str "foo"]] ,Para [Str "And",Space,Str "nested",Space,Str "without",Space,Str "indentation:"] ,Div ("",[],[]) [Div ("",[],[]) [Div ("",[],[]) [Para [Str "foo"]]] ,Div ("",[],[]) [Plain [Str "bar"]]] ,Para [Str "Interpreted",Space,Str "markdown",Space,Str "in",Space,Str "a",Space,Str "table:"] ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "
" ,Plain [Str "This",Space,Str "is",Space,Emph [Str "emphasized"]] ,RawBlock (Format "html") "" ,Plain [Str "And",Space,Str "this",Space,Str "is",Space,Strong [Str "strong"]] ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "" ,Para [Str "Here\8217s",Space,Str "a",Space,Str "simple",Space,Str "block:"] ,Div ("",[],[]) [Para [Str "foo"]] ,Para [Str "This",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "code",Space,Str "block,",Space,Str "though:"] ,CodeBlock ("",[],[]) "
\n foo\n
" ,Para [Str "As",Space,Str "should",Space,Str "this:"] ,CodeBlock ("",[],[]) "
foo
" ,Para [Str "Now,",Space,Str "nested:"] ,Div ("",[],[]) [Div ("",[],[]) [Div ("",[],[]) [Plain [Str "foo"]]]] ,Para [Str "This",Space,Str "should",Space,Str "just",Space,Str "be",Space,Str "an",Space,Str "HTML",Space,Str "comment:"] ,RawBlock (Format "html") "" ,Para [Str "Multiline:"] ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,Para [Str "Code",Space,Str "block:"] ,CodeBlock ("",[],[]) "" ,Para [Str "Just",Space,Str "plain",Space,Str "comment,",Space,Str "with",Space,Str "trailing",Space,Str "spaces",Space,Str "on",Space,Str "the",Space,Str "line:"] ,RawBlock (Format "html") "" ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "
" ,Para [Str "Hr\8217s:"] ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,RawBlock (Format "html") "
" ,HorizontalRule ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",Space,Str "this"],Str "."] ,Para [Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",Space,Strong [Str "is",Space,Str "this"],Str "."] ,Para [Str "An",Space,Emph [Link ("",[],[]) [Str "emphasized",Space,Str "link"] ("/url","")],Str "."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",Space,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",Space,Code ("",[],[]) "",Str "."] ,Para [Strikeout [Str "This",Space,Str "is",Space,Emph [Str "strikeout"],Str "."]] ,Para [Str "Superscripts:",Space,Str "a",Superscript [Str "bc"],Str "d",Space,Str "a",Superscript [Emph [Str "hello"]],Space,Str "a",Superscript [Str "hello\160there"],Str "."] ,Para [Str "Subscripts:",Space,Str "H",Subscript [Str "2"],Str "O,",Space,Str "H",Subscript [Str "23"],Str "O,",Space,Str "H",Subscript [Str "many\160of\160them"],Str "O."] ,Para [Str "These",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "superscripts",Space,Str "or",Space,Str "subscripts,",SoftBreak,Str "because",Space,Str "of",Space,Str "the",Space,Str "unescaped",Space,Str "spaces:",Space,Str "a^b",Space,Str "c^d,",Space,Str "a~b",Space,Str "c~d."] ,HorizontalRule ,Header 1 ("smart-quotes-ellipses-dashes",[],[]) [Str "Smart",Space,Str "quotes,",Space,Str "ellipses,",Space,Str "dashes"] ,Para [Quoted DoubleQuote [Str "Hello,"],Space,Str "said",Space,Str "the",Space,Str "spider.",Space,Quoted DoubleQuote [Quoted SingleQuote [Str "Shelob"],Space,Str "is",Space,Str "my",Space,Str "name."]] ,Para [Quoted SingleQuote [Str "A"],Str ",",Space,Quoted SingleQuote [Str "B"],Str ",",Space,Str "and",Space,Quoted SingleQuote [Str "C"],Space,Str "are",Space,Str "letters."] ,Para [Quoted SingleQuote [Str "Oak,"],Space,Quoted SingleQuote [Str "elm,"],Space,Str "and",Space,Quoted SingleQuote [Str "beech"],Space,Str "are",Space,Str "names",Space,Str "of",Space,Str "trees.",SoftBreak,Str "So",Space,Str "is",Space,Quoted SingleQuote [Str "pine."]] ,Para [Quoted SingleQuote [Str "He",Space,Str "said,",Space,Quoted DoubleQuote [Str "I",Space,Str "want",Space,Str "to",Space,Str "go."]],Space,Str "Were",Space,Str "you",Space,Str "alive",Space,Str "in",Space,Str "the",SoftBreak,Str "70\8217s?"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "quoted",Space,Quoted SingleQuote [Code ("",[],[]) "code"],Space,Str "and",Space,Str "a",Space,Quoted DoubleQuote [Link ("",[],[]) [Str "quoted",Space,Str "link"] ("http://example.com/?foo=1&bar=2","")],Str "."] ,Para [Str "Some",Space,Str "dashes:",Space,Str "one\8212two",Space,Str "\8212",Space,Str "three\8212four",Space,Str "\8212",Space,Str "five."] ,Para [Str "Dashes",Space,Str "between",Space,Str "numbers:",Space,Str "5\8211\&7,",Space,Str "255\8211\&66,",Space,Str "1987\8211\&1999."] ,Para [Str "Ellipses\8230and\8230and\8230."] ,HorizontalRule ,Header 1 ("latex",[],[]) [Str "LaTeX"] ,BulletList [[Plain [RawInline (Format "tex") "\\cite[22-23]{smith.1899}"]] ,[Plain [Math InlineMath "2+2=4"]] ,[Plain [Math InlineMath "x \\in y"]] ,[Plain [Math InlineMath "\\alpha \\wedge \\omega"]] ,[Plain [Math InlineMath "223"]] ,[Plain [Math InlineMath "p",Str "-Tree"]] ,[Plain [Str "Here\8217s",Space,Str "some",Space,Str "display",Space,Str "math:",SoftBreak,Math DisplayMath "\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)-f(x)}{h}"]] ,[Plain [Str "Here\8217s",Space,Str "one",Space,Str "that",Space,Str "has",Space,Str "a",Space,Str "line",Space,Str "break",Space,Str "in",Space,Str "it:",Space,Math InlineMath "\\alpha + \\omega \\times x^2",Str "."]]] ,Para [Str "These",Space,Str "shouldn\8217t",Space,Str "be",Space,Str "math:"] ,BulletList [[Plain [Str "To",Space,Str "get",Space,Str "the",Space,Str "famous",Space,Str "equation,",Space,Str "write",Space,Code ("",[],[]) "$e = mc^2$",Str "."]] ,[Plain [Str "$22,000",Space,Str "is",Space,Str "a",Space,Emph [Str "lot"],Space,Str "of",Space,Str "money.",Space,Str "So",Space,Str "is",Space,Str "$34,000.",SoftBreak,Str "(It",Space,Str "worked",Space,Str "if",Space,Quoted DoubleQuote [Str "lot"],Space,Str "is",Space,Str "emphasized.)"]] ,[Plain [Str "Shoes",Space,Str "($20)",Space,Str "and",Space,Str "socks",Space,Str "($5)."]] ,[Plain [Str "Escaped",Space,Code ("",[],[]) "$",Str ":",Space,Str "$73",Space,Emph [Str "this",Space,Str "should",Space,Str "be",Space,Str "emphasized"],Space,Str "23$."]]] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "LaTeX",Space,Str "table:"] ,RawBlock (Format "latex") "\\begin{tabular}{|l|l|}\\hline\nAnimal & Number \\\\ \\hline\nDog & 2 \\\\\nCat & 1 \\\\ \\hline\n\\end{tabular}" ,HorizontalRule ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Plain [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Plain [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Plain [Str "section:",Space,Str "\167"]] ,[Plain [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Plain [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "AT&T",Space,Str "is",Space,Str "another",Space,Str "way",Space,Str "to",Space,Str "write",Space,Str "it."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "`"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,HorizontalRule ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by two spaces"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by a tab"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with \"quotes\" in it")] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with single quotes")] ,Para [Link ("",[],[]) [Str "with_underscore"] ("/url/with_underscore","")] ,Para [Link ("",[],[]) [Str "Email",Space,Str "link"] ("mailto:nobody@nowhere.net","")] ,Para [Link ("",[],[]) [Str "Empty"] ("",""),Str "."] ,Header 2 ("reference",[],[]) [Str "Reference"] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "With",Space,Link ("",[],[]) [Str "embedded",Space,Str "[brackets]"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "b"] ("/url/",""),Space,Str "by",Space,Str "itself",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "link."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "once"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "twice"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "thrice"] ("/url",""),Str "."] ,Para [Str "This",Space,Str "should",Space,Str "[not][]",Space,Str "be",Space,Str "a",Space,Str "link."] ,CodeBlock ("",[],[]) "[not]: /url" ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/","Title with \"quotes\" inside"),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "biz"] ("/url/","Title with \"quote\" inside"),Str "."] ,Header 2 ("with-ampersands",[],[]) [Str "With",Space,Str "ampersands"] ,Para [Str "Here\8217s",Space,Str "a",Space,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",Space,Link ("",[],[]) [Str "AT&T"] ("http://att.com/","AT&T"),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link"] ("/script?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link",Space,Str "in",Space,Str "pointy",Space,Str "braces"] ("/script?foo=1&bar=2",""),Str "."] ,Header 2 ("autolinks",[],[]) [Str "Autolinks"] ,Para [Str "With",Space,Str "an",Space,Str "ampersand:",Space,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2","")] ,BulletList [[Plain [Str "In",Space,Str "a",Space,Str "list?"]] ,[Plain [Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,[Plain [Str "It",Space,Str "should."]]] ,Para [Str "An",Space,Str "e-mail",Space,Str "address:",Space,Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net","")] ,BlockQuote [Para [Str "Blockquoted:",Space,Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,Para [Str "Auto-links",Space,Str "should",Space,Str "not",Space,Str "occur",Space,Str "here:",Space,Code ("",[],[]) ""] ,CodeBlock ("",[],[]) "or here: " ,HorizontalRule ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "lalune"] ("lalune.jpg","fig:Voyage dans la Lune")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [Str "movie"] ("movie.jpg",""),Space,Str "icon."] ,HorizontalRule ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Note [Para [Str "Here",Space,Str "is",Space,Str "the",Space,Str "footnote.",Space,Str "It",Space,Str "can",Space,Str "go",Space,Str "anywhere",Space,Str "after",Space,Str "the",Space,Str "footnote",SoftBreak,Str "reference.",Space,Str "It",Space,Str "need",Space,Str "not",Space,Str "be",Space,Str "placed",Space,Str "at",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "document."]],Space,Str "and",Space,Str "another.",Note [Para [Str "Here\8217s",Space,Str "the",Space,Str "long",Space,Str "note.",Space,Str "This",Space,Str "one",Space,Str "contains",Space,Str "multiple",SoftBreak,Str "blocks."],Para [Str "Subsequent",Space,Str "blocks",Space,Str "are",Space,Str "indented",Space,Str "to",Space,Str "show",Space,Str "that",Space,Str "they",Space,Str "belong",Space,Str "to",Space,Str "the",SoftBreak,Str "footnote",Space,Str "(as",Space,Str "with",Space,Str "list",Space,Str "items)."],CodeBlock ("",[],[]) " { }",Para [Str "If",Space,Str "you",Space,Str "want,",Space,Str "you",Space,Str "can",Space,Str "indent",Space,Str "every",Space,Str "line,",Space,Str "but",Space,Str "you",Space,Str "can",Space,Str "also",Space,Str "be",SoftBreak,Str "lazy",Space,Str "and",Space,Str "just",Space,Str "indent",Space,Str "the",Space,Str "first",Space,Str "line",Space,Str "of",Space,Str "each",Space,Str "block."]],SoftBreak,Str "This",Space,Str "should",Space,Emph [Str "not"],Space,Str "be",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Space,Str "because",Space,Str "it",SoftBreak,Str "contains",Space,Str "a",Space,Str "space.[^my",Space,Str "note]",Space,Str "Here",Space,Str "is",Space,Str "an",Space,Str "inline",Space,Str "note.",Note [Para [Str "This",SoftBreak,Str "is",Space,Emph [Str "easier"],Space,Str "to",Space,Str "type.",Space,Str "Inline",Space,Str "notes",Space,Str "may",Space,Str "contain",SoftBreak,Link ("",[],[]) [Str "links"] ("http://google.com",""),Space,Str "and",Space,Code ("",[],[]) "]",Space,Str "verbatim",Space,Str "characters,",SoftBreak,Str "as",Space,Str "well",Space,Str "as",Space,Str "[bracketed",Space,Str "text]."]]] ,BlockQuote [Para [Str "Notes",Space,Str "can",Space,Str "go",Space,Str "in",Space,Str "quotes.",Note [Para [Str "In",Space,Str "quote."]]]] ,OrderedList (1,Decimal,Period) [[Plain [Str "And",Space,Str "in",Space,Str "list",Space,Str "items.",Note [Para [Str "In",Space,Str "list."]]]]] ,Para [Str "This",Space,Str "paragraph",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "part",Space,Str "of",Space,Str "the",Space,Str "note,",Space,Str "as",Space,Str "it",Space,Str "is",Space,Str "not",Space,Str "indented."]] pandoc-1.16.0.2~dfsg/tests/s5-inserts.html0000644000000000000000000000212112645626061017013 0ustar rootroot My S5 Document STUFF INSERTED STUFF INSERTED

First slide

  • first bullet
  • second bullet

Math

  • $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$
STUFF INSERTED pandoc-1.16.0.2~dfsg/tests/dokuwiki_multiblock_table.dokuwiki0000644000000000000000000000024312645626061023106 0ustar rootrootSample grid table. ^Fruit ^Price^Advantages ^ |Bananas|$1.34|built-in wrapper\\ \\ potassium| |Oranges|$2.10|* cures scurvy\\ * tasty | pandoc-1.16.0.2~dfsg/tests/writers-lang-and-dir.context0000644000000000000000000000535612645626061021466 0ustar rootroot% Enable hyperlinks \setupinteraction [state=start, style=, color=, contrastcolor=] % make chapter, section bookmarks visible when opening document \placebookmarks[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][chapter, section] \setupinteractionscreen[option=bookmark] \setuptagging[state=start] % use microtypography \definefontfeature[default][default][script=latn, protrusion=quality, expansion=quality, itlc=yes, textitalics=yes, onum=yes, pnum=yes] \definefontfeature[smallcaps][script=latn, protrusion=quality, expansion=quality, smcp=yes, onum=yes, pnum=yes] \setupalign[hz,hanging] \setupitaliccorrection[global, always] \setupbodyfontenvironment[default][em=italic] % use italic as em, not slanted \usemodule[simplefonts] \setmainfontfallback[DejaVu Serif][range={greekandcoptic, greekextended}, force=yes, rscale=auto] \setupwhitespace[medium] \setuphead[chapter] [style=\tfd,header=empty] \setuphead[section] [style=\tfc] \setuphead[subsection] [style=\tfb] \setuphead[subsubsection] [style=\bf] \setuphead[subsubsubsection] [style=\sc] \setuphead[subsubsubsubsection][style=\it] \setuphead[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][number=no] \definedescription [description] [headstyle=bold, style=normal, location=hanging, width=broad, margin=1cm, alternative=hanging] \setupitemize[autointro] % prevent orphan list intro \setupitemize[indentnext=no] \setupfloat[figure][default={here,nonumber}] \setupfloat[table][default={here,nonumber}] \setupthinrules[width=15em] % width of horizontal rules \starttext \section[empty-divs-and-spans]{Empty Divs and Spans} Some text and div contents and more text. Next paragraph with a span and a word-thatincludesaspanright? \section[directionality]{Directionality} Some text and \startalignment[righttoleft] rtl div contents \stopalignment and more text. \startalignment[lefttoright] and a ltr div. with a {\righttoleft rtl span}. \stopalignment Next paragraph with a {\righttoleft rtl span} and a word-that-includesa{\lefttoright ltrspan}right? \section[languages]{Languages} Some text and \start\language[de] German div contents \stop and more text. Next paragraph with a \start\language[en-gb]British span\stop and a word-that-includesa\start\language[de-ch]Swiss German span\stop right? Some \start\language[es]Spanish text\stop . \section[combined]{Combined} Some text and \start\language[fr] \startalignment[righttoleft] French rtl div contents \stopalignment \stop and more text. Next paragraph with a \start\language[en-gb]{\lefttoright British ltr span}\stop and a word-that-includesa\start\language[de-ch]{\lefttoright Swiss German ltr span}\stop right? \stoptext pandoc-1.16.0.2~dfsg/tests/lhs-test.markdown0000644000000000000000000000100112645626061017414 0ustar rootrootlhs test ======== `unsplit` is an arrow that takes a pair of values and combines them to return a single value: ``` {.sourceCode .literate .haskell} unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d unsplit = arr . uncurry -- arr (\op (x,y) -> x `op` y) ``` `(***)` combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). f *** g = first f >>> second g Block quote: > foo bar pandoc-1.16.0.2~dfsg/tests/lhs-test.rst0000644000000000000000000000100112645626061016402 0ustar rootrootlhs test ======== ``unsplit`` is an arrow that takes a pair of values and combines them to return a single value: .. code:: haskell unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d unsplit = arr . uncurry -- arr (\op (x,y) -> x `op` y) ``(***)`` combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). :: f *** g = first f >>> second g Block quote: foo bar pandoc-1.16.0.2~dfsg/tests/docbook-xref.native0000644000000000000000000000347512645626061017720 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Header 1 ("ch01",[],[]) [Str "XRef",Space,Str "Samples"] ,Para [Str "This",Space,Str "paragraph",Space,Str "demonstrates",Space,Str "several",Space,Str "features",Space,Str "of",SoftBreak,Str "XRef."] ,BulletList [[Para [Str "A",Space,Str "straight",Space,Str "link",Space,Str "generates",Space,Str "the",SoftBreak,Str "cross-reference",Space,Str "text:",Space,Link ("",[],[]) [Str "The Second Chapter"] ("#ch02",""),Str "."]] ,[Para [Str "A",Space,Str "link",Space,Str "to",Space,Str "an",Space,Str "element",Space,Str "with",Space,Str "an",SoftBreak,Str "XRefLabel:",SoftBreak,Link ("",[],[]) [Str "Chapter the Third"] ("#ch03",""),Str "."]] ,[Para [Str "A",Space,Str "link",Space,Str "with",Space,Str "an",SoftBreak,Str "EndTerm:",SoftBreak,Link ("",[],[]) [Str "Chapter 4"] ("#ch04",""),Str "."]] ,[Para [Str "A",Space,Str "link",Space,Str "to",Space,Str "an",SoftBreak,Str "cmdsynopsis",Space,Str "element:",Space,Link ("",[],[]) [Str "chgrp"] ("#cmd01",""),Str "."]] ,[Para [Str "A",Space,Str "link",Space,Str "to",Space,Str "an",SoftBreak,Str "funcsynopsis",Space,Str "element:",Space,Link ("",[],[]) [Str "max"] ("#func01",""),Str "."]]] ,Header 1 ("ch02",[],[]) [Str "The",Space,Str "Second",Space,Str "Chapter"] ,Para [Str "Some",Space,Str "content",Space,Str "here"] ,Header 1 ("ch03",[],[]) [Str "The",Space,Str "Third",Space,Str "Chapter"] ,Para [Str "Some",Space,Str "content",Space,Str "here"] ,Header 1 ("ch04",[],[]) [Str "The",Space,Str "Fourth",Space,Str "Chapter"] ,Para [Str "Some",Space,Str "content",Space,Str "here"] ,Plain [Str "chgrp"] ,Plain [Str "-R"] ,Plain [Str "-H"] ,Plain [Str "-L"] ,Plain [Str "-P"] ,Plain [Str "-f"] ,Plain [Str "group"] ,Plain [Str "file"] ,Plain [Str "int"] ,Plain [Str "max"] ,Plain [Str "int"] ,Plain [Str "int1"] ,Plain [Str "int"] ,Plain [Str "int2"]] pandoc-1.16.0.2~dfsg/tests/markdown-reader-more.native0000644000000000000000000002640212645626061021353 0ustar rootroot[Para [Str "spanning",Space,Str "multiple",Space,Str "lines",SoftBreak,Str "%",Space,Str "Author",Space,Str "One",SoftBreak,Str "Author",Space,Str "Two;",Space,Str "Author",Space,Str "Three;",SoftBreak,Str "Author",Space,Str "Four"] ,Header 1 ("additional-markdown-reader-tests",[],[]) [Str "Additional",Space,Str "markdown",Space,Str "reader",Space,Str "tests"] ,Header 2 ("blank-line-before-url-in-link-reference",[],[]) [Str "Blank",Space,Str "line",Space,Str "before",Space,Str "URL",Space,Str "in",Space,Str "link",Space,Str "reference"] ,Para [Link ("",[],[]) [Str "foo"] ("/url",""),Space,Str "and",Space,Link ("",[],[]) [Str "bar"] ("/url","title")] ,Header 2 ("raw-context-environments",[],[]) [Str "Raw",Space,Str "ConTeXt",Space,Str "environments"] ,Plain [RawInline (Format "tex") "\\placeformula "] ,RawBlock (Format "context") "\\startformula\n L_{1} = L_{2}\n \\stopformula" ,RawBlock (Format "context") "\\start[a2]\n\\start[a2]\n\\stop[a2]\n\\stop[a2]" ,Header 2 ("urls-with-spaces-and-punctuation",[],[]) [Str "URLs",Space,Str "with",Space,Str "spaces",Space,Str "and",Space,Str "punctuation"] ,Para [Link ("",[],[]) [Str "foo"] ("/bar%20and%20baz",""),SoftBreak,Link ("",[],[]) [Str "foo"] ("/bar%20and%20baz",""),SoftBreak,Link ("",[],[]) [Str "foo"] ("/bar%20and%20baz",""),SoftBreak,Link ("",[],[]) [Str "foo"] ("bar%20baz","title")] ,Para [Link ("",[],[]) [Str "baz"] ("/foo%20foo",""),Space,Link ("",[],[]) [Str "bam"] ("/foo%20fee",""),Space,Link ("",[],[]) [Str "bork"] ("/foo/zee%20zob","title")] ,Para [Link ("",[],[]) [Str "Ward\8217s",Space,Str "method."] ("http://en.wikipedia.org/wiki/Ward's_method","")] ,Header 2 ("horizontal-rules-with-spaces-at-end",[],[]) [Str "Horizontal",Space,Str "rules",Space,Str "with",Space,Str "spaces",Space,Str "at",Space,Str "end"] ,HorizontalRule ,HorizontalRule ,Header 2 ("raw-html-before-header",[],[]) [Str "Raw",Space,Str "HTML",Space,Str "before",Space,Str "header"] ,Para [RawInline (Format "html") "",RawInline (Format "html") ""] ,Header 3 ("my-header",[],[]) [Str "my",Space,Str "header"] ,Header 2 ("in-math",[],[]) [Str "$",Space,Str "in",Space,Str "math"] ,Para [Math InlineMath "\\$2 + \\$3"] ,Para [Math InlineMath "x = \\text{the $n$th root of $y$}"] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "math:"] ,Para [Str "$PATH",Space,Str "90",Space,Str "$PATH"] ,Header 2 ("commented-out-list-item",[],[]) [Str "Commented-out",Space,Str "list",Space,Str "item"] ,BulletList [[Plain [Str "one",SoftBreak,RawInline (Format "html") ""]] ,[Plain [Str "three"]]] ,Header 2 ("indented-code-at-beginning-of-list",[],[]) [Str "Indented",Space,Str "code",Space,Str "at",Space,Str "beginning",Space,Str "of",Space,Str "list"] ,BulletList [[CodeBlock ("",[],[]) "code\ncode"]] ,OrderedList (1,Decimal,Period) [[CodeBlock ("",[],[]) "code\ncode"] ,[CodeBlock ("",[],[]) "code\ncode"]] ,BulletList [[CodeBlock ("",[],[]) "code\ncode"] ,[Plain [Str "no",Space,Str "code"]]] ,Header 2 ("backslash-newline",[],[]) [Str "Backslash",Space,Str "newline"] ,Para [Str "hi",LineBreak,Str "there"] ,Header 2 ("code-spans",[],[]) [Str "Code",Space,Str "spans"] ,Para [Code ("",[],[]) "hi\\"] ,Para [Code ("",[],[]) "hi there"] ,Para [Code ("",[],[]) "hi````there"] ,Para [Str "`hi"] ,Para [Str "there`"] ,Header 2 ("multilingual-urls",[],[]) [Str "Multilingual",Space,Str "URLs"] ,Para [Link ("",[],[]) [Str "http://\27979.com?\27979=\27979"] ("http://\27979.com?\27979=\27979","")] ,Para [Link ("",[],[]) [Str "foo"] ("/bar/\27979?x=\27979","title")] ,Para [Link ("",[],[]) [Str "\27979@foo.\27979.baz"] ("mailto:\27979@foo.\27979.baz","")] ,Header 2 ("numbered-examples",[],[]) [Str "Numbered",Space,Str "examples"] ,OrderedList (1,Example,TwoParens) [[Plain [Str "First",Space,Str "example."]] ,[Plain [Str "Second",Space,Str "example."]]] ,Para [Str "Explanation",Space,Str "of",Space,Str "examples",Space,Str "(2)",Space,Str "and",Space,Str "(3)."] ,OrderedList (3,Example,TwoParens) [[Plain [Str "Third",Space,Str "example."]]] ,Header 2 ("macros",[],[]) [Str "Macros"] ,Para [Math InlineMath "{\\langle x,y \\rangle}"] ,Header 2 ("case-insensitive-references",[],[]) [Str "Case-insensitive",Space,Str "references"] ,Para [Link ("",[],[]) [Str "Fum"] ("/fum","")] ,Para [Link ("",[],[]) [Str "FUM"] ("/fum","")] ,Para [Link ("",[],[]) [Str "bat"] ("/bat","")] ,Header 2 ("curly-smart-quotes",[],[]) [Str "Curly",Space,Str "smart",Space,Str "quotes"] ,Para [Quoted DoubleQuote [Str "Hi"]] ,Para [Quoted SingleQuote [Str "Hi"]] ,Header 2 ("consecutive-lists",[],[]) [Str "Consecutive",Space,Str "lists"] ,BulletList [[Plain [Str "one"]] ,[Plain [Str "two"]]] ,OrderedList (1,Decimal,Period) [[Plain [Str "one"]] ,[Plain [Str "two"]]] ,OrderedList (1,LowerAlpha,Period) [[Plain [Str "one"]] ,[Plain [Str "two"]]] ,Header 2 ("implicit-header-references",[],[]) [Str "Implicit",Space,Str "header",Space,Str "references"] ,Header 3 ("my-header-1",[],[]) [Str "My",Space,Str "header"] ,Header 3 ("my-other-header",[],[]) [Str "My",Space,Str "other",Space,Str "header"] ,Para [Str "A",Space,Str "link",Space,Str "to",Space,Link ("",[],[]) [Str "My",Space,Str "header"] ("#my-header-1",""),Str "."] ,Para [Str "Another",Space,Str "link",Space,Str "to",Space,Link ("",[],[]) [Str "it"] ("#my-header-1",""),Str "."] ,Para [Str "Should",Space,Str "be",Space,Link ("",[],[]) [Str "case",Space,Str "insensitive"] ("#my-header-1",""),Str "."] ,Para [Str "Link",Space,Str "to",Space,Link ("",[],[]) [Str "Explicit",Space,Str "header",Space,Str "attributes"] ("#foobar",""),Str "."] ,Para [Str "But",Space,Str "this",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "link",Space,Str "to",Space,Link ("",[],[]) [Str "My",Space,Str "other",Space,Str "header"] ("/foo",""),Str ",",Space,Str "since",Space,Str "the",Space,Str "reference",Space,Str "is",Space,Str "defined."] ,Header 2 ("foobar",["baz"],[("key","val")]) [Str "Explicit",Space,Str "header",Space,Str "attributes"] ,BlockQuote [Header 2 ("foobar",["baz"],[("key","val")]) [Str "Header",Space,Str "attributes",Space,Str "inside",Space,Str "block",Space,Str "quote"]] ,Header 2 ("line-blocks",[],[]) [Str "Line",Space,Str "blocks"] ,Para [Str "But",Space,Str "can",Space,Str "a",Space,Str "bee",Space,Str "be",Space,Str "said",Space,Str "to",Space,Str "be",LineBreak,Str "\160\160\160\160or",Space,Str "not",Space,Str "to",Space,Str "be",Space,Str "an",Space,Str "entire",Space,Str "bee,",LineBreak,Str "\160\160\160\160\160\160\160\160when",Space,Str "half",Space,Str "the",Space,Str "bee",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "bee,",LineBreak,Str "\160\160\160\160\160\160\160\160\160\160\160\160due",Space,Str "to",Space,Str "some",Space,Str "ancient",Space,Str "injury?"] ,Para [Str "Continuation",Space,Str "line",LineBreak,Str "\160\160and",Space,Str "another"] ,Header 2 ("grid-tables",[],[]) [Str "Grid",Space,Str "Tables"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2638888888888889,0.16666666666666666,0.18055555555555555] [[Plain [Str "col",Space,Str "1"]] ,[Plain [Str "col",Space,Str "2"]] ,[Plain [Str "col",Space,Str "3"]]] [[[Para [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Para [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Para [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Para [Str "r2",Space,Str "d"]] ,[Para [Str "e"]] ,[Para [Str "f"]]]] ,Para [Str "Headless"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2638888888888889,0.16666666666666666,0.18055555555555555] [[] ,[] ,[]] [[[Para [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Para [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Para [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Para [Str "r2",Space,Str "d"]] ,[Para [Str "e"]] ,[Para [Str "f"]]]] ,Para [Str "Spaces",Space,Str "at",Space,Str "ends",Space,Str "of",Space,Str "lines"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2638888888888889,0.16666666666666666,0.18055555555555555] [[] ,[] ,[]] [[[Para [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Para [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Para [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Para [Str "r2",Space,Str "d"]] ,[Para [Str "e"]] ,[Para [Str "f"]]]] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "in",Space,Str "a",Space,Str "cell"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2638888888888889,0.16666666666666666,0.18055555555555555] [[] ,[] ,[]] [[[Header 1 ("col-1",[],[]) [Str "col",Space,Str "1"] ,Para [Str "col",Space,Str "1"]] ,[Header 1 ("col-2",[],[]) [Str "col",Space,Str "2"] ,Para [Str "col",Space,Str "2"]] ,[Header 1 ("col-3",[],[]) [Str "col",Space,Str "3"] ,Para [Str "col",Space,Str "3"]]] ,[[Para [Str "r1",Space,Str "a"] ,Para [Str "r1",Space,Str "bis"]] ,[BulletList [[Plain [Str "b"]] ,[Plain [Str "b",Space,Str "2"]] ,[Plain [Str "b",Space,Str "2"]]]] ,[Para [Str "c",SoftBreak,Str "c",Space,Str "2",SoftBreak,Str "c",Space,Str "2"]]]] ,Para [Str "Empty",Space,Str "cells"] ,Table [] [AlignDefault,AlignDefault] [5.555555555555555e-2,5.555555555555555e-2] [[] ,[]] [[[] ,[]]] ,Header 2 ("entities-in-links-and-titles",[],[]) [Str "Entities",Space,Str "in",Space,Str "links",Space,Str "and",Space,Str "titles"] ,Para [Link ("",[],[]) [Str "link"] ("/\252rl","\246\246!")] ,Para [Link ("",[],[]) [Str "http://g\246\246gle.com"] ("http://g\246\246gle.com","")] ,Para [Link ("",[],[]) [Str "me@ex\228mple.com"] ("mailto:me@ex\228mple.com","")] ,Para [Link ("",[],[]) [Str "foobar"] ("/\252rl","\246\246!")] ,Header 2 ("parentheses-in-urls",[],[]) [Str "Parentheses",Space,Str "in",Space,Str "URLs"] ,Para [Link ("",[],[]) [Str "link"] ("/hi(there)","")] ,Para [Link ("",[],[]) [Str "link"] ("/hithere)","")] ,Para [Link ("",[],[]) [Str "linky"] ("hi_(there_(nested))","")] ,Header 2 ("backslashes-in-link-references",[],[]) [Str "Backslashes",Space,Str "in",Space,Str "link",Space,Str "references"] ,Para [Link ("",[],[]) [Str "*",RawInline (Format "tex") "\\a"] ("b","")] ,Header 2 ("reference-link-fallbacks",[],[]) [Str "Reference",Space,Str "link",Space,Str "fallbacks"] ,Para [Str "[",Emph [Str "not",Space,Str "a",Space,Str "link"],Str "]",Space,Str "[",Emph [Str "nope"],Str "]\8230"] ,Header 2 ("reference-link-followed-by-a-citation",[],[]) [Str "Reference",Space,Str "link",Space,Str "followed",Space,Str "by",Space,Str "a",Space,Str "citation"] ,Para [Str "MapReduce",Space,Str "is",Space,Str "a",Space,Str "paradigm",Space,Str "popularized",Space,Str "by",Space,Link ("",[],[]) [Str "Google"] ("http://google.com",""),Space,Cite [Citation {citationId = "mapreduce", citationPrefix = [], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[@mapreduce]"],Space,Str "as",Space,Str "its",SoftBreak,Str "most",Space,Str "vocal",Space,Str "proponent."] ,Header 2 ("empty-reference-links",[],[]) [Str "Empty",Space,Str "reference",Space,Str "links"] ,Para [Str "bar"] ,Para [Link ("",[],[]) [Str "foo2"] ("","")] ,Header 2 ("wrapping-shouldnt-introduce-new-list-items",[],[]) [Str "Wrapping",Space,Str "shouldn\8217t",Space,Str "introduce",Space,Str "new",Space,Str "list",Space,Str "items"] ,BulletList [[Plain [Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "blah",Space,Str "2015."]]]] pandoc-1.16.0.2~dfsg/tests/tables.rtf0000644000000000000000000002043312645626061016106 0ustar rootroot{\pard \ql \f0 \sa180 \li0 \fi0 Simple table with caption:\par} { \trowd \trgaph120 \clbrdrb\brdrs\cellx2160\clbrdrb\brdrs\cellx4320\clbrdrb\brdrs\cellx6480\clbrdrb\brdrs\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 Right\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Left\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Center\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Default\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 Demonstration of simple table syntax.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Simple table without caption:\par} { \trowd \trgaph120 \clbrdrb\brdrs\cellx2160\clbrdrb\brdrs\cellx4320\clbrdrb\brdrs\cellx6480\clbrdrb\brdrs\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 Right\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Left\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Center\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Default\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 \par} {\pard \ql \f0 \sa180 \li0 \fi0 Simple table indented two spaces:\par} { \trowd \trgaph120 \clbrdrb\brdrs\cellx2160\clbrdrb\brdrs\cellx4320\clbrdrb\brdrs\cellx6480\clbrdrb\brdrs\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 Right\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Left\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Center\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Default\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 Demonstration of simple table syntax.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiline table with caption:\par} { \trowd \trgaph120 \clbrdrb\brdrs\cellx1296\clbrdrb\brdrs\cellx2484\clbrdrb\brdrs\cellx3888\clbrdrb\brdrs\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Centered Header\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Left Aligned\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 Right Aligned\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Default aligned\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 First\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Example of a row that spans multiple lines.\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Second\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 5.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Here's another one. Note the blank line between rows.\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 Here's the caption. It may span multiple lines.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiline table without caption:\par} { \trowd \trgaph120 \clbrdrb\brdrs\cellx1296\clbrdrb\brdrs\cellx2484\clbrdrb\brdrs\cellx3888\clbrdrb\brdrs\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Centered Header\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Left Aligned\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 Right Aligned\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Default aligned\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 First\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Example of a row that spans multiple lines.\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Second\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 5.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Here's another one. Note the blank line between rows.\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 \par} {\pard \ql \f0 \sa180 \li0 \fi0 Table without column headers:\par} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 12\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 123\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 123\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx2160\cellx4320\cellx6480\cellx8640 \trkeep\intbl { {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 1\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 1\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 \par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiline table without column headers:\par} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 First\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 12.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Example of a row that spans multiple lines.\par} \cell} } \intbl\row} { \trowd \trgaph120 \cellx1296\cellx2484\cellx3888\cellx6804 \trkeep\intbl { {{\pard\intbl \qc \f0 \sa0 \li0 \fi0 Second\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 row\par} \cell} {{\pard\intbl \qr \f0 \sa0 \li0 \fi0 5.0\par} \cell} {{\pard\intbl \ql \f0 \sa0 \li0 \fi0 Here's another one. Note the blank line between rows.\par} \cell} } \intbl\row} {\pard \ql \f0 \sa180 \li0 \fi0 \par} pandoc-1.16.0.2~dfsg/tests/pipe-tables.txt0000644000000000000000000000231012645626061017057 0ustar rootrootSimplest table without caption: | Default1 | Default2 | Default3 | |----------|----------|----------| |12|12|12| |123|123|123| |1|1|1| Simple table with caption: | Right | Left | Default | Center | | ----: | :--- | ------- | :----: | | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | : Demonstration of simple table syntax. Simple table without caption: | Right | Left | Center | |------:|:-----|:------:| |12|12|12| |123|123|123| |1|1|1| Headerless table without caption: | | | | |------:|:-----|:------:| |12|12|12| |123|123|123| |1|1|1| Table without sides: Fruit |Quantity ------|-------: apple | 5 orange| 17 pear | 302 One-column: |hi| |--| |lo| Header-less one-column: | | |:-:| |hi| Indented left column: Number of siblings | Salary ------------------:|:------ 3 | 33 4 | 44 Long pipe table with relative widths: | Default1 | Default2 | Default3 | |---------|----------|---------------------------------------| |123|this is a table cell|and this is a really long table cell that will probably need wrapping| |123|123|123| Pipe table with no body: | Header | | ------ | pandoc-1.16.0.2~dfsg/tests/pipe-tables.native0000644000000000000000000000656012645626061017541 0ustar rootroot[Para [Str "Simplest",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "Default1"]] ,[Plain [Str "Default2"]] ,[Plain [Str "Default3"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] [AlignRight,AlignLeft,AlignDefault,AlignCenter] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Default"]] ,[Plain [Str "Center"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignRight,AlignLeft,AlignCenter] [0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Headerless",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignRight,AlignLeft,AlignCenter] [0.0,0.0,0.0] [[] ,[] ,[]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Table",Space,Str "without",Space,Str "sides:"] ,Table [] [AlignDefault,AlignRight] [0.0,0.0] [[Plain [Str "Fruit"]] ,[Plain [Str "Quantity"]]] [[[Plain [Str "apple"]] ,[Plain [Str "5"]]] ,[[Plain [Str "orange"]] ,[Plain [Str "17"]]] ,[[Plain [Str "pear"]] ,[Plain [Str "302"]]]] ,Para [Str "One-column:"] ,Table [] [AlignDefault] [0.0] [[Plain [Str "hi"]]] [[[Plain [Str "lo"]]]] ,Para [Str "Header-less",Space,Str "one-column:"] ,Table [] [AlignCenter] [0.0] [[]] [[[Plain [Str "hi"]]]] ,Para [Str "Indented",Space,Str "left",Space,Str "column:"] ,Table [] [AlignRight,AlignLeft] [0.0,0.0] [[Plain [Str "Number",Space,Str "of",Space,Str "siblings"]] ,[Plain [Str "Salary"]]] [[[Plain [Str "3"]] ,[Plain [Str "33"]]] ,[[Plain [Str "4"]] ,[Plain [Str "44"]]]] ,Para [Str "Long",Space,Str "pipe",Space,Str "table",Space,Str "with",Space,Str "relative",Space,Str "widths:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.125,0.1375,0.5] [[Plain [Str "Default1"]] ,[Plain [Str "Default2"]] ,[Plain [Str "Default3"]]] [[[Plain [Str "123"]] ,[Plain [Str "this",Space,Str "is",Space,Str "a",Space,Str "table",Space,Str "cell"]] ,[Plain [Str "and",Space,Str "this",Space,Str "is",Space,Str "a",Space,Str "really",Space,Str "long",Space,Str "table",Space,Str "cell",Space,Str "that",Space,Str "will",Space,Str "probably",Space,Str "need",Space,Str "wrapping"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]]] ,Para [Str "Pipe",Space,Str "table",Space,Str "with",Space,Str "no",Space,Str "body:"] ,Table [] [AlignDefault] [0.0] [[Plain [Str "Header"]]] []] pandoc-1.16.0.2~dfsg/tests/writers-lang-and-dir.native0000644000000000000000000000466612645626061021273 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Header 1 ("empty-divs-and-spans",[],[]) [Str "Empty",Space,Str "Divs",Space,Str "and",Space,Str "Spans"] ,Plain [Str "Some",Space,Str "text",Space,Str "and"] ,Div ("",[],[]) [Para [Str "div",Space,Str "contents"]] ,Para [Str "and",Space,Str "more",Space,Str "text."] ,Para [Str "Next",Space,Str "paragraph",Space,Str "with",Space,Str "a",Space,Span ("",[],[]) [Str "span"],Space,Str "and",Space,Str "a",Space,Str "word-thatincludesa",Span ("",[],[]) [Str "span"],Str "right?"] ,Header 1 ("directionality",[],[]) [Str "Directionality"] ,Plain [Str "Some",Space,Str "text",Space,Str "and"] ,Div ("",[],[("dir","rtl")]) [Para [Str "rtl",Space,Str "div",Space,Str "contents"]] ,Para [Str "and",Space,Str "more",Space,Str "text."] ,Div ("",[],[("dir","ltr")]) [Para [Str "and",Space,Str "a",Space,Str "ltr",Space,Str "div.",Space,Str "with",Space,Str "a",Space,Span ("",[],[("dir","rtl")]) [Str "rtl",Space,Str "span"],Str "."]] ,Para [Str "Next",Space,Str "paragraph",Space,Str "with",Space,Str "a",Space,Span ("",[],[("dir","rtl")]) [Str "rtl",Space,Str "span"],Space,Str "and",Space,Str "a",Space,Str "word-that-includesa",Span ("",[],[("dir","ltr")]) [Str "ltrspan"],Str "right?"] ,Header 1 ("languages",[],[]) [Str "Languages"] ,Plain [Str "Some",Space,Str "text",Space,Str "and"] ,Div ("",[],[("lang","de")]) [Para [Str "German",Space,Str "div",Space,Str "contents"]] ,Para [Str "and",Space,Str "more",Space,Str "text."] ,Para [Str "Next",Space,Str "paragraph",Space,Str "with",Space,Str "a",Space,Span ("",[],[("lang","en-GB")]) [Str "British",Space,Str "span"],Space,Str "and",Space,Str "a",Space,Str "word-that-includesa",Span ("",[],[("lang","de-CH")]) [Str "Swiss",Space,Str "German",Space,Str "span"],Str "right?"] ,Para [Str "Some",Space,Span ("",[],[("lang","es")]) [Str "Spanish",Space,Str "text"],Str "."] ,Header 1 ("combined",[],[]) [Str "Combined"] ,Plain [Str "Some",Space,Str "text",Space,Str "and"] ,Div ("",[],[("lang","fr"),("dir","rtl")]) [Para [Str "French",Space,Str "rtl",Space,Str "div",Space,Str "contents"]] ,Para [Str "and",Space,Str "more",Space,Str "text."] ,Para [Str "Next",Space,Str "paragraph",Space,Str "with",Space,Str "a",Space,Span ("",[],[("lang","en-GB"),("dir","ltr")]) [Str "British",Space,Str "ltr",Space,Str "span"],Space,Str "and",Space,Str "a",Space,Str "word-that-includesa",Span ("",[],[("lang","de-CH"),("dir","ltr")]) [Str "Swiss",Space,Str "German",Space,Str "ltr",Space,Str "span"],Str "right?"]] pandoc-1.16.0.2~dfsg/tests/txt2tags.t2t0000644000000000000000000005356412645626062016346 0ustar rootrootTxt2tags Markup Rules author date %!includeconf: rules.conf This document describes all the details about each txt2tags mark. The target audience are **experienced** users. You may find it useful if you want to master the marks or solve a specific problem about a mark. If you are new to txt2tags or just want to know which are the available marks, please read the [Markup Demo MARKUPDEMO]. Note 1: This document is generated directly from the txt2tags test-suite. All the rules mentioned here are 100% in sync with the current program code. Note 2: A good practice is to consult [the sources rules.t2t] when reading, to see how the texts were made. Table of Contents: %%TOC ------------------------------------------------------------- = Paragraph =[paragraph] %INCLUDED(t2t) starts here: ../../../test/marks/paragraph.t2t %%% Syntax: Lines grouped together A paragraph is composed by one or more lines. A blank line (or a table, or a list) ends the current paragraph. %%% Syntax: Leading and trailing spaces are ignored Leading and trailing spaces are ignored. %%% Syntax: A comment don't close a paragraph A comment line can be placed inside a paragraph. % this comment will be ignored It will not affect it. %%% Closing: EOF closes the open paragraph The end of the file (EOF) closes the currently open paragraph. = Comment =[comment] %INCLUDED(t2t) starts here: ../../../test/marks/comment.t2t %%% Syntax: The % character at the line beginning (column 1) %glued with the % mark % separated from the % mark % very distant from the % mark %%%%%%% lots of % marks % a blank comment, used for vertical spacing: % % NOTE: what matters is the first % being at the line beginning, % the rest of the line is just ignored. %%% Syntax: Area (block) %%% You're not seeing this. %%% %%% Syntax: Area (block) with trailing spaces %%% You're not seeing this. %%% %%% Invalid: The % in any other position % not on the line beginning (at column 2) some text % half line comments are not allowed = Line =[line] %INCLUDED(t2t) starts here: ../../../test/marks/line.t2t %%% Syntax: At least 20 chars of - = _ -------------------- ==================== ____________________ %%% Syntax: Any kind of mixing is allowed %% Free mixing is allowed to make the line, %% but the first char is the identifier for %% the difference between separator ( - _ ) %% and strong ( = ) lines. =========----------- -_-_-_-_-_-_-_-_-_-_ =-=-=-=-=-=-=-=-=-=- =------------------= --------====-------- %%% Syntax: Leading and/or trailing spaces are allowed -------------------- -------------------- -------------------- %%% Invalid: Less than 20 chars (but strike matches) --------- %%% Invalid: Strange chars (but strike matches) --------- ---------- ---------+---------- ( -------------------- ) = Inline =[inline] %INCLUDED(t2t) starts here: ../../../test/marks/inline.t2t %%% Syntax: Marks are greedy and must be "glued" with contents %% GLUED: The contents must be glued with the marks, no spaces %% between them. Right after the opening mark there must be a %% non-blank character, as well as right before the closing mark. %% %% GREEDY: If the contents boundary character is the same as %% the mark character, it is considered contents, not mark. %% So ""****bold****"" turns to ""**bold**"" in HTML. i) **b** //i// __u__ --s-- ``m`` ""r"" ''t'' i) **bo** //it// __un__ --st-- ``mo`` ""ra"" ''tg'' i) **bold** //ital// __undr__ --strk-- ``mono`` ""raw"" ''tggd'' i) **bo ld** //it al// __un dr__ --st rk-- ``mo no`` ""r aw"" ''tg gd'' i) **bo * ld** //it / al// __un _ dr__ --st - rk-- ``mo ` no`` ""r " aw"" ''tg ' gd'' i) **bo **ld** //it //al// __un __dr__ --st --rk-- ``mo ``no`` ""r ""aw"" ''tg ''gd'' i) **bo ** ld** //it // al// __un __ dr__ --st -- rk-- ``mo `` no`` ""r "" aw"" ''tg '' gd'' i) ****bold**** ////ital//// ____undr____ ----strk---- ````mono```` """"raw"""" ''''tggd'''' i) ***bold*** ///ital/// ___undr___ ---strk--- ```mono``` """raw""" '''tggd''' %%% Syntax: Repetition is greedy %% When the mark character is repeated many times, %% the contents are expanded to the largest possible. %% Thats why they are greedy, the outer marks are %% the ones used. i) ***** ///// _____ ----- ````` """"" ''''' i) ****** ////// ______ ------ `````` """""" '''''' i) ******* /////// _______ ------- ``````` """"""" ''''''' i) ******** //////// ________ -------- ```````` """""""" '''''''' i) ********* ///////// _________ --------- ````````` """"""""" ''''''''' i) ********** ////////// __________ ---------- `````````` """""""""" '''''''''' %%% Invalid: No contents i) **** //// ____ ---- ```` """" '''' i) ** ** // // __ __ -- -- `` `` "" "" '' '' %%% Invalid: Contents not "glued" with marks %% Spaces between the marks and the contents in any side %% invalidate the mark. i) ** bold** // ital// __ undr__ -- strk-- `` mono`` "" raw"" '' tggd'' i) **bold ** //ital // __undr __ --strk -- ``mono `` ""raw "" ''tggd '' i) ** bold ** // ital // __ undr __ -- strk -- `` mono `` "" raw "" '' tggd '' = Link =[link] %INCLUDED(t2t) starts here: ../../../test/marks/link.t2t %%% Syntax: E-mail user@domain.com user@domain.com. user@domain.com. any text. any text: user@domain.com. any text. [label user@domain.com] %%% Syntax: E-mail with form data user@domain.com?subject=bla user@domain.com?subject=bla. user@domain.com?subject=bla, user@domain.com?subject=bla&cc=otheruser@domain.com user@domain.com?subject=bla&cc=otheruser@domain.com. user@domain.com?subject=bla&cc=otheruser@domain.com, [label user@domain.com?subject=bla&cc=otheruser@domain.com]. [label user@domain.com?subject=bla&cc=otheruser@domain.com.]. %%% Syntax: URL http://www.domain.com http://www.domain.com/dir/ http://www.domain.com/dir/// http://www.domain.com. http://www.domain.com, http://www.domain.com. any text. http://www.domain.com, any text. http://www.domain.com/dir/. any text. any text: http://www.domain.com. any text. any text: http://www.domain.com/dir/. any text. any text: http://www.domain.com/dir/index.html. any text. any text: http://www.domain.com/dir/index.html, any text. %%% Syntax: URL with anchor http://www.domain.com/dir/#anchor http://www.domain.com/dir/index.html#anchor http://www.domain.com/dir/index.html#anchor. http://www.domain.com/dir/#anchor. any text. http://www.domain.com/dir/index.html#anchor. any text. any text: http://www.domain.com/dir/#anchor. any text. any text: http://www.domain.com/dir/index.html#anchor. any text. %%% Syntax: URL with form data http://domain.com?a=a@a.a&b=a+b+c. http://domain.com?a=a@a.a&b=a+b+c, http://domain.com/bla.cgi?a=a@a.a&b=a+b+c. http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@. %%% Syntax: URL with form data and anchor http://domain.com?a=a@a.a&b=a+b+c.#anchor http://domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@.#anchor %%% Syntax: URL with login data http://user:password@domain.com/bla.html. http://user:password@domain.com/dir/. http://user:password@domain.com. http://user:@domain.com. http://user@domain.com. %%% Syntax: URL with login, form and anchor http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c@#anchor %%% Syntax: URL with label [label www.domain.com] %%% Syntax: URL with label (trailing spaces are discarded, leading are maintained) %TODO normalize this behavior [ label www.domain.com] [label www.domain.com] %%% Syntax: URL with label, stressing [anchor http://www.domain.com/dir/index.html#anchor.] [login http://user:password@domain.com/bla.html] [form http://www.domain.com/bla.cgi?a=a@a.a&b=a+b+c.] [form & anchor http://www.domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor] [login & form http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c.] %%% Syntax: Link with label for local files [local link up ..] [local link file bla.html] [local link anchor #anchor] [local link file/anchor bla.html#anchor] [local link file/anchor bla.html#anchor.] [local link img abc.gif] %%% Syntax: Another link as a label [www.fake.com www.domain.com] %%% Syntax: URL with funny chars http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_- http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_-1%. http://foo._user-9:pass!#$%&*()+word@domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_-1%. %%% Test: Various per line http://L1.com ! L2@www.com ! [L3 www.com] ! [L4 w@ww.com] ! www.L5.com %%% Feature: Guessed link, adding protocol automatically www.domain.com www2.domain.com ftp.domain.com WWW.DOMAIN.COM FTP.DOMAIN.COM [label www.domain.com] [label ftp.domain.com] [label WWW.DOMAIN.COM] [label FTP.DOMAIN.COM] %%% Invalid: Trailing space on link [label www.domain.com ] %%% Invalid: Label with ] char (use postproc) [label] www.domain.com] = Image =[image] %INCLUDED(t2t) starts here: ../../../test/marks/image.t2t %%% Syntax: Image name inside brackets: [img] [img.png] %%% Syntax: Image pointing to a link: [[img] link] [[img.png] http://txt2tags.org] %%% Align: Image position is preserved when inside paragraph [img.png] Image at the line beginning. Image in the middle [img.png] of the line. Image at the line end. [img.png] %%% Align: Image alone with spaces around is aligned [img.png] [img.png] [img.png] %%% Test: Two glued images with no spaces (left & right) [img.png][img.png] %%% Test: Various per line Images [img.png] mixed [img.png] with [img.png] text. Images glued together: [img.png][img.png][img.png]. %%% Invalid: Spaces inside are not allowed [img.png ] [ img.png] [ img.png ] % Ignored as they change every time when run = Numbered Title =[numtitle] %%% Syntax: Balanced equal signs (from 1 to 5) + Title Level 1 + ++ Title Level 2 ++ +++ Title Level 3 +++ ++++ Title Level 4 ++++ +++++ Title Level 5 +++++ %%% Label: Between brackets, alphanumeric [A-Za-z0-9_-] + Title Level 1 +[lab_el-1] ++ Title Level 2 ++[lab_el-2] +++ Title Level 3 +++[lab_el-3] ++++ Title Level 4 ++++[lab_el-4] +++++ Title Level 5 +++++[lab_el-5] %%% Syntax: Spaces around and/or inside are allowed (and ignored) +++Title Level 3+++ +++ Title Level 3 +++ +++ Title Level 3 +++ +++ Title Level 3 +++ +++ Title Level 3 +++ +++ Title Level 3 +++[lab_el-9] %%% Invalid: Unbalanced equal signs +Not Title ++Not Title+ +++Not Title++++ %%% Invalid: Level deeper than 5 ++++++Not Title 6++++++ +++++++Not Title 7+++++++ %%% Invalid: Space between title and label +Not Title+ [label1] %%% Invalid: Space inside label +Not Title+[ label ] %%% Invalid: Strange chars inside label +Not Title+[la/bel] = Title =[title] %INCLUDED(t2t) starts here: ../../../test/marks/title.t2t %%% Syntax: Balanced equal signs (from 1 to 5) = Title Level 1 = == Title Level 2 == === Title Level 3 === ==== Title Level 4 ==== ===== Title Level 5 ===== %%% Label: Between brackets, alphanumeric [A-Za-z0-9_-] = Title Level 1 =[lab_el-1] == Title Level 2 ==[lab_el-2] === Title Level 3 ===[lab_el-3] ==== Title Level 4 ====[lab_el-4] ===== Title Level 5 =====[lab_el-5] %%% Syntax: Spaces around and/or inside are allowed (and ignored) ===Title Level 3=== === Title Level 3 === === Title Level 3 === === Title Level 3 === === Title Level 3 === === Title Level 3 ===[lab_el-9] %%% Invalid: Unbalanced equal signs =Not Title ==Not Title= ===Not Title==== %%% Invalid: Level deeper than 5 ======Not Title 6====== =======Not Title 7======= %%% Invalid: Space between title and label =Not Title= [label1] %%% Invalid: Space inside label =Not Title=[ label ] %%% Invalid: Strange chars inside label =Not Title=[la/bel] = Quote =[quote] %INCLUDED(t2t) starts here: ../../../test/marks/quote.t2t To quote a paragraph, just prefix it by a TAB character. All the lines of the paragraph must begin with a TAB. Any non-tabbed line closes the quote block. %%% Nesting: Creating deeper quotes The number of leading TABs identifies the quote block depth. This is quote level 1. With two TABs, we are on the quote level 2. The more TABs, more deep is the quote level. There isn't a limit. %%% Nesting: Reverse nesting works This quote starts at level 4. Then its depth is decreased. Counting down, one by one. Until the level 1. %%% Nesting: Random count Unlike lists, any quote block is independent, not part of a tree. The TAB count don't need to be incremental by one. The nesting don't need to follow any rule. Quotes can be opened and closed in any way. You choose. %%% Nesting: When not supported Some targets (as sgml) don't support the nesting of quotes. There is only one quote level. In this case, no matter how much TABs are used to define the quote block, it always will be level 1. %%% Syntax: Spaces after TAB Spaces AFTER the TAB character are allowed. But be careful, it can be confusing. %%% Invalid: Spaces before TAB Spaces BEFORE the TAB character invalidate the mark. It's not quote. %%% Invalid: Paragraphs inside Paragraph breaks inside a quote aren't possible. This sample are two separated quoted paragraphs, not a quote block with two paragraphs inside. %%% Closing: EOF closes the open block The end of the file (EOF) closes the currently open quote block. = Raw =[raw] %%% Syntax: A single line """ A raw line. %%% Syntax: A single line with leading spaces """ Another raw line, with leading spaces. %%% Syntax: Area (block) """ A raw area delimited by lines with marks. """ %%% Syntax: Area (block) with trailing spaces """ Trailing spaces and TABs after the area marks are allowed, but not encouraged nor documented. """ %%% Invalid: No space between mark and contents """Not a raw line, need one space after mark. %%% Invalid: Leading spaces on block marks """ Not a raw area. The marks must be at the line beginning, no leading spaces. """ %%% Closing: EOF closes the open block """ The end of the file (EOF) closes the currently open raw area. """ = Verbatim =[verbatim] %INCLUDED(t2t) starts here: ../../../test/marks/verbatim.t2t %%% Syntax: A single line ``` A verbatim line. %%% Syntax: A single line with leading spaces ``` Another verbatim line, with leading spaces. %%% Syntax: Area (block) ``` A verbatim area delimited by lines with marks. ``` %%% Syntax: Area (block) with trailing spaces ``` Trailing spaces and TABs after the area marks are allowed, but not encouraged nor documented. ``` %%% Invalid: No space between mark and contents ```Not a verbatim line, need one space after mark. %%% Invalid: Leading spaces on block marks ``` Not a verbatim area. The marks must be at the line beginning, no leading spaces. ``` %%% Closing: EOF closes the open block ``` The end of the file (EOF) closes the currently open verbatim area. ``` = Definition List =[deflist] : Definition list A list with terms : Start term with colon And its definition follows = Numbered List =[numlist] See [List #list], the same rules apply. = List =[list] %INCLUDED(t2t) starts here: ../../../test/marks/list.t2t %%% Items: Prefixed by hyphen - Use the hyphen to prefix list items. - There must be one space after the hyphen. - The list is closed by two consecutive blank lines. %%% Items: Free leading spacing (indentation) - The list can be indented on the source document. - You can use any number of spaces. - The result will be the same. %%% Items: Vertical spacing between items - Let one blank line between the list items. - It will be maintained on the conversion. - Some targets don't support this behavior. - This one was separated by a line with blanks. You can also put a blank line inside the item contents and it will be preserved. %%% Items: Exactly ONE space after the hyphen -This is not a list (no space) - This is not a list (more than one space) - This is not a list (a TAB instead the space) %%% Items: Catchy cases - - This is a list - + This is a list - : This is a list %%% Nesting: Creating sublists - This is the "mother" list first item. - Here is the second, but inside this item, - there is a sublist, with its own items. - Note that the items of the same sublist - must have the same indentation. - And this can go on, opening sublists. - Just add leading spaces before the - hyphen and sublists will be opened. - The two blank lines closes them all. %%% Nesting: Free leading spacing (indentation) - When nesting lists, the additional spaces are free. - You can add just one, - or many. - What matters is to put more than the previous. - But remember that the other items of the same list - must use the same indentation. %%% Nesting: Maximum depth - There is not a depth limit, - you can go deeper and deeper. - But some targets may have restrictions. - The LaTeX maximum is here, 4 levels. %%% Nesting: Reverse doesn't work - Reverse nesting doesn't work. - Because a sublist *must* have a mother list. - It's the list concept, not a txt2tags limitation. - All this sublists will be bumped to mother lists. - At level 1, like this one. %%% Nesting: Going deeper and back %% When nesting back to an upper level, the previous sublist %% is automatically closed. - Level 1 - Level 2 - Level 3 - Level 4 - Level 3 -- (closed Level 4) - Level 2 -- (closed Level 3) - Level 1 -- (closed Level 2) %% More than one list can be closed when nesting back. - Level 1 - Level 2 - Level 3 - Level 4 - Level 1 -- (closed Level 4, Level 3 and Level 2) %%% Nesting: Vertical spacing between lists - Level 1 - Level 2 -- blank BEFORE and AFTER (in) - Level 3 % comment lines are NOT considered blank lines - Level 4 % comment lines are NOT considered blank lines - Level 3 - Level 2 -- blank BEFORE and AFTER (out) - Level 1 - Level 2 -- blank BEFORE (spaces) and AFTER (TAB) - Level 3 %%% Nesting: Messing up %% Be careful when going back on the nesting, %% it must be on a valid level! If not, it will %% be bumped up to the previous valid level. - Level 1 - Level 2 - Level 3 - Level 4 - Level 3.5 ??? - Level 3 - Level 2.5 ??? - Level 2 - Level 1.5 ??? - Level 1 %%% Closing: Two (not so) empty lines - This list is closed by a line with spaces and other with TABs - This list is NOT closed by two comment lines % comment lines are NOT considered blank lines % comment lines are NOT considered blank lines - This list is closed by a line with spaces and TAB, - then a comment line, then an empty line. % comment lines are NOT considered blank lines %%% Closing: Empty item closes current (sub)list %% The two blank lines closes ALL the lists. %% To close just the current, use an empty item. - Level 1 - Level 2 - Level 3 - Level 2 - Level 1 - %% The empty item can have trailing blanks. - Empty item with trailing spaces. - - Empty item with trailing TAB. - %%% Closing: EOF closes the lists - If the end of the file (EOF) is hit, - all the currently opened list are closed, - just like when using the two blank lines. = Table =[table] %INCLUDED(t2t) starts here: ../../../test/marks/table.t2t %%% Syntax: Lines starting with a pipe | | Cell 1 %%% Syntax: Extra pipes separate cells | Cell 1 | Cell 2 | Cell 3 %%% Syntax: With a trailing pipe, make border | Cell 1 | Cell 2 | Cell 3 | %%% Syntax: Table lines starting with double pipe are heading || Cell 1 | Cell 2 | Cell 3 | %%% Align: Spaces before the leading pipe centralize the table | Cell 1 | Cell 2 | Cell 3 | %%% Align: Spaces inside the cell denote its alignment || Heading | Heading | Heading | % comments don't close an opened table | <- | -- | -> | | -- | -- | -- | | -> | -- | <- | %%% Span: Column span is defined by extra pipes at cell closing || 1 | 2 | 3+4 || | 1 | 2 | 3 | 4 | | 1+2+3 ||| 4 | | 1 | 2+3 || 4 | | 1+2+3+4 |||| %%% Test: Empty cells are placed as expected | 0 | 1 | 2 | | | 4 | 5 | | 7 | | 8 | | A | B | | | D | E | F | %%% Test: Lines with different number of cells | 1 | | 1 | 2 | | 1 | 2 | 3 | | 1 | 2 | 3 | 4 | | 1 | 2 | 3 | 4 | 5 | %%% Test: Empty cells + Span + Messy cell number = Fun! | Jan | | Fev || | Mar ||| | Apr |||| | May ||||| | 20% | 40% | 60% | 80% | 100% | | | | / | | | | | / / / / / ||| | | / / / / / / / / / ||||| | | o | | o | | | | | . | | | | | = = = = ||| | | 01 | 02 | | | 05 | | 07 | | | | | 11 | | 13 | | | 16 | | 17 | | 19 | 20 | | | 23 | | | 25 | 26 | | | 29 | 30 | | 32 | | | | 35 | | 37 | | 39 | 40 | %%% Test: Lots of cells at the same line | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F | %%% Test: Empty lines | | | | | | %%% Invalid: There must be at least one space around the pipe |this|is|not|a|table| |this| is| not| a| table| |this |is |not |a |table | %%% Invalid: You must use spaces, not TABs | this | is | not | a | table | ------------------------------------------------------------ The End. pandoc-1.16.0.2~dfsg/tests/writers-lang-and-dir.latex0000644000000000000000000000755312645626061021120 0ustar rootroot\documentclass[english,]{article} \usepackage{lmodern} \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} \fi % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} \usepackage{hyperref} \hypersetup{unicode=true, pdfborder={0 0 0}, breaklinks=true} \urlstyle{same} % don't use monospace font for urls \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[shorthands=off,ngerman,british,ngerman,spanish,french,main=english]{babel} \newcommand{\textgerman}[2][]{\foreignlanguage{ngerman}{#2}} \newenvironment{german}[1]{\begin{otherlanguage}{ngerman}}{\end{otherlanguage}} \newcommand{\textenglish}[2][]{\foreignlanguage{british}{#2}} \newenvironment{english}[1]{\begin{otherlanguage}{british}}{\end{otherlanguage}} \let\oritextspanish\textspanish \AddBabelHook{spanish}{beforeextras}{\renewcommand{\textspanish}{\oritextspanish}} \AddBabelHook{spanish}{afterextras}{\renewcommand{\textspanish}[2][]{\foreignlanguage{spanish}{##2}}} \newcommand{\textfrench}[2][]{\foreignlanguage{french}{#2}} \newenvironment{french}[1]{\begin{otherlanguage}{french}}{\end{otherlanguage}} \else \usepackage{polyglossia} \setmainlanguage[]{english} \setotherlanguage[]{german} \setotherlanguage[variant=british]{english} \setotherlanguage[variant=swiss]{german} \setotherlanguage[]{spanish} \setotherlanguage[]{french} \fi \IfFileExists{parskip.sty}{% \usepackage{parskip} }{% else \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} } \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} \setcounter{secnumdepth}{0} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} \fi \ifxetex % load bidi as late as possible as it modifies e.g. graphicx \usepackage{bidi} \fi \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \TeXXeTstate=1 \newcommand{\RL}[1]{\beginR #1\endR} \newcommand{\LR}[1]{\beginL #1\endL} \newenvironment{RTL}{\beginR}{\endR} \newenvironment{LTR}{\beginL}{\endL} \fi \date{} \begin{document} \section{Empty Divs and Spans}\label{empty-divs-and-spans} Some text and div contents and more text. Next paragraph with a {span} and a word-thatincludesa{span}right? \section{Directionality}\label{directionality} Some text and \begin{RTL} rtl div contents \end{RTL} and more text. \begin{LTR} and a ltr div. with a \RL{rtl span}. \end{LTR} Next paragraph with a \RL{rtl span} and a word-that-includesa\LR{ltrspan}right? \section{Languages}\label{languages} Some text and \begin{german} German div contents \end{german} and more text. Next paragraph with a \textenglish[variant=british]{British span} and a word-that-includesa\textgerman[variant=swiss]{Swiss German span}right? Some \textspanish{Spanish text}. \section{Combined}\label{combined} Some text and \begin{RTL} \begin{french} French rtl div contents \end{french} \end{RTL} and more text. Next paragraph with a \LR{\textenglish[variant=british]{British ltr span}} and a word-that-includesa\LR{\textgerman[variant=swiss]{Swiss German ltr span}}right? \end{document} pandoc-1.16.0.2~dfsg/tests/dokuwiki_inline_formatting.dokuwiki0000644000000000000000000000053312645626061023304 0ustar rootrootRegular text //italics// **bold //bold italics//**. This is Small Caps, and this is strikethrough. Some people use single underlines for //emphasis//. Above the line is superscript and below the line is subscript. A line\\ break. hello %%//%% world %%**%% from %%__%% me ''%%hello // world ** from __ me%%'' pandoc-1.16.0.2~dfsg/tests/lalune.jpg0000644000000000000000000003761612645626061016114 0ustar rootrootJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((>!1"AQaq2#BR3br$C&S!1A ? pOj~7u .|TF~J#{4&'a\'8h6o%&)d?S5̗Wo53I!,za[ sEvܸ'@ )lq'?Nv@ 1vx,z#f}@!( QpOx0c% |fw 獣 cކ |Q\Qr ;v4J>7|3Bh'+.|g*IǮ}{Ph h% b@YP+a($恻)|*qڀG@W>Ss4ݴIbB $F[aFIb$EnW ZnֺѭeRIFV544}*/5jqȇ˾ZD1ʚ.mo!E]{odh=>Ux j ހd{UhVi Hb(nAh-3SMQlm+^/UgMYӮm@ξSn&=Qtv}iP22IQ\O}4IIH2W'.qDc6MBv~xQ| 2GAg٠BNN=(:RK'l}4 P)9ݨ-Ė$aD N3҉OzsBԺVOa%qbp}_{K]\]Ȋ l>ѭimj[@8TƎC)a"T{ \\Gn84{hXfq@rMz*@{h8 ʂ{/ أdA} ]Y ӯKNO#n|UtaZhg=f؊۞=EPvۃP7$|9'$ǭ `zQ*zsPpq7(&na^ֳ[4<81+ށWh2d*pO| z{{d'@|IA9JNP &>Sh, :Xm±WėRpcG:ގ1X+Is(k8~2p;A(8d4̀Kg2h1~mVR3Y/cSJAv>q){Uh(\jW^wt&O'('KU H6@(7)z wwh9WːH 'JnдvXkqC"Jv>e]1;ԃ[Hua.r!S^⠄랋5Ibxz>zgA"Wu H$A9#hy47͒wsbıe40PFGހF;Pϟ'>{@X EJ@rh+6!b] 'f-j 2)U@pۆsށsbhmdp㷶>tbR뵽F@v<Ο:g0pc1q}`z8hХyh,'èk Ë;uk8zOu.\^27an‚zM\ڀ6JIb䌒#sFu[WA w0X~.}#\F8E~ZBPFkH/'BBA 8EAϡ}3=+[B,zZFǖhnNMhGҀduHZD8]%ݽjc2Vl_lP*P,QO0($~c@A4C+0h86s@ buwF{P~T#q PFZ[pw ?0`?]M(C;m5`tW'Ƴ[x敝r1X6d{t's d([сR8,|AyC.,cC:vU[zQT[ .n@S l+6/m9$~X>%;t緐IG_NeCj2K*# Oo tcy)0@Ppڠ\'$vAhAX!sZ%o*Xla3!iXdQ)fcJLz^HeԓpR@>'?,J('G!\`\g@QK%-gPI( mka/n G?>>JM޼1EՃV ŕcʣGD:zP4MzM1Rd޴^g/8&CFQV}#> H(4 <>B'挜}?Zɾ+{nz_UkFd'@_$vPhH_T\ܽb˩ dUsRO-bG_XğQz;%7P7B bG<v;*2W+pEmZaM& PEuv<>$ Q#_|f ۩1aNs\L?HF($u3S(/-,⹷%w,r+ H8# XOJmN[NU6o!##Ci-0x19}=q@Pk,Ls$rm,Ү C[qsxvH!$L14{k1 C㲽K)к}^YOR;R}p!Dq)qք* O>Z,qsE%"m9⃣b@4J8G3'n8ݤ)D9Yf Be- EOb}A|:=֍ҤWeKö{zwEץGKҺMWH$]] u7XǤkG%ܒ'(Ocϯ;YMG͉ ނnTYMKdggk]jr JѬy bA߈yuv{8£n~mAkz+amaG7W;җαwۜE&r>>%)v49ϋkqӎ6sAREH@s(igyo( -6c MX<ǦhKX7=͚1F"ϥQazOU鮣#8ǵ(ӟLҺvWҒNcB ᱵvsY}3-k*M8?޵5hLT 6K +3Y( gXVՏdѨ Jc iv)8r{@B%=@F `?h' h6_FbdB@2Q^BH`+!" ۽` !TAͬtXSρ"G%\|J.ϫ;KK:.@k 3dzCW!Q- &P鏝}ҽ/ɪMr-Fcz2׽}=]4jGTFH;d<պ9ŴRF8g(sO4:?XW*:_ *-> gjN\m='bf|[PH:dTl8e~n[-p"T]UpK;qn( < ,eoq> k!Z!f?,U;wz}"Q,(vɕFq>hzwI [bW+FVLdM &*D .[}87[imtȩ,xh['M9@Eqm⤞ ӱ ?A0p؜Z->ctkLRF 0,;~e!bXr!z7KEmM332ɴGz=+KmP9cE8 1=P18@Aj~t0%VEyVT$п-kH b +XV@IY/ԣ[o9HU"BGb>cP+ 6EG8-uRl[=oaWGkgQ+%KRcxՂ*E sy?@Ef՚F)<lD~%)-$P\?${z`@`YCcxzѡX:qgg˛kU$X>8- MK}A;f_a[fJe-܌jZ,&5;P(cAKFQAAuD3_ 3_ WsъuJ?LG3^5L7BTc5eRVHKW{KkK'*OW=Zv$S̫e<lژ=l@v0k"?'s&K%B/n1Ogu{g6(7΋4xR!" F璤F22K$E-lc28+tu亄pfE v<)m+`n'>C3$J"yA :u`lo@C!' !}dyMӮk䷱+0W{+K^i`|zUPu5̪w#;n8 z[=x Sx gZ[v]CZjӲZABp0=(1THx_"S#G}4]+y.R(W>DIvvE&%&YW <`w$*h>iPJ%*#*oJZ&mM)r?QP-˟jcȠ1`Y4 NXF)>$F`A҂?V-{-naFA#5eJ{\mr?*hu_eomLM2lʌ)L4 vqx9*0 >ƚ&d >ml K9|F\OGCnŠ"( Z[j Z[,<[\cY?ۙtid29!9g0YeΚ۪&yݜSrϬVjZIin78U_y5_%]%vFy#Ƿ^`4Bj>A$FW_,2CG2?n8a#}KPt͎pj`N>$csH=F;7>thZBdrެJ;zhA k!>zNrO˵K׃ZRӯucTwfH= +CRTz 4$o'4:tbtWx |ڃrK$m>d8MUpO,ua__aӭm41ݟAۏzgZ%ѯ$r401]jԳHGqi^&bl0`;dRكY@V`7cyػ}OowsgZqpC 3ή ƒ6RfW^:`u'43Fx`o@Tq@P@XQ3Ƀwo\[x"&vlg#Aݏ'P3u..7V[/ܿ* +ݚ1P Su-֝ʐhvDe昁\g gGQ,۵-(N_5T'ymqPc}[]SbZcx`r0X 58G{$T{tφjpF9UѧƋg=՝bmuk='p#`=Pe=A0.H#*!6>_ϧHUn0F#>ރHkTxyGGZ8Z.< #F5x@}܋O˟A-/ ńK0#kF}8?j UjgZ Tho iNj.%rqW.zc>A⦩ Gs@?h-޷r̚lEn\콎XRGkI%RE u# 2i6#FI@d05{o 7+4 Kn%)Jgx9CXi"cnLcjy-NUO.äAܱ9'8ɪ-KBxnHp#[t1^: @dU=k&iœ1A~U#PX6:Y1BIV=~=S㶸#Zc9zu{hB/$zΥQjNuD:.rnjՂcD[k%幝qXTӚu{kbKxB'ēT X֮/mKI؀HΧԓAu 2;x2N0Cφ iOfHi}{B[-[msRK.uUȅERhl9TvKa6$B "c>#4:{c.qܞV'Z=Q;A{U3su֚r;]&]$sD^) BNA$8PHt]*-e%uz\uM V6CBSi@;Ճ}_?ZtشjOp}(~Tѡl1-.dAxA)mpor0€uNC0lE,X3h&c`޼{PVTtWD'PTՃ$zr^+8QiW9C8Fl\ #*JTk!.c,B{hQ> 4[.sx8BZT9\vOTBI18`Ѧ/V:[b_w^G-&DfJǷJ0Mvei|>&ct'8V}v_ԘY\aAo..2A'Fhѱf±Λca?栖ӺWHH[R Æ{u[t 5̐<c w@\]]E{5@ӏюW GQz WTԚN۠"K2w('h/~kk:kt4 raA,N0A(+]K=;=z@ )-<*y#[7;hWU^w$LT(Fe]VܜeV_Nʂ>\_[F@.3wJu~rJ|Ŗ{igTMblF\0I$3Ko$ʲ7 ݃d ݬ7d,8cmo` 7)R}ssyh2ӎ0&]]yF{ce+hY]B.]F͢V*v1lxv, OZWP\Xp]t+z[fr`--$#JHu(ǧMas4sZ!B1=P_ 8 \P.g]EM7[lz@ Γucjj'OJNo:R+J+$ȤH;c8zI my, ]7G?CuņDVZݤ·xN9ck2}AvkĎLEok ώK8)|N(9X&<~ǗdR6PhIQ}}(WW\[iQ]w(wdާs珝1+ֵR=Goރ ?K,'{(G/ՅX%:j@b(:Ff1j|$fϹ9Q_t{^n5 .qvI7Ѻi k)DJPdck1%I?QѼ2|lI8 /NWp[lP{sRZzm vH[ҭ$H3=ꖉta[_.wy&mfPhGr>*둓*NS@,+g$G΁18y' hRkvn觅?@vx7H;T?nP/s7c& PzV]IBہSYEonbI[req=4g^[7OX- JW=Z uSteyWvKԴ ;rXn?*7duJʑPh_ a/iXд{7ޖnNj[f YM19'*Z4W7y]fy~@YZ;0|&ѓoԤǽ#09ۃ8Ak*أ^9';ՐCkoi ,Kq#`,vybN3}I>e%*kZ>Vm`Ϙ1 I a>A09g{zgPAe\)'s# -x40 ZO.3Fj,VKERTj`h$ lPGʖe᷒JZ4a$c?\Qhsi< $b-ɁvH`/θ0q'{٨5$ r2;znc1G*xP4LhO 7M[W鋙mMf gΗ?MKn/%˂rNyVP?Q4ڏ+mj 9~IcXr9>U6oR,nk$zg]Z-LV@6Y#~2){A4;f q=MJi]=kg˩KNaNJcjJ Qᛖoz5eVM{Pbuw[iŽmcxwڮ 5R7MwE%!€`=j $020@UϠ|E׵۝F.`K.4~NJg d:.S&!!vvez2cPfi[$(#ːhd`hAmb@,=hFr#tC ދ}\(5|&ֶ*)SGzmd$6I>Ps)HA p<@qȄ>@houe2b;~EcPIL  uwlf4$4=]kz|v_%d|(ed}u,į.O>_GIKlIed= \ $m>7 ]4x I'J`h]_k-$p̛wʪ;AU#HܸFTDT{89/kSk]5cSĝPq ƷtNrBmDŽŕd E̽O˫BV8,F k' /֯<"8ǩ0dRit)r#ɑ(09=5j7z#Y~^C_8$S[`e8;Pw9WT>T} JiɎ(BayS8=l)$pVtqwd@X?&`f"I->Rhkyhd: d3R/i<-nxnmFi)_W e0FӻcɫOEbΣo:Ds2Ƙľ3zU4aLM*i\0?>8l@{^kdb ll7ܞkBj/ kQm v2/ǏlfߣZ]`;lLjv+3(1IK#sh%@4x]s@ ;>T&wS#=))|b&yFآ>18\sڋY Gܮ=>pO|PXmd1aN$a@0h'tީxDc.^=(4^7P3p0=v5iMuYomZ# Yݎ A'/Mm9YX5֕Ӷ&} [ncwzx+&W0y9=Xu%M{{mfҸR_RrOAkם/רX/{KyivRw悰jU^ wA$hlB>q(ř%'q<}C }@mA;#9bpx[:23EUs*Ah 6q@S4ٍ2*>po *[ J4:Q ߿Ή es?DB]FsseXc;w`{f Gd9$~`:N cYs9pL]W! PgϿژ/|t4JHGb+z-#\[@fA,o^1`5ތԣeb75ֳFn:Ey"Iku-5fϕW#qZCM"u2]kOo*28 \_Sw,ĉ$1'V\ g`H|;SB+,@'8 \O=@(w?JOFP-ʌ}j? s@pF{˜h'Kڤ@vRIGl@&H#4h g@phM<{ $g2ۈE1P`9P&2yh #H=@[ yPn!@"8wPߜo(y "=G&cF 4rc@``ǁP$ ׵qC.]NodNH{P;N9X3 #0^2 LZ+ {hq(w1总ݻ1(7df$<%!%NO!榀۞x)F=tJl8WDZ7+yN9 $$ G hQst9L#zP@o6(7s;(~S@H ##<WnzCw'(p9T`ځPpandoc-1.16.0.2~dfsg/tests/markdown-reader-more.txt0000644000000000000000000001055212645626061020703 0ustar rootroot% Title spanning multiple lines % Author One Author Two; Author Three; Author Four # Additional markdown reader tests ## Blank line before URL in link reference [foo] and [bar] [foo]: /url [bar]: /url "title" ## Raw ConTeXt environments \placeformula \startformula L_{1} = L_{2} \stopformula \start[a2] \start[a2] \stop[a2] \stop[a2] ## URLs with spaces and punctuation [foo](/bar and baz) [foo](/bar and baz ) [foo]( /bar and baz ) [foo](bar baz "title" ) [baz][] [bam][] [bork][] [baz]: /foo foo [bam]: /foo fee [bork]: /foo/zee zob (title) [Ward's method.](http://en.wikipedia.org/wiki/Ward's_method) ## Horizontal rules with spaces at end * * * * * -- - -- -- - ## Raw HTML before header ### my header ## $ in math $\$2 + \$3$ $x = \text{the $n$th root of $y$}$ This should not be math: $PATH 90 $PATH ## Commented-out list item - one - three ## Indented code at beginning of list - code code 1. code code 12345678. code code - code code - no code ## Backslash newline hi\ there ## Code spans `hi\` `hi there` `` hi````there `` `hi there` ## Multilingual URLs [foo](/bar/测?x=测 "title") <测@foo.测.baz> ## Numbered examples (@) First example. (@foo) Second example. Explanation of examples (@foo) and (@bar). (@bar) Third example. ## Macros \newcommand{\tuple}[1]{\langle #1 \rangle} $\tuple{x,y}$ ## Case-insensitive references [Fum] [FUM] [bat] [fum]: /fum [BAT]: /bat ## Curly smart quotes “Hi” ‘Hi’ ## Consecutive lists - one - two 1. one 2. two a. one b. two ## Implicit header references ### My header ### My other header A link to [My header]. Another link to [it][My header]. Should be [case insensitive][my header]. Link to [Explicit header attributes]. [my other header]: /foo But this is not a link to [My other header], since the reference is defined. ## Explicit header attributes {#foobar .baz key="val"} > ## Header attributes inside block quote {#foobar .baz key="val"} ## Line blocks | But can a bee be said to be | or not to be an entire bee, | when half the bee is not a bee, | due to some ancient injury? | | Continuation line | and another ## Grid Tables +------------------+-----------+------------+ | col 1 | col 2 | col 3 | +==================+===========+============+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Headless +------------------+-----------+------------+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Spaces at ends of lines +------------------+-----------+------------+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Multiple blocks in a cell +------------------+-----------+------------+ | # col 1 | # col 2 | # col 3 | | col 1 | col 2 | col 3 | +------------------+-----------+------------+ | r1 a | - b | c | | | - b 2 | c 2 | | r1 bis | - b 2 | c 2 | +------------------+-----------+------------+ Empty cells +---+---+ | | | +---+---+ ## Entities in links and titles [link](/ürl "öö!") [foobar] [foobar]: /ürl "öö!" ## Parentheses in URLs [link](/hi(there)) [link](/hithere\)) [linky] [linky]: hi_(there_(nested)) ## Backslashes in link references [\*\a](b) ## Reference link fallbacks [*not a link*] [*nope*]... ## Reference link followed by a citation MapReduce is a paradigm popularized by [Google] [@mapreduce] as its most vocal proponent. [Google]: http://google.com ## Empty reference links [foo2]: bar [foo2] ## Wrapping shouldn't introduce new list items - blah blah blah blah blah blah blah blah blah blah blah blah blah blah 2015. pandoc-1.16.0.2~dfsg/tests/markdown-citations.native0000644000000000000000000001431312645626061021144 0ustar rootroot[Header 1 ("pandoc-with-citeproc-hs",[],[]) [Str "Pandoc",Space,Str "with",Space,Str "citeproc-hs"] ,BulletList [[Para [Cite [Citation {citationId = "nonexistent", citationPrefix = [], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[@nonexistent]"]]] ,[Para [Cite [Citation {citationId = "nonexistent", citationPrefix = [], citationSuffix = [], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [Str "@nonexistent"]]] ,[Para [Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [Str "@item1"],Space,Str "says",Space,Str "blah."]] ,[Para [Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [Str "p.",Space,Str "30"], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [Str "@item1",Space,Str "[p.",Space,Str "30]"],Space,Str "says",Space,Str "blah."]] ,[Para [Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [Str "p.",Space,Str "30,",Space,Str "with",Space,Str "suffix"], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [Str "@item1",Space,Str "[p.",Space,Str "30,",Space,Str "with",Space,Str "suffix]"],Space,Str "says",Space,Str "blah."]] ,[Para [Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0},Citation {citationId = "item2", citationPrefix = [], citationSuffix = [Space,Str "p.",Space,Str "30"], citationMode = SuppressAuthor, citationNoteNum = 0, citationHash = 0},Citation {citationId = "\1087\1091\1085\1082\1090\&3", citationPrefix = [Str "see",Space,Str "also"], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "@item1",Space,Str "[-@item2",Space,Str "p.",Space,Str "30;",Space,Str "see",Space,Str "also",Space,Str "@\1087\1091\1085\1082\1090\&3]"],Space,Str "says",Space,Str "blah."]] ,[Para [Str "In",Space,Str "a",Space,Str "note.",Note [Para [Cite [Citation {citationId = "\1087\1091\1085\1082\1090\&3", citationPrefix = [], citationSuffix = [Str "p.",Space,Str "12"], citationMode = AuthorInText, citationNoteNum = 0, citationHash = 0}] [Str "@\1087\1091\1085\1082\1090\&3",Space,Str "[p.",Space,Str "12]"],Space,Str "and",Space,Str "a",Space,Str "citation",Space,Str "without",Space,Str "locators",Space,Cite [Citation {citationId = "\1087\1091\1085\1082\1090\&3", citationPrefix = [], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[@\1087\1091\1085\1082\1090\&3]"],Str "."]]]] ,[Para [Str "A",Space,Str "citation",Space,Str "group",Space,Cite [Citation {citationId = "item1", citationPrefix = [Str "see"], citationSuffix = [Space,Str "chap.",Space,Str "3"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0},Citation {citationId = "\1087\1091\1085\1082\1090\&3", citationPrefix = [Str "also"], citationSuffix = [Space,Str "p.",Space,Str "34-35"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[see",Space,Str "@item1",Space,Str "chap.",Space,Str "3;",Space,Str "also",Space,Str "@\1087\1091\1085\1082\1090\&3",Space,Str "p.",Space,Str "34-35]"],Str "."]] ,[Para [Str "Another",Space,Str "one",Space,Cite [Citation {citationId = "item1", citationPrefix = [Str "see"], citationSuffix = [Space,Str "p.",Space,Str "34-35"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[see",Space,Str "@item1",Space,Str "p.",Space,Str "34-35]"],Str "."]] ,[Para [Str "And",Space,Str "another",Space,Str "one",Space,Str "in",Space,Str "a",Space,Str "note.",Note [Para [Str "Some",Space,Str "citations",Space,Cite [Citation {citationId = "item1", citationPrefix = [Str "see"], citationSuffix = [Space,Str "chap.",Space,Str "3"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0},Citation {citationId = "\1087\1091\1085\1082\1090\&3", citationPrefix = [], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0},Citation {citationId = "item2", citationPrefix = [], citationSuffix = [], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[see",Space,Str "@item1",Space,Str "chap.",Space,Str "3;",Space,Str "@\1087\1091\1085\1082\1090\&3;",Space,Str "@item2]"],Str "."]]]] ,[Para [Str "Citation",Space,Str "with",Space,Str "a",Space,Str "suffix",Space,Str "and",Space,Str "locator",Space,Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [Space,Str "pp.",Space,Str "33,",Space,Str "35-37,",Space,Str "and",Space,Str "nowhere",Space,Str "else"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[@item1",Space,Str "pp.",Space,Str "33,",Space,Str "35-37,",Space,Str "and",Space,Str "nowhere",Space,Str "else]"],Str "."]] ,[Para [Str "Citation",Space,Str "with",Space,Str "suffix",Space,Str "only",Space,Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [Space,Str "and",Space,Str "nowhere",Space,Str "else"], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[@item1",Space,Str "and",Space,Str "nowhere",Space,Str "else]"],Str "."]] ,[Para [Str "Now",Space,Str "some",Space,Str "modifiers.",Note [Para [Str "Like",Space,Str "a",Space,Str "citation",Space,Str "without",Space,Str "author:",Space,Cite [Citation {citationId = "item1", citationPrefix = [], citationSuffix = [], citationMode = SuppressAuthor, citationNoteNum = 0, citationHash = 0}] [Str "[-@item1]"],Str ",",Space,Str "and",Space,Str "now",Space,Str "Doe",Space,Str "with",Space,Str "a",Space,Str "locator",Space,Cite [Citation {citationId = "item2", citationPrefix = [], citationSuffix = [Space,Str "p.",Space,Str "44"], citationMode = SuppressAuthor, citationNoteNum = 0, citationHash = 0}] [Str "[-@item2",Space,Str "p.",Space,Str "44]"],Str "."]]]] ,[Para [Str "With",Space,Str "some",Space,Str "markup",Space,Cite [Citation {citationId = "item1", citationPrefix = [Emph [Str "see"]], citationSuffix = [Space,Str "p.",Space,Strong [Str "32"]], citationMode = NormalCitation, citationNoteNum = 0, citationHash = 0}] [Str "[*see*",Space,Str "@item1",Space,Str "p.",Space,Str "**32**]"],Str "."]]] ,Header 1 ("references",[],[]) [Str "References"]] pandoc-1.16.0.2~dfsg/tests/tables.opendocument0000644000000000000000000004537012645626061020022 0ustar rootrootSimple table with caption: Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1 Demonstration of simple table syntax. Simple table without caption: Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1 Demonstration of simple table syntax. Multiline table with caption: Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. Here's the caption. It may span multiple lines. Multiline table without caption: Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. Table without column headers: 12 12 12 12 123 123 123 123 1 1 1 1 Multiline table without column headers: First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. pandoc-1.16.0.2~dfsg/tests/html-reader.html0000644000000000000000000003532512645626061017217 0ustar rootroot Pandoc Test Suite

Pandoc Test Suite

This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite.


Headers

Level 2 with an embedded link

Level 3 with emphasis

Level 4

Level 5

Level 1

Level 2 with emphasis

Level 3

with no blank line

Level 2

with no blank line


Paragraphs

Here's a regular paragraph.

In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.

Here's one with a bullet. * criminey.

There should be a hard line break
here.


Block Quotes

E-mail style:

This is a block quote. It is pretty short.

Code in a block quote:

sub status {
    print "working";
}

A list:

  1. item one
  2. item two

Nested block quotes:

nested

nested

This should not be a block quote: 2 > 1.

Box-style:

Example:

sub status {
    print "working";
}
  1. do laundry
  2. take out the trash

Here's a nested one:

Joe said:

Don't quote me.

And a following paragraph.


Code Blocks

Code:

---- (should be four hyphens)

sub status {
    print "working";
}

this code block is indented by one tab

And:

    this code block is indented by two tabs

These should not be escaped:  \$ \\ \> \[ \{

Lists

Unordered

Asterisks tight:

  • asterisk 1
  • asterisk 2
  • asterisk 3

Asterisks loose:

  • asterisk 1

  • asterisk 2

  • asterisk 3

Pluses tight:

  • Plus 1
  • Plus 2
  • Plus 3

Pluses loose:

  • Plus 1

  • Plus 2

  • Plus 3

Minuses tight:

  • Minus 1
  • Minus 2
  • Minus 3

Minuses loose:

  • Minus 1

  • Minus 2

  • Minus 3

Ordered

Tight:

  1. First
  2. Second
  3. Third

and:

  1. One
  2. Two
  3. Three

Loose using tabs:

  1. First

  2. Second

  3. Third

and using spaces:

  1. One

  2. Two

  3. Three

Multiple paragraphs:

  1. Item 1, graf one.

    Item 1. graf two. The quick brown fox jumped over the lazy dog's back.

  2. Item 2.

  3. Item 3.

List styles:

              Nested

              • Tab
                • Tab
                  • Tab

              Here's another:

              1. First
              2. Second:
                • Fee
                • Fie
                • Foe
              3. Third

              Same thing but with paragraphs:

              1. First

              2. Second:

                • Fee
                • Fie
                • Foe
              3. Third

              Tabs and spaces

              • this is a list item indented with tabs

              • this is a list item indented with spaces

                • this is an example list item indented with tabs

                • this is an example list item indented with spaces

              Fancy list markers

              1. begins with 2
              2. and now 3

                with a continuation

                1. sublist with roman numerals, starting with 4
                2. more items
                  1. a subsublist
                  2. a subsublist

              Nesting:

              1. Upper Alpha
                1. Upper Roman.
                  1. Decimal start with 6
                    1. Lower alpha with paren

              Autonumbering:

              1. Autonumber.
              2. More.
                1. Nested.

              Definition

              Violin
              Stringed musical instrument.
              Torture device.
              Cello
              Violoncello
              Low-voiced stringed instrument.

              Inline Markup

              This is emphasized, and so is this.

              This is strong, and so is this.

              Empty and .

              An emphasized link.

              This is strong and em.

              So is this word.

              This is strong and em.

              So is this word.

              This is code: >, $, \, \$, <html>.

              This is small caps.


              Smart quotes, ellipses, dashes

              "Hello," said the spider. "'Shelob' is my name."

              'A', 'B', and 'C' are letters.

              'Oak,' 'elm,' and 'beech' are names of trees. So is 'pine.'

              'He said, "I want to go."' Were you alive in the 70's?

              Here is some quoted 'code' and a "quoted link".

              Some dashes: one---two --- three--four -- five.

              Dashes between numbers: 5-7, 255-66, 1987-1999.

              Ellipses...and. . .and . . . .


              LaTeX

              • \cite[22-23]{smith.1899}
              • \doublespacing
              • $2+2=4$
              • $x \in y$
              • $\alpha \wedge \omega$
              • $223$
              • $p$-Tree
              • $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$
              • Here's one that has a line break in it: $\alpha + \omega \times x^2$.

              These shouldn't be math:

              • To get the famous equation, write $e = mc^2$.
              • $22,000 is a lot of money. So is $34,000. (It worked if "lot" is emphasized.)
              • Escaped $: $73 this should be emphasized 23$.

              Here's a LaTeX table:

              \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular}


              Special Characters

              Here is some unicode:

              • I hat: Î
              • o umlaut: ö
              • section: §
              • set membership: ∈
              • copyright: ©

              AT&T has an ampersand in their name.

              AT&T is another way to write it.

              This & that.

              4 < 5.

              6 > 5.

              Backslash: \

              Backtick: `

              Asterisk: *

              Underscore: _

              Left brace: {

              Right brace: }

              Left bracket: [

              Right bracket: ]

              Left paren: (

              Right paren: )

              Greater-than: >

              Hash: #

              Period: .

              Bang: !

              Plus: +

              Minus: -


              Links

              Explicit

              Just a URL.

              URL and title.

              URL and title.

              URL and title.

              URL and title

              URL and title

              Email link (nobody [at] nowhere.net)

              Empty.

              Reference

              Foo bar.

              Foo bar.

              Foo bar.

              With embedded [brackets].

              b by itself should be a link.

              Indented once.

              Indented twice.

              Indented thrice.

              This should [not] be a link.

              [not]: /url
              

              Foo bar.

              Foo biz.

              With ampersands

              Here's a link with an ampersand in the URL.

              Here's a link with an amersand in the link text: AT&T.

              Here's an inline link.

              Here's an inline link in pointy braces.

              Autolinks

              With an ampersand: http://example.com/?foo=1&bar=2

              An e-mail address: nobody [at] nowhere.net

              Blockquoted: http://example.com/

              Auto-links should not occur here: <http://example.com/>

              or here: <http://example.com/>
              

              Images

              From "Voyage dans la Lune" by Georges Melies (1902):

              lalune

              Here is a movie movie icon.


              Footnotes

              Here is a footnote reference(1), and another(longnote). This should not be a footnote reference, because it contains a space^(my note).

              (1) Here is the footnote. It can go anywhere in the document, not just at the end.

              (longnote) Here's the other note. This one contains multiple blocks.

              Caret characters are used to indicate that the blocks all belong to a single footnote (as with block quotes).

                { <code> }
              

              If you want, you can use a caret at the beginning of every line, as with blockquotes, but all that you need is a caret at the beginning of the first line of the block and any preceding blank lines.

              text Leading space

              Trailing space text

              text Leading spaces

              Trailing spaces text

              Tables

              Tables with Headers

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1 2 3
              4 5 6

              X Y Z
              1

              2

              3
              4 5 6

              Tables without Headers

              1 2 3
              4 5 6

              1 2 3
              4 5 6

              1 2 3
              4 5 6

              1 2 3
              4 5 6

              Empty Tables

              This section should be empty.

              pandoc-1.16.0.2~dfsg/tests/lhs-test.fragment.html+lhs0000644000000000000000000000166712645626061021144 0ustar rootroot

              lhs test

              unsplit is an arrow that takes a pair of values and combines them to return a single value:

              > unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
              > unsplit = arr . uncurry
              > -- arr (\op (x,y) -> x `op` y)

              (***) combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair).

              f *** g = first f >>> second g

              Block quote:

              foo bar

              pandoc-1.16.0.2~dfsg/tests/writer.html0000644000000000000000000004035312645626061016324 0ustar rootroot Pandoc Test Suite

              This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite.


              Headers

              Level 3 with emphasis

              Level 4

              Level 5

              Level 1

              Level 2 with emphasis

              Level 3

              with no blank line

              Level 2

              with no blank line


              Paragraphs

              Here’s a regular paragraph.

              In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.

              Here’s one with a bullet. * criminey.

              There should be a hard line break
              here.


              Block Quotes

              E-mail style:

              This is a block quote. It is pretty short.

              Code in a block quote:

              sub status {
                  print "working";
              }

              A list:

              1. item one
              2. item two

              Nested block quotes:

              nested

              nested

              This should not be a block quote: 2 > 1.

              And a following paragraph.


              Code Blocks

              Code:

              ---- (should be four hyphens)
              
              sub status {
                  print "working";
              }
              
              this code block is indented by one tab

              And:

                  this code block is indented by two tabs
              
              These should not be escaped:  \$ \\ \> \[ \{

              Lists

              Unordered

              Asterisks tight:

              • asterisk 1
              • asterisk 2
              • asterisk 3

              Asterisks loose:

              • asterisk 1

              • asterisk 2

              • asterisk 3

              Pluses tight:

              • Plus 1
              • Plus 2
              • Plus 3

              Pluses loose:

              • Plus 1

              • Plus 2

              • Plus 3

              Minuses tight:

              • Minus 1
              • Minus 2
              • Minus 3

              Minuses loose:

              • Minus 1

              • Minus 2

              • Minus 3

              Ordered

              Tight:

              1. First
              2. Second
              3. Third

              and:

              1. One
              2. Two
              3. Three

              Loose using tabs:

              1. First

              2. Second

              3. Third

              and using spaces:

              1. One

              2. Two

              3. Three

              Multiple paragraphs:

              1. Item 1, graf one.

                Item 1. graf two. The quick brown fox jumped over the lazy dog’s back.

              2. Item 2.

              3. Item 3.

              Nested

              • Tab
                • Tab
                  • Tab

              Here’s another:

              1. First
              2. Second:
                • Fee
                • Fie
                • Foe
              3. Third

              Same thing but with paragraphs:

              1. First

              2. Second:

                • Fee
                • Fie
                • Foe
              3. Third

              Tabs and spaces

              • this is a list item indented with tabs

              • this is a list item indented with spaces

                • this is an example list item indented with tabs

                • this is an example list item indented with spaces

              Fancy list markers

              1. begins with 2
              2. and now 3

                with a continuation

                1. sublist with roman numerals, starting with 4
                2. more items
                  1. a subsublist
                  2. a subsublist

              Nesting:

              1. Upper Alpha
                1. Upper Roman.
                  1. Decimal start with 6
                    1. Lower alpha with paren

              Autonumbering:

              1. Autonumber.
              2. More.
                1. Nested.

              Should not be a list item:

              M.A. 2007

              B. Williams


              Definition Lists

              Tight using spaces:

              apple
              red fruit
              orange
              orange fruit
              banana
              yellow fruit

              Tight using tabs:

              apple
              red fruit
              orange
              orange fruit
              banana
              yellow fruit

              Loose:

              apple

              red fruit

              orange

              orange fruit

              banana

              yellow fruit

              Multiple blocks with italics:

              apple

              red fruit

              contains seeds, crisp, pleasant to taste

              orange

              orange fruit

              { orange code block }

              orange block quote

              Multiple definitions, tight:

              apple
              red fruit
              computer
              orange
              orange fruit
              bank

              Multiple definitions, loose:

              apple

              red fruit

              computer

              orange

              orange fruit

              bank

              Blank line after term, indented marker, alternate markers:

              apple

              red fruit

              computer

              orange

              orange fruit

              1. sublist
              2. sublist

              HTML Blocks

              Simple block on one line:

              foo

              And nested without indentation:

              foo

              bar

              Interpreted markdown in a table:

              This is emphasized And this is strong

              Here’s a simple block:

              foo

              This should be a code block, though:

              <div>
                  foo
              </div>

              As should this:

              <div>foo</div>

              Now, nested:

              foo

              This should just be an HTML comment:

              Multiline:

              Code block:

              <!-- Comment -->

              Just plain comment, with trailing spaces on the line:

              Code:

              <hr />

              Hr’s:











              Inline Markup

              This is emphasized, and so is this.

              This is strong, and so is this.

              An emphasized link.

              This is strong and em.

              So is this word.

              This is strong and em.

              So is this word.

              This is code: >, $, \, \$, <html>.

              This is strikeout.

              Superscripts: abcd ahello ahello there.

              Subscripts: H2O, H23O, Hmany of themO.

              These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d.


              Smart quotes, ellipses, dashes

              “Hello,” said the spider. “‘Shelob’ is my name.”

              ‘A’, ‘B’, and ‘C’ are letters.

              ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’

              ‘He said, “I want to go.”’ Were you alive in the 70’s?

              Here is some quoted ‘code’ and a “quoted link”.

              Some dashes: one—two — three—four — five.

              Dashes between numbers: 5–7, 255–66, 1987–1999.

              Ellipses…and…and….


              LaTeX

              • 2 + 2 = 4
              • x ∈ y
              • α ∧ ω
              • 223
              • p-Tree
              • Here’s some display math:
                $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$
              • Here’s one that has a line break in it: α + ω × x2.

              These shouldn’t be math:

              • To get the famous equation, write $e = mc^2$.
              • $22,000 is a lot of money. So is $34,000. (It worked if “lot” is emphasized.)
              • Shoes ($20) and socks ($5).
              • Escaped $: $73 this should be emphasized 23$.

              Here’s a LaTeX table:


              Special Characters

              Here is some unicode:

              • I hat: Î
              • o umlaut: ö
              • section: §
              • set membership: ∈
              • copyright: ©

              AT&T has an ampersand in their name.

              AT&T is another way to write it.

              This & that.

              4 < 5.

              6 > 5.

              Backslash: \

              Backtick: `

              Asterisk: *

              Underscore: _

              Left brace: {

              Right brace: }

              Left bracket: [

              Right bracket: ]

              Left paren: (

              Right paren: )

              Greater-than: >

              Hash: #

              Period: .

              Bang: !

              Plus: +

              Minus: -


              Links

              Explicit

              Just a URL.

              URL and title.

              URL and title.

              URL and title.

              URL and title

              URL and title

              with_underscore

              Empty.

              Reference

              Foo bar.

              Foo bar.

              Foo bar.

              With embedded [brackets].

              b by itself should be a link.

              Indented once.

              Indented twice.

              Indented thrice.

              This should [not][] be a link.

              [not]: /url

              Foo bar.

              Foo biz.

              With ampersands

              Here’s a link with an ampersand in the URL.

              Here’s a link with an amersand in the link text: AT&T.

              Here’s an inline link.

              Here’s an inline link in pointy braces.

              With an ampersand: http://example.com/?foo=1&bar=2

              An e-mail address:

              Blockquoted: http://example.com/

              Auto-links should not occur here: <http://example.com/>

              or here: <http://example.com/>

              Images

              From “Voyage dans la Lune” by Georges Melies (1902):

              lalune

              lalune

              Here is a movie movie icon.


              Footnotes

              Here is a footnote reference,1 and another.2 This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note.3

              Notes can go in quotes.4

              1. And in list items.5

              This paragraph should not be part of the note, as it is not indented.


              1. Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.

              2. Here’s the long note. This one contains multiple blocks.

                Subsequent blocks are indented to show that they belong to the footnote (as with list items).

                  { <code> }

                If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.

              3. This is easier to type. Inline notes may contain links and ] verbatim characters, as well as [bracketed text].

              4. In quote.

              5. In list.

              pandoc-1.16.0.2~dfsg/tests/dokuwiki_external_images.dokuwiki0000644000000000000000000000037012645626061022742 0ustar rootroot{{https://cooluri.com/image.png|HTTPS image}} {{http://cooluri.com/image.png|HTTP image}} {{ftp://ftp.cooluri.com/image.png|FTP image}} {{file:///tmp/coolimage.png|Filesystem image}} {{:/image.jpg|Relative image 1}} {{:image.jpg|Relative image 2}} pandoc-1.16.0.2~dfsg/tests/tables.mediawiki0000644000000000000000000000425612645626061017263 0ustar rootrootSimple table with caption: {| |+ Demonstration of simple table syntax. !align="right"| Right ! Left !align="center"| Center ! Default |- |align="right"| 12 | 12 |align="center"| 12 | 12 |- |align="right"| 123 | 123 |align="center"| 123 | 123 |- |align="right"| 1 | 1 |align="center"| 1 | 1 |} Simple table without caption: {| !align="right"| Right ! Left !align="center"| Center ! Default |- |align="right"| 12 | 12 |align="center"| 12 | 12 |- |align="right"| 123 | 123 |align="center"| 123 | 123 |- |align="right"| 1 | 1 |align="center"| 1 | 1 |} Simple table indented two spaces: {| |+ Demonstration of simple table syntax. !align="right"| Right ! Left !align="center"| Center ! Default |- |align="right"| 12 | 12 |align="center"| 12 | 12 |- |align="right"| 123 | 123 |align="center"| 123 | 123 |- |align="right"| 1 | 1 |align="center"| 1 | 1 |} Multiline table with caption: {| |+ Here's the caption. It may span multiple lines. !align="center" width="15%"| Centered Header !width="13%"| Left Aligned !align="right" width="16%"| Right Aligned !width="33%"| Default aligned |- |align="center"| First | row |align="right"| 12.0 | Example of a row that spans multiple lines. |- |align="center"| Second | row |align="right"| 5.0 | Here's another one. Note the blank line between rows. |} Multiline table without caption: {| !align="center" width="15%"| Centered Header !width="13%"| Left Aligned !align="right" width="16%"| Right Aligned !width="33%"| Default aligned |- |align="center"| First | row |align="right"| 12.0 | Example of a row that spans multiple lines. |- |align="center"| Second | row |align="right"| 5.0 | Here's another one. Note the blank line between rows. |} Table without column headers: {| |align="right"| 12 | 12 |align="center"| 12 |align="right"| 12 |- |align="right"| 123 | 123 |align="center"| 123 |align="right"| 123 |- |align="right"| 1 | 1 |align="center"| 1 |align="right"| 1 |} Multiline table without column headers: {| |align="center" width="15%"| First |width="13%"| row |align="right" width="16%"| 12.0 |width="33%"| Example of a row that spans multiple lines. |- |align="center"| Second | row |align="right"| 5.0 | Here's another one. Note the blank line between rows. |} pandoc-1.16.0.2~dfsg/tests/writer.fb20000644000000000000000000012657012645626061016037 0ustar rootroot Pandoc Test SuiteJohnMacFarlaneAnonymousJuly 17, 2006pandoc<p>Pandoc Test Suite</p>

              John MacFarlane

              Anonymous

              July 17, 2006

              This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite.

              ——————————

              <p>Headers</p>
              <p>Level 2 with an embedded link </url></p>
              <p>Level 3 with emphasis</p>
              <p>Level 4</p>
              <p>Level 5</p>
              <p>Level 1</p>
              <p>Level 2 with emphasis</p>
              <p>Level 3</p>

              with no blank line

              <p>Level 2</p>

              with no blank line

              ——————————

              <p>Paragraphs</p>

              Here’s a regular paragraph.

              In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.

              Here’s one with a bullet. * criminey.

              There should be a hard line breakhere.

              ——————————

              <p>Block Quotes</p>

              E-mail style:

              This is a block quote. It is pretty short.

              Code in a block quote:

              sub status {

              print "working";

              }

              A list:

               1. item one

               2. item two

              Nested block quotes:

              nested

              nested

              This should not be a block quote: 2 > 1.

              And a following paragraph.

              ——————————

              <p>Code Blocks</p>

              Code:

              ---- (should be four hyphens)

              sub status {

              print "working";

              }

              this code block is indented by one tab

              And:

              this code block is indented by two tabs

              These should not be escaped: \$ \\ \> \[ \{

              ——————————

              <p>Lists</p>
              <p>Unordered</p>

              Asterisks tight:

              • asterisk 1

              • asterisk 2

              • asterisk 3

              Asterisks loose:

              • asterisk 1

              • asterisk 2

              • asterisk 3

              Pluses tight:

              • Plus 1

              • Plus 2

              • Plus 3

              Pluses loose:

              • Plus 1

              • Plus 2

              • Plus 3

              Minuses tight:

              • Minus 1

              • Minus 2

              • Minus 3

              Minuses loose:

              • Minus 1

              • Minus 2

              • Minus 3

              <p>Ordered</p>

              Tight:

               1. First

               2. Second

               3. Third

              and:

               1. One

               2. Two

               3. Three

              Loose using tabs:

               1. First

               2. Second

               3. Third

              and using spaces:

               1. One

               2. Two

               3. Three

              Multiple paragraphs:

               1. Item 1, graf one.Item 1. graf two. The quick brown fox jumped over the lazy dog’s back.

               2. Item 2.

               3. Item 3.

              <p>Nested</p>

              • Tab

              ◦ Tab

              * Tab

              Here’s another:

               1. First

               2. Second:

                 • Fee

                 • Fie

                 • Foe

               3. Third

              Same thing but with paragraphs:

               1. First

               2. Second:

                 • Fee

                 • Fie

                 • Foe

               3. Third

              <p>Tabs and spaces</p>

              • this is a list item indented with tabs

              • this is a list item indented with spaces

              ◦ this is an example list item indented with tabs

              ◦ this is an example list item indented with spaces

              <p>Fancy list markers</p>

               (2) begins with 2

               (3) and now 3with a continuation

               (3) iv. sublist with roman numerals, starting with 4

               (3) v. more items

               (3) v. (A) a subsublist

               (3) v. (B) a subsublist

              Nesting:

               A. Upper Alpha

               A. I. Upper Roman.

               A. I. (6) Decimal start with 6

               A. I. (6) c) Lower alpha with paren

              Autonumbering:

               1. Autonumber.

               2. More.

               2. 1. Nested.

              Should not be a list item:

              M.A. 2007

              B. Williams

              ——————————

              <p>Definition Lists</p>

              Tight using spaces:

              apple

                  red fruit

              orange

                  orange fruit

              banana

                  yellow fruit

              Tight using tabs:

              apple

                  red fruit

              orange

                  orange fruit

              banana

                  yellow fruit

              Loose:

              apple

                  red fruit

              orange

                  orange fruit

              banana

                  yellow fruit

              Multiple blocks with italics:

              apple

                  red fruit    contains seeds, crisp, pleasant to taste

              orange

                  orange fruit

                  { orange code block }

                  orange block quote

              Multiple definitions, tight:

              apple

                  red fruit    computer

              orange

                  orange fruit    bank

              Multiple definitions, loose:

              apple

                  red fruit    computer

              orange

                  orange fruit    bank

              Blank line after term, indented marker, alternate markers:

              apple

                  red fruit    computer

              orange

                  orange fruit

               1. sublist

               2. sublist

              <p>HTML Blocks</p>

              Simple block on one line:

              foo

              And nested without indentation:

              foo

              bar

              Interpreted markdown in a table:

              <table>

              <tr>

              <td>

              This is emphasized

              </td>

              <td>

              And this is strong

              </td>

              </tr>

              </table>

              <script type="text/javascript">document.write('This *should not* be interpreted as markdown');</script>

              Here’s a simple block:

              foo

              This should be a code block, though:

              <div>

              foo

              </div>

              As should this:

              <div>foo</div>

              Now, nested:

              foo

              This should just be an HTML comment:

              <!-- Comment -->

              Multiline:

              <!--

              Blah

              Blah

              -->

              <!--

              This is another comment.

              -->

              Code block:

              <!-- Comment -->

              Just plain comment, with trailing spaces on the line:

              <!-- foo -->

              Code:

              <hr />

              Hr’s:

              <hr>

              <hr />

              <hr />

              <hr>

              <hr />

              <hr />

              <hr class="foo" id="bar" />

              <hr class="foo" id="bar" />

              <hr class="foo" id="bar">

              ——————————

              <p>Inline Markup</p>

              This is emphasized, and so is this.

              This is strong, and so is this.

              An emphasized link[1].

              This is strong and em.

              So is this word.

              This is strong and em.

              So is this word.

              This is code: >, $, \, \$, <html>.

              This is strikeout.

              Superscripts: abcd ahello ahello there.

              Subscripts: H2O, H23O, Hmany of themO.

              These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d.

              ——————————

              <p>Smart quotes, ellipses, dashes</p>

              “Hello,” said the spider. “‘Shelob’ is my name.”

              ‘A’, ‘B’, and ‘C’ are letters.

              ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’

              ‘He said, “I want to go.”’ Were you alive in the 70’s?

              Here is some quoted ‘code’ and a “quoted link[2]”.

              Some dashes: one—two — three—four — five.

              Dashes between numbers: 5–7, 255–66, 1987–1999.

              Ellipses…and…and….

              ——————————

              <p>LaTeX</p>

              • 

              • 2+2=4

              • x \in y

              • \alpha \wedge \omega

              • 223

              • p-Tree

              • Here’s some display math: \frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}

              • Here’s one that has a line break in it: \alpha + \omega \times x^2.

              These shouldn’t be math:

              • To get the famous equation, write $e = mc^2$.

              • $22,000 is a lot of money. So is $34,000. (It worked if “lot” is emphasized.)

              • Shoes ($20) and socks ($5).

              • Escaped $: $73 this should be emphasized 23$.

              Here’s a LaTeX table:

              \begin{tabular}{|l|l|}\hline

              Animal & Number \\ \hline

              Dog & 2 \\

              Cat & 1 \\ \hline

              \end{tabular}

              ——————————

              <p>Special Characters</p>

              Here is some unicode:

              • I hat: Î

              • o umlaut: ö

              • section: §

              • set membership: ∈

              • copyright: ©

              AT&T has an ampersand in their name.

              AT&T is another way to write it.

              This & that.

              4 < 5.

              6 > 5.

              Backslash: \

              Backtick: `

              Asterisk: *

              Underscore: _

              Left brace: {

              Right brace: }

              Left bracket: [

              Right bracket: ]

              Left paren: (

              Right paren: )

              Greater-than: >

              Hash: #

              Period: .

              Bang: !

              Plus: +

              Minus: -

              ——————————

              <p>Links</p>
              <p>Explicit</p>

              Just a URL[3].

              URL and title[4].

              URL and title[5].

              URL and title[6].

              URL and title[7]

              URL and title[8]

              with_underscore[9]

              Email link[10]

              Empty[11].

              <p>Reference</p>

              Foo bar[12].

              Foo bar[13].

              Foo bar[14].

              With embedded [brackets][15].

              b[16] by itself should be a link.

              Indented once[17].

              Indented twice[18].

              Indented thrice[19].

              This should [not][] be a link.

              [not]: /url

              Foo bar[20].

              Foo biz[21].

              <p>With ampersands</p>

              Here’s a link with an ampersand in the URL[22].

              Here’s a link with an amersand in the link text: AT&T[23].

              Here’s an inline link[24].

              Here’s an inline link in pointy braces[25].

              <p>Autolinks</p>

              With an ampersand: http://example.com/?foo=1&bar=2[26]

              • In a list?

              • http://example.com/[27]

              • It should.

              An e-mail address: nobody@nowhere.net[28]

              Blockquoted: http://example.com/[29]

              Auto-links should not occur here: <http://example.com/>

              or here: <http://example.com/>

              ——————————

              <p>Images</p>

              From “Voyage dans la Lune” by Georges Melies (1902):

              lalune

              Here is a movie movie icon.

              ——————————

              <p>Footnotes</p>

              Here is a footnote reference,[30] and another.[31] This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note.[32]

              Notes can go in quotes.[33]

               1. And in list items.[34]

              This paragraph should not be part of the note, as it is not indented.

              <p>1</p>

              /url

              <p>2</p>

              http://example.com/?foo=1&bar=2

              <p>3</p>

              /url/

              <p>4</p>

              title: /url/

              <p>5</p>

              title preceded by two spaces: /url/

              <p>6</p>

              title preceded by a tab: /url/

              <p>7</p>

              title with "quotes" in it: /url/

              <p>8</p>

              title with single quotes: /url/

              <p>9</p>

              /url/with_underscore

              <p>10</p>

              mailto:nobody@nowhere.net

              <p>11</p>

              <p>12</p>

              /url/

              <p>13</p>

              /url/

              <p>14</p>

              /url/

              <p>15</p>

              /url/

              <p>16</p>

              /url/

              <p>17</p>

              /url

              <p>18</p>

              /url

              <p>19</p>

              /url

              <p>20</p>

              Title with "quotes" inside: /url/

              <p>21</p>

              Title with "quote" inside: /url/

              <p>22</p>

              http://example.com/?foo=1&bar=2

              <p>23</p>

              AT&T: http://att.com/

              <p>24</p>

              /script?foo=1&bar=2

              <p>25</p>

              /script?foo=1&bar=2

              <p>26</p>

              http://example.com/?foo=1&bar=2

              <p>27</p>

              http://example.com/

              <p>28</p>

              mailto:nobody@nowhere.net

              <p>29</p>

              http://example.com/

              <p>30</p>

              Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.

              <p>31</p>

              Here’s the long note. This one contains multiple blocks.

              Subsequent blocks are indented to show that they belong to the footnote (as with list items).

              { <code> }

              If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.

              <p>32</p>

              This is easier to type. Inline notes may contain links[32] and ] verbatim characters, as well as [bracketed text].

              <p>33</p>

              In quote.

              <p>34</p>

              In list.

              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
              pandoc-1.16.0.2~dfsg/tests/tables.man0000644000000000000000000000366612645626061016077 0ustar rootroot.PP Simple table with caption: .PP Demonstration of simple table syntax. .TS tab(@); r l c l. T{ Right T}@T{ Left T}@T{ Center T}@T{ Default T} _ T{ 12 T}@T{ 12 T}@T{ 12 T}@T{ 12 T} T{ 123 T}@T{ 123 T}@T{ 123 T}@T{ 123 T} T{ 1 T}@T{ 1 T}@T{ 1 T}@T{ 1 T} .TE .PP Simple table without caption: .PP .TS tab(@); r l c l. T{ Right T}@T{ Left T}@T{ Center T}@T{ Default T} _ T{ 12 T}@T{ 12 T}@T{ 12 T}@T{ 12 T} T{ 123 T}@T{ 123 T}@T{ 123 T}@T{ 123 T} T{ 1 T}@T{ 1 T}@T{ 1 T}@T{ 1 T} .TE .PP Simple table indented two spaces: .PP Demonstration of simple table syntax. .TS tab(@); r l c l. T{ Right T}@T{ Left T}@T{ Center T}@T{ Default T} _ T{ 12 T}@T{ 12 T}@T{ 12 T}@T{ 12 T} T{ 123 T}@T{ 123 T}@T{ 123 T}@T{ 123 T} T{ 1 T}@T{ 1 T}@T{ 1 T}@T{ 1 T} .TE .PP Multiline table with caption: .PP Here\[aq]s the caption. It may span multiple lines. .TS tab(@); cw(10.5n) lw(9.6n) rw(11.4n) lw(23.6n). T{ Centered Header T}@T{ Left Aligned T}@T{ Right Aligned T}@T{ Default aligned T} _ T{ First T}@T{ row T}@T{ 12.0 T}@T{ Example of a row that spans multiple lines. T} T{ Second T}@T{ row T}@T{ 5.0 T}@T{ Here\[aq]s another one. Note the blank line between rows. T} .TE .PP Multiline table without caption: .PP .TS tab(@); cw(10.5n) lw(9.6n) rw(11.4n) lw(23.6n). T{ Centered Header T}@T{ Left Aligned T}@T{ Right Aligned T}@T{ Default aligned T} _ T{ First T}@T{ row T}@T{ 12.0 T}@T{ Example of a row that spans multiple lines. T} T{ Second T}@T{ row T}@T{ 5.0 T}@T{ Here\[aq]s another one. Note the blank line between rows. T} .TE .PP Table without column headers: .PP .TS tab(@); r l c r. T{ 12 T}@T{ 12 T}@T{ 12 T}@T{ 12 T} T{ 123 T}@T{ 123 T}@T{ 123 T}@T{ 123 T} T{ 1 T}@T{ 1 T}@T{ 1 T}@T{ 1 T} .TE .PP Multiline table without column headers: .PP .TS tab(@); cw(10.5n) lw(9.6n) rw(11.4n) lw(23.6n). T{ First T}@T{ row T}@T{ 12.0 T}@T{ Example of a row that spans multiple lines. T} T{ Second T}@T{ row T}@T{ 5.0 T}@T{ Here\[aq]s another one. Note the blank line between rows. T} .TE pandoc-1.16.0.2~dfsg/tests/odt/0000755000000000000000000000000012645626061014703 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/odt/native/0000755000000000000000000000000012645626062016172 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/odt/native/orderedListRoman.native0000644000000000000000000000107612645626062022663 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [OrderedList (1,UpperRoman,Period) [[Plain[Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,UpperRoman,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,UpperRoman,Period) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]]pandoc-1.16.0.2~dfsg/tests/odt/native/blockquote.native0000644000000000000000000000011212645626062021544 0ustar rootroot[Para [Str "Normal"],BlockQuote [Para [Str "Indented",Space,Str "(1cm)"]]]pandoc-1.16.0.2~dfsg/tests/odt/native/unorderedList.native0000644000000000000000000000072512645626062022231 0ustar rootroot[BulletList [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],BulletList [[Para [Str "New",Space,Str "level!"],BulletList [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]]pandoc-1.16.0.2~dfsg/tests/odt/native/referenceToListItem.native0000644000000000000000000000051012645626062023312 0ustar rootroot[OrderedList (1,Decimal,Period) [[Plain [Span ("anchor",[],[]) [],Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "Another",Space,Str "list",Space,Str "item"]]],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Str "list",Space,Str "item",Space,Link ("",[],[]) [Str "1."] ("#anchor",""),Str "."],Para [],Para []] pandoc-1.16.0.2~dfsg/tests/odt/native/orderedListMixed.native0000644000000000000000000000107312645626062022652 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [OrderedList (1,Decimal,Period) [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,Decimal,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,LowerAlpha,OneParen) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]]pandoc-1.16.0.2~dfsg/tests/odt/native/referenceToText.native0000644000000000000000000000030412645626062022505 0ustar rootroot[Para [Span ("an anchor",[],[]) [],Str "Some",Space,Str "text."],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Link ("",[],[]) [Str "Some",Space,Str "text"] ("#an anchor",""),Str "."]] pandoc-1.16.0.2~dfsg/tests/odt/native/orderedListSimple.native0000644000000000000000000000106612645626062023037 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [OrderedList (1,Decimal,Period) [[Plain [Str "A",Space,Str "list",Space,Str "item"]],[Plain [Str "A",Space,Str "second"]],[Para [Str "A",Space,Str "third"],OrderedList (1,Decimal,Period) [[Para [Str "New",Space,Str "level!"],OrderedList (1,Decimal,Period) [[Plain [Str "And",Space,Str "another!"]],[Plain [Str "It's",Space,Str "great",Space,Str "up",Space,Str "here!"]]]],[Plain [Str "Oh",Space,Str "noes"]],[Plain [Str "We",Space,Str "fell!"]]]],[Plain [Str "Maybe",Space,Str "someone"]],[Plain [Str "Pushed",Space,Str "us?"]]]]pandoc-1.16.0.2~dfsg/tests/odt/native/unicode.native0000644000000000000000000000011712645626062021027 0ustar rootroot[Para [Str "\8220\8221\8217\231\1256\169\188\1074\1073\1060\1064\246\201\181"]]pandoc-1.16.0.2~dfsg/tests/odt/native/simpleTable.native0000644000000000000000000000014012645626062021636 0ustar rootroot[Table [] [] [] [] [[[Plain [Str "Content"]],[Plain [Str "More",Space,Str "content"]]]],Para []]pandoc-1.16.0.2~dfsg/tests/odt/native/referenceToChapter.native0000644000000000000000000000060212645626062023150 0ustar rootroot[Header 1 ("a-chapter",[],[]) [Span ("anchor",[],[]) [],Str "A",Space,Str "chapter"],Para [Str "Some",Space,Str "text."],Header 1 ("another-chapter",[],[]) [Str "Another",Space,Str "chapter"],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Str "."],Para [Str "A",Space,Str "reference",Space,Str "to",Space,Link ("",[],[]) [Str "A",Space,Str "chapter"] ("#anchor",""),Str "."]] pandoc-1.16.0.2~dfsg/tests/odt/markdown/0000755000000000000000000000000012645626062016526 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/odt/markdown/strikeout.md0000644000000000000000000000005112645626062021075 0ustar rootrootHere comes text that was ~~striken out~~.pandoc-1.16.0.2~dfsg/tests/odt/markdown/citation.md0000644000000000000000000000003712645626062020662 0ustar rootrootSome text[@Ex] with a citation.pandoc-1.16.0.2~dfsg/tests/odt/markdown/horizontalRule.md0000644000000000000000000000000312645626062022062 0ustar rootroot---pandoc-1.16.0.2~dfsg/tests/odt/markdown/endnote.md0000644000000000000000000000006212645626062020502 0ustar rootrootSome text[^1] with an endnote. [^1]: Endnote textpandoc-1.16.0.2~dfsg/tests/odt/markdown/underlined.md0000644000000000000000000000003412645626062021176 0ustar rootrootHere comes *underlined* textpandoc-1.16.0.2~dfsg/tests/odt/markdown/imageIndex.md0000644000000000000000000000017212645626062021122 0ustar rootroot# Abbildungsverzeichnis Abbildung 1: Image caption ![Abbildung 1: Image caption](10000000000000FA000000FAD6A15225.jpg) pandoc-1.16.0.2~dfsg/tests/odt/markdown/externalLink.md0000644000000000000000000000010212645626062021501 0ustar rootrootHere comes an [external link](http://example.com/) to example.com.pandoc-1.16.0.2~dfsg/tests/odt/markdown/imageWithCaption.md0000644000000000000000000000010312645626062022276 0ustar rootroot![Abbildung 1: Image caption](10000000000000FA000000FAD6A15225.jpg)pandoc-1.16.0.2~dfsg/tests/odt/markdown/listBlocks.md0000644000000000000000000000076112645626062021165 0ustar rootroot Indented text in a list. This is a numbered block.It contains several paragraphs of text.Like this.Next item.pandoc-1.16.0.2~dfsg/tests/odt/markdown/footnote.md0000644000000000000000000000006312645626062020704 0ustar rootrootSome text[^1] with a footnote. [^1]: Footnote textpandoc-1.16.0.2~dfsg/tests/odt/markdown/headers.md0000644000000000000000000000013612645626062020463 0ustar rootroot# A header (Lv 1) A paragraph ## Another header (Lv 2) Another paragraph # Back to Level 1pandoc-1.16.0.2~dfsg/tests/odt/markdown/bold.md0000644000000000000000000000003012645626062017761 0ustar rootrootHere comes **bold** textpandoc-1.16.0.2~dfsg/tests/odt/markdown/italic.md0000644000000000000000000000003012645626062020306 0ustar rootrootHere comes *italic* textpandoc-1.16.0.2~dfsg/tests/odt/markdown/paragraph.md0000644000000000000000000000010612645626062021012 0ustar rootrootThis is a paragraph. This is another paragraph. This is a third one.pandoc-1.16.0.2~dfsg/tests/odt/markdown/trackedChanges.md0000644000000000000000000000004112645626062021751 0ustar rootrootSome text with and inserted text.pandoc-1.16.0.2~dfsg/tests/odt/markdown/image.md0000644000000000000000000000005112645626062020126 0ustar rootroot![](10000000000000FA000000FAD6A15225.jpg)pandoc-1.16.0.2~dfsg/tests/odt/odt/0000755000000000000000000000000012645626062015472 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/odt/odt/italic.odt0000644000000000000000000002427212645626062017456 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF64(Thumbnails/thumbnail.pngPNG  IHDRzAIDATxA DP@Qj_6J#x5,#& eY& h胢>(胢>(胢>(胢>(#}쯳?1X9MbV9\ʾ=#}l5u݂Q|RAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAyNWIENDB`PKaF content.xmln6} Cz$vc/@@o ZmtX}$˱dK VdW 99T@w ㈒5pV!|mHQ"=MLέ-#3 83g›kEs.qi8-^uVG`Y~83+leR+Zyϱ2Az#\w9CLS7MRppd{.PM݁3p P6>e l%dS8ʟ֥wӺ 5{#2>;YM^vF?{eRG K/S[g)iA(a?vszw|ǐ,c5Ҍ /inJ >mn|^0tuwj¡{60ctF @a BJ'.!e"M̪|ilz5\SȕG_< G~Qq)Im}R+Xm;2irsp{1ECk\0_6cnx`dHL=\s8gLa-ГuW}Cyq~iyA&헆ZHx=髀_n!w [q>g.`c܅E3n[A݀<;'ݸϣXsA5& e,z׃H>`~b?6:$tǓI8;2 ﭨ^F?y [8@>6PYw&᫂6,JH<נ/!*F.xfadȻŁd"$kakס5S/Cӝ]2~#]ylm84Ǚ2~oHȫ͖'桪 ,|s XuW $;j\QRW.z2G|GWDУ큈/[v߹M5"rH= r,{%᫱wL\Km`F?3t&j\bڰXFyI\j3b!97\"ڰ\uyI\jsB6q7ոab8׃%q ̴U{Ԇebr7htF#0A;`FH,F#h,4 h b4F1ASE#hb4F1A#`F@,F#h(4 hM`\?!>ϱ l]~n9F@Zµ+GXyAgaծ'Tƕ'tW*CeXy*CGa}2}XFh.?ZeV2G`E.Z ?/K?=o[H_9mY1xV`Dod?[.P R|`z6V0VhY|y4[:%qd-'W"l="|rPK0LErPKaF settings.xmlZ[s:~?"wS!!雰Fz$9ʆ4CĒv|߮X=wq^@r9''sKx4i*)K̇T&2uStML@n5_nf/Kӕ4bqxwj^h4lt35@9cU_BEvALYV{_֛|easZASbkg+T69,^[+`L͈Y%4¥Zꮄaf}䡉ɭ7>\{oMZq_ЉR0E2*b:zpC8$}Ƅ>Z|%fIjpek(-8­j(rƶrOťHwq5 (=M2et&tt0;(>$`|(.OHvENá>[aj:(XngZz-F|*-weA1 ]E |רrhx T'!OT1C.J.aS1UNW=B"JCPXGŒL {~bF8NX`wX!܌V; ɷ5dNX^@wi<DC:4MTdv`,`3S|OU*MtdD' "\JAnѡ|e5nm.Z{Q(`,.Gر@981`6#hw ĉY9 .$d W0HmU?L;kͺ(CP:8S=ia,U`;GQ0NqF@nu(MEQEB/.2 ~i.QA+m,╦']f'" ?4$9K{ϵ oeCh GBb@=WS&~/%:m 9?IĊJ e\RH~YR!a,¸:CvBd{e9$YJ@'&5_M0c I?s`ڢ!e>yTQQ6 _t2bͽCI(:}-h&$)Dm*lѐ]9J[q|sܡJ C?顺_=_PK'#((+!PKaF styles.xml]ݒSP>T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:52:32.92Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF64(eThumbnails/thumbnail.pngPKaF0LEr xcontent.xmlPKaF'#((+! settings.xmlPKaF Ɇ _styles.xmlPKaFh omanifest.rdfPKaFf*meta.xmlPKaFjҠ">"META-INF/manifest.xmlPKp4$pandoc-1.16.0.2~dfsg/tests/odt/odt/expression.odt0000644000000000000000000002524412645626062020410 0ustar rootrootPK,aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK,aFConfigurations2/floater/PK,aF'Configurations2/accelerator/current.xmlPKPK,aFConfigurations2/images/Bitmaps/PK,aFConfigurations2/progressbar/PK,aFConfigurations2/menubar/PK,aFConfigurations2/popupmenu/PK,aFConfigurations2/statusbar/PK,aFConfigurations2/toolbar/PK,aFConfigurations2/toolpanel/PK,aF]²Thumbnails/thumbnail.pngPNG  IHDRzAyIDATx1 @ _VZ703j13ܚ>(胢>(胢>(胢>(胢>(}f<]ؿx>e}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P3: mIENDB`PK,aF content.xmlݎ6zS!3IU?Tbvޭ0U)6ۧh{ы>V6B2⛙ؿcK߼xE$Xk1F0o}x}.!vÀ6 =]IZ`EEtW$A*zd e\;ީS{`01pȯ;=Y*;BaiJbƋB4.hwًG-5tPwy#,Xk ?)2Cf= %]W`PIGK1\t| ;D!(K2k}#DgX0z} K~W+ S~rLKw|qxkM7yjA䡀W0X\-+a)tƸtj]h L,5Ƹ4j]h T,WCc|#\J, ?zK¥^RGp)_(C_>,?zK=åRGp)W#\JҒ^OUkgNىk< 1* K<^԰!!y%]1(]LKAșK7ĪFٛhA'1(z='qLYDI=,N~t#Dvf__Y$j,ƧSWuΚgx6ؓcOdž0T\%GgaZ7 r^ap0Cwܣ5+EPKO5WqPK,aF settings.xmlZs8~"IRZ \߄`5#lȥ`z[OL,iW߷+2'/4Gy흟ս\ίIs+x4iN5CS -_{Mdd1 ,k̔_k/2&ijl ռvh4jfjr燪gU|3z희74^kc[Wk)7[ۜ?ۭ]{aj5hkiM06#fk]\v%.3S$^NMT|nQ?#)19`(IeT ɶ…; a`1KN a ᮭ+[CiVYnmUEl}Q<^$P?6.SI&΄fRh gxB,BUlHcke+K]tY`Pqizz aWч#v^-^U")4*fåT) 3l41* jHDyjKX2!e)6avkl_|QCe4 DxSPM4TJѤJEiʂ1aG=ՆV}7)m*]$sIFL(EꭗL֚.\2:< q4QwQQ&`\Lٌf.'fD{Ajl'Ze9(hMF٘ @)sTl œX0.`;GQ[P`fln'8L# :}c&(tdA?˕6zTJӓ.s\B E]~ru؜%=څ2G}!i #`!Jr ~^)7{H ?̗MǶ# 9?IĊJ e\RH~YR!a-¸:CvBod{e9$YJ@'&5_M0c IsNz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PK,aF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:17:24.40Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK,aFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK,aF^2 ''mimetypePK,aFMConfigurations2/floater/PK,aF'Configurations2/accelerator/current.xmlPK,aFConfigurations2/images/Bitmaps/PK,aFConfigurations2/progressbar/PK,aFQConfigurations2/menubar/PK,aFConfigurations2/popupmenu/PK,aFConfigurations2/statusbar/PK,aFConfigurations2/toolbar/PK,aF-Configurations2/toolpanel/PK,aF]²eThumbnails/thumbnail.pngPK,aFO5Wq Mcontent.xmlPK,aF*$+! settings.xmlPK,aF֡e  styles.xmlPK,aFh Zmanifest.rdfPK,aFw. meta.xmlPK,aFjҠ">$META-INF/manifest.xmlPKp&pandoc-1.16.0.2~dfsg/tests/odt/odt/trackedChanges.odt0000644000000000000000000002557712645626062021130 0ustar rootrootPKmaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKmaFConfigurations2/floater/PKmaF'Configurations2/accelerator/current.xmlPKPKmaFConfigurations2/images/Bitmaps/PKmaFConfigurations2/menubar/PKmaFConfigurations2/progressbar/PKmaFConfigurations2/popupmenu/PKmaFConfigurations2/toolbar/PKmaFConfigurations2/statusbar/PKmaFConfigurations2/toolpanel/PKmaF@b11Thumbnails/thumbnail.pngPNG  IHDRzAIDATxAj@@;y&RKDbb~E[EAM܏8_oM}PAE}PAE}PAE}PAynD";n07ODi-Hj$wc#';aL}> ITw-{T*?Aqm*r~QqUM0<`'ƶ2,89owF]v6a$ɝ4Ea SmyO_wi]7ITt&♏>N oIm>0Ar'˃`FLM{hugX<21[ݨR Գci5FS.‡b?Dk+(/Lh9-pi37+KK| Pd>~iG/z#ow> 6zO+Ĕ}[ S<0>y޾}|f`ǩl@# WW#5u+7s2qqc  ߧnuFYM4o#/\iXSpe⚚&>#qi`fq7Di_ds!Řa`"ZQZ\<ӸX?m׾˝/tiu5e$D!/"$3[soej,c, g֔ i ``lڌKrޗ<50!65wrI#Zr566ӆ%i r͸daͬk}CZb#& daq!+k1o FLɜ.hchXFI0Z#$t:Ek5bA'h\LF5~bA'hXFY0Z# t:Ek5rF0=?绨!9™L C4#- k-֕*`Zu1*a>W0X\-+aU)tƸtj]h J,5Ƹ4j]h R,WCc|#\Z, ?zK¥^Gpi_\iC_>,?zK=åGpiW#\Zɷpd5 Ń Ϩž- )0{/P4|>v&׋:h@ eՄD!]'p1"B`KFWcǝtw qRXh4zI`a3Ϋ]QzqY<"L_&R])_ G b xV uzN;H3jIw#ͬ9GbȊIv:oEI~T{.ee^{>#ɨcGwK/qOFʻd#uap |ZixIPKcerPKmaF settings.xmlZs8~"wBBۻI4$0@ {jdG!XҮ?oWe"^@iڻ<@q9&W8ZY4CS-U _{-dd [,kʕ_k/6&m|ռ~l6fjr燪*fUb3zw4㷯 7Xۜ?ۭ]{aj5lݯkiM06#fk7ڇ){q'tO&y\Fyq=1.FQ|A39`(ImTɎ…;``񵄥5.#XBkPZaE[[FQzm'߾l|j6'K>\\$ZuNBG{ӃrI;h &dB,Fu 3k闧J >WϻvР*{HG[X7F Ĉsh!S#LL) 3l41f* HDyjKX:!!Sl() 2r: >h>KhPFIߕ,& Q Bq7x{ TV'n;&3&:T=H璌66R r[/w 1l5ᒩAQꈣ"*R7;rff.4w$5+G "?3F 2c{>*FENn2PbħNA(\b; , Rh q%oƆv0p7Fi/.J|!p[;N&CZD]ףWtALq 5~uiIasXdkG 4@E(ʁ1{Lܬ/"-8#3_J4y;ێ,4+*--SrI!PeI"$!y D 5[ wVNՖd)qI*Ӛ|5Al=: xD._F'a&SлZjגօ.2oAI_s& M&nf;Y੯-ː'ESUWnȍl ~_m@8sSl ΅25`h0F b_0mѐ2y<)(2G_t2bͽCI(&)>V@B Sw*lѐ]9JW[q|sPmڊx@"zNz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PKmaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:19:27.25Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKmaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKmaF^2 ''mimetypePKmaFMConfigurations2/floater/PKmaF'Configurations2/accelerator/current.xmlPKmaFConfigurations2/images/Bitmaps/PKmaFConfigurations2/menubar/PKmaFMConfigurations2/progressbar/PKmaFConfigurations2/popupmenu/PKmaFConfigurations2/toolbar/PKmaFConfigurations2/statusbar/PKmaF-Configurations2/toolpanel/PKmaF@b11eThumbnails/thumbnail.pngPKmaFcer content.xmlPKmaF?9%,! settings.xmlPKmaF֡e  styles.xmlPKmaFh 4 manifest.rdfPKmaFRs!meta.xmlPKmaFjҠ">%META-INF/manifest.xmlPKp&pandoc-1.16.0.2~dfsg/tests/odt/odt/unorderedList.odt0000644000000000000000000002244112645626062021030 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaFŊThumbnails/thumbnail.pngPNG  IHDRzAIDATxJ@@ +²%48r1b$'ޯ~,M}PAE}PAE}PAE}PAelooo_}>tk>/v˶o)fe?Gq5 9_˿}`>\هqu}c+7o>+1o=fq&YUL]XLWM<1ڨ>w8[nߝwRwA/؁˙O)Ki_hx8|vm]([s;dk/OFY\be]ǿ͘geb}fkӇ?/>[w+t帮zFx}lֻȂfϧMO'Sokz|9bqSʐ>x u|&Եܟ};ޖc1ܼr Vc>̘O ApFͧgy<"e O0RAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PA`WIENDB`PKF7_8iC? content.xml[n6+*О$Yn mQ` ho ZmeY$ˉeq``a^Hf87 *2(ؾ۱-HB!2؟> ۛlB8hƐ'Dߖ&|;edLG|L@ Xc@RzqvuoWnisp;b k묰umؙQY8=bmb/Hƞe.esF^n+\2ЃŸ绾Wbc(@I)dKx*_[wrPpXQ{zhd=Hc~ ,nn*d(iMSJT>yN: ^xpXUƻ&q'\6_78t=mk=@ۖVyL@%'E ^AniO)f<є169sHd w ]I#$B9Ö@*,}( D|;$ S\sSr,nWRANjV~Vd3,J^ G{=ɉ6>PiA6]`9tqbb <}|r9 ryA[txΙLY9QfWg"v~sF1rͮ-./iRϦPŒorE2v: 9"rZ|-aijpk(-8j(rƶr^yQ^$V5 dR[tzk@dm%Sc#JcE~Un?.nv,P 4] iIjV0AD~f!9ȱ 2c[>*FENn2PbħNA(TcOvZAX0KAu&{*7NQ)0|36LmU&P[1JxQwQ ܂p0p%*rU bKp+NCNĺ'\V<"\h,B)Vď3|8ef}iRۡVTPLqP%T?@%X" O30/na'X!j81JW[6:^@ $pOkZs @I&X+|Ql,L`kNMPBojA^KZȴ%}͙f24SrC1WgUェDB2/ClMU]ʻ!7f)0+}aL):&Ԁ&S`;H2}EC~|&@l.+. d{e˓0%QLR:}h&$)w*lѐ]9J[q|sPmڊ{?@]EPyϯO/PK9?'+!PKaFl.. styles.xmlZ[o6~_aؾѶd).L0sAKJHʎ!)JL]y` s?>l%BR^>FtMH򌖛??=_iJO낔 IgDN@KK|jQ.9T.K\TWtBK{i+FXqK+ kYa3wc5/`ꋯX'КVg(WZfnrŋbfiWՂ,FfrO-cӼIe] Vȫr4i0̇ƻ&e <>QK@ Z>9筩Z&17ogǽ;ɾTᱧ'Sq^@xlu:n=n&HŅj Y/PNҦW 6^X7"˂` R m)}wPN㿘hMV'We$e{P~>rYM sKAQi/bY@G<#ft%h@GG5 mHI;*-%(ϩ9*R-Y3[S\ɟ%J|+.ZiR566>fʌq͚inL\4oUrF( Ț/wxLD7ߥqw6Dh>I q#* )A)qsA0ӬI歶/=f3Vk@gsʑ֘I/*,Β4?µznY1r60f0tHEW~m[1 >h]nl!+h]}tZ^5qI!!R̢8Yc5RfR^J@8K{|Dt;։in-wfG۱>=04洯%[yhc?:HYrRb,-&-hkx2UUN  $QHRo].0d+Kĕ^d\Yo]E\臜 %ü䈩ecyEn+^acW\Tq5J ~H]osX%WB*\?;/BY4X̃Xμ4T  RT_+CfbPbJ74n}ŕ*{!M-Ml\9jE3*m0KgdbL"\1<4ɯ]{ڭ Kq"LV9:vBOL!1 P;={dJٶC1Ӂ?#ϵn`tM4NQa׍k-b! =O.3ƥ7c^_\ 2H1sF|@y|.wnrhj+β07"J9rXȿIi'%g'%pb<ǃs%y kקO5&{)!`&=v>刣Bsp+N=@=<).|OD=Fg -u =@~I\RLuwW@nJ}Rcit5< joG!x'{߹Y8f`d:ࡁ:HB:wA}Ҏpqo ~٬_+.􀶄#}weH? QzH[ő~wUH'MH_CҖpq p="2C8wЖpqUA}3߆O9^!ǿHx-tS lPsC\!W͉w[j/楫/co[Y};BRfCҰNF zļ0Z,w!t% ڷ 0dh>/@'M#˪ xTEzK~1Ƕy!]RT 'PSSh z *S{Nar,sx}6q_~^!:ۆ] ݵhwsDŽ=3Ɫ.#!X:ݚEcf/B著?B?PKl..PKaFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:36:15.04Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaFŊeThumbnails/thumbnail.pngPKF7_8iC?  content.xmlPKaF9?'+! settings.xmlPKaFl.. mstyles.xmlPKaFh manifest.rdfPKaFbmeta.xmlPKaFjҠ">6META-INF/manifest.xmlPKp pandoc-1.16.0.2~dfsg/tests/odt/odt/unicode.odt0000644000000000000000000002701312645626062017633 0ustar rootrootPKTF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKTFConfigurations2/floater/PKTF'Configurations2/accelerator/current.xmlPKPKTFConfigurations2/images/Bitmaps/PKTFConfigurations2/progressbar/PKTFConfigurations2/menubar/PKTFConfigurations2/popupmenu/PKTFConfigurations2/statusbar/PKTFConfigurations2/toolbar/PKTFConfigurations2/toolpanel/PKTFRʱ::Thumbnails/thumbnail.pngPNG  IHDRg?IDATx0@(WUjEst>FR$ELR$ELR$ELR$ELR$ELR$ELR$ELR$ELR$ELR$ELR$E,Kjyk_߮_8_#dIBYQXso}^kJj?W3 -lꖤ8IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII1ƜۧxI%Fu"&)b"&)b"&)b"&)b"&)b"&)b"&)b"&)b"&)b"&)b"&)b"nQCE^IENDB`PKTF content.xml[MoD+"#q~&+>RJV{ 3ff\'8H,Gĩ%{MXi.;=y6 %0:ZNj`1zq> ;a1pg^b*mQ 6@>C>E!}Yi/-"<d]e-Q})sUVXHjQ}*D`d=$ox1 f`M$t'nM^b(sq1ᶜaC,Q]S$ZIEj){#뗷uC$59r@8;]RR1<Hʏu.?#"C$m.Дf-WR!%麍>@ԋVL!0_\ 9\m\ia6d>G.'iG[-zi!1}{GsDE%@pef`kdG̅6>.rV b I> ,E+p2BM8Ml1ue*v@GYJ(m Xŧ5$- pLQ txo7~/, :m[h`5=rmĤTwZMi>E}4h.VF^iF:ecfJt@x!A^B<]Z&L9%w J;2-حA-VW X6pZVH(,ZցZ805/o,^mýpzO[( jc'G^|\90f)@#JM3J¦tA[NcQ6e@(Y͒YBr"|][o3eef-Zso ~ꇓ/*c o~y30+Ѳ꺞nn_PK4Fwv>:PKTF settings.xml]s8~EכN$M8%$_+LJܜ]$_pvS8T*r/`Ma4tNuͧ%qH:D)'0J VXpHdEVy]Ieo4`/7RQXLSr xvuuUL@]Φ+ =)!=!c&%v^*ٸpdh +9{$u"f$+IޤVț1#AGKTuqhdCxjE0w$gL>]|0Ix``ĞaF`9%n~4<= S3GȜxʷtX&ƪTLp |Mn3Xxeyo2Prt7IݧSw,ŗp?qӺ͸8,54ٺ; yS.v!Wbs^+>/CU>ݳh"XANtjBUKa}Y+3xD \=uXg[<bpA]taOtCփ FHq8! ܨ?l"jڀּaIrU[,U0]401{1 4mx.p|饪!b@T4?a.ƽQpڏV=uCJZl ?:a#t=xq@6 4J.QYCq}\ߊ~Wz=Kju2t= }6hV8A0{~1j;6G GNK y-)?>O'ۺ Q7rnT|;cNK~E槶3  n`'.(~)i@{0E;4@K0*ZYutml]Ʃrw5 lVv0^ˁOS:Oa-V7KҭZDՆm?=. af5Pt՜R<͝=,۷jga~̢`0gaϓ{B6qjtԙNaaOˉZz P(ں۟@'V {IwU$v)vɌSXT/>rV;Cv'8"<-S}.fjs6H g[XLWpM)%$/b3lf Mh+U]ELD>gta:Lk1~%3Wض"B2I^a` ücB۬ZdôޟVPreD()l4= I:%IQ#ijeJ $H-!⡩$i!B|bctv޼X]@ֺNdt2F!Kz-]ؐD0$̺1sUlTr( c BR{s!Ap"3cO[3%(>0`J3!qbA>3y-œѥEz1i@ٙ, `v|{vp!6#AݐuXo*Ͷ̂zA5!{SN1/9m(7u=0ry[YqyPK|lW'PKTF styles.xml]ݎS@/dK{Am4nZmeeQLrQ((>ZP%J&eزbC~")O{oq"ah6r\0r_Fk{F 'nx= #E{U5V:kG)[uXP2%7n36Ȱ>[s]p#ckZYi1cigYc.UЀy5|֎ǭ{p`EN:b=v ,_B_cEe P jHBB2@ӜCĂ])nG{hD >0Ҙly>0@8OPI6vS/ZEqD 5ƣ O51Ҽ) ODpo^'*{*F".1$LhjM=󀿍<>{`؏0 ogÈ#ILAJڦAjӊi쇧'^vK|KDуOFRIYk80 p"힃2L,uAQ4H5tap\28} a s+3 ш.s%v#I>h"krbo$# w%#%aBBD a:0hԑ@w#Sy:Y0ŋuHUX}'M4&-4H9|WO%f^B/i+빹;sҬI ;i拉Fیe)=v:@卟e|Ϋ]?^ǭ|ؙZ\C }5])*kz1*Tg^|`,n~V 'WL1l t(fCzDthѠǺ(9 y dABIvK¬X)*"+X,+Ɇdp. #^\n udX%b JJNAt,rk-hr';K'tZpr^G*eμBBw 9|BIS4DD"dP:2.%Yr>#wlaGjqvuVdY'T;9B"ػq7[-#z!Gzf2ޢG*f:)?*M- 箋M'Oֶ#ARL]Fe}֡VYV` #S+ˊZ3Љ(9U͗_dzT!iiݴh:ItcDeBzQJK#mz _d')pPi)B:ًzqO:N4M7 Nɿ&' |;ͰsJiY~(>%jS&Ҥ5%"ti5XTiYF:8C(*  QQm]4IJCa'My0:O"VIE+Kb* IZ= 2Uh>sQh "PR}}QYe.O{"Q|Dj){ʲ_(BMtIgkZ/!ml0_j~&[5.>@+YZ^`oppD?IGͥH]/?15`1a8C4rƒRN*H{O7_*'6H)v|[x PtS:kFPop+ >)n*pұ5B#dMxegYӪ=}wkRaK+}W^SIOTYOTEO^˞^y~ŊE㹢8_ZC5t X|v?<^X=7X=;-fwl)S|Kp.G4ptk꩎իRmuyWiLU[Ʌ9\sYn2n?xܬYMmg5Zg3mb>0&MѳFj_Xɩ;_^* ˺ZU)\0h-]F ~x廳R48 lJ7+Bc y ;R,t8iu9)U6&+X>rڴ9Zt؆J芫ͼJ=Ē fy&+^ȥ%ѻ.kGT&~`RvIjxqi;nU%K}.ӑ\l3\+Է3`Vw f4ބZ\u G[t/hqGqF>TSP;qx\ WcckT񩥩rj<N9;1* KŒV|_5a֎ײL*vdX `Ҏ kaJ;25J;:ʉ/J;:ʲz>**[^ҎkrbZ]=BƊbU]Eb+%ۿ(5luW D+|1ъpL"W D+B{1ю^_PQW7g?7뚺z? TцnP -Lnh&*7~A>ڠɭmڎ6(uctX[tᚖ&*7NPq:Ma-LnkrtXZ:wt^[676^AV`o SPCNv%cQޔR9 pqBDz'z}jd{W"ւN\q>5u et&e2tFriR)BuOzU'iӵ ^tw7MԦ86Y+lH2m~!AD$vedX Qт`o %B%UX jk4gNwǓjNq~d {@GѰ|#d4KK䏟wD&Abph_P#c2L og-ZҤGLz$6ĻRPg'Arr2ş֚ rrv8X?, Ei#f,2R2ӟ|&K$Hýp?iY6CRaIwvq#,[zi* [Jx)mI٘zЎ $Ę&+7K`MHnOPKQ`PKTF manifest.rdf͓n0 2015-06-15T01:42:41.10Martin LinnemannOpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PT4M47S1PKTFMETA-INF/manifest.xmlAn E9Ŷ2YU(Nz$,őj\5Vv lvggh%s3ͱ&Y[vL,ΐǼoؘ6,,S}Ҿy9?&]x2\O 8Ղ谽~8&(hX^cSҲ7Q~tvzաn^f ϪFw@j7PKM MPKTF^2 ''mimetypePKTFMConfigurations2/floater/PKTF'Configurations2/accelerator/current.xmlPKTFConfigurations2/images/Bitmaps/PKTFConfigurations2/progressbar/PKTFQConfigurations2/menubar/PKTFConfigurations2/popupmenu/PKTFConfigurations2/statusbar/PKTFConfigurations2/toolbar/PKTF-Configurations2/toolpanel/PKTFRʱ::eThumbnails/thumbnail.pngPKTF4Fwv>: content.xmlPKTF|lW' settings.xmlPKTFQ` styles.xmlPKTFh 3#manifest.rdfPKTF r$meta.xmlPKTFM M"(META-INF/manifest.xmlPKp)pandoc-1.16.0.2~dfsg/tests/odt/odt/headers.odt0000644000000000000000000002442312645626062017622 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF~^Thumbnails/thumbnail.pngPNG  IHDRzAIDATxj@@Q _.fmwLP4 䪙IxAE}PAE}PAE}PAE}P&x{{]xk~,1q߿w} q`>t#9n5uqSO1nGKsd/;~ <hȋRXУ1^C1+B_(胢 U"EQϕ͏o{?NJdY/0y!_W8\sOPAssWpύ"~]2\ݠ9E<:'_:.GMt4s~Tǽ%-Y E}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P'yIENDB`PKaF content.xmln6} A G,v[[ i dmAKM,%"uSzcI:ԗDJ/IDΐ G^{Tu5?_~-39p/>ųs}383yτ3cSYzpq#㼷{QYڞE#㼷]Ugi Iͻ/YU=ƒAֽ (=%"Yn3w#+˞NV4dv&XblӶR[ T5>ix VN  U]U$5k#2>;ry_u &wZ{IۓT9! *flgeJF_wgw!8̙;gD,+JXx+4+|^0̘Kz଱䲱A|.L(! qB%fYaaZxtn)33o@"/l}qsO3.+0mm{I :xVY}&h#<cDd<;+ 2@!Z(X0 ?EFEPO ~Ipq"C>NzހBr Xh#ǗFfr&v7Cw_zF4  8("Opd=N<|x}d .l]c.p ςlO];PK}¢sWI2pE|)2Y-gnf%ᳱwL\b : fhN$aLyI]3c#7v].GcXx\.c#z\ưMkyI]3c#2G5$a}cW6dr`4tZ FiĢ4ւQA (`FR,J#h%KW4FM,J#h%Z Fi-Ģ4QAK(`FV.]ƥA}‹w2纙Cn\9qԀUVzBm\EzBOq52ԆU2gj*zaE6"E>NQWNS\aոQWS\+a*ոL?,t?:KåRGp)S!\JVk0sمtOsi>Pt0FPc#)J ! ހާ|*>~xĭiiwrD!Y'EmԻU~PK~ _PKaF settings.xmlZ[s:~?"w!mOa:H3o^Y+ҔK1Kڕ}R>-cq Jsy;`{t+Op64C h03Z.u3R%4MbM41Y|=)˿,O^dLҬVռzh4fjrǪgV/|3z흭74u 6gvkl>sXX۷5iM06#fkծڇq &'xiG{7]7jb.FR|A'brzKQ^˨ɶ…; h%.CXBkP, Z6 =xeqǢB5 (=O2et&tt0=(ޟ$`|(.OHvEN>[aj:(XnZz-F|*-weA1 ]E |װrhxT'#ϡT1C2J.oaS1UN W=B"JCPXGŒL }~bF8NX`wX!܌;ɷ5dNhA@i<DC:4MTdv`,`3S|KU*MtdD' "\JAnѡ|e5nwm.Z{Q(`,.Gر@981`6#hw ?ljY9 .$d W0HU?L;ͺ(CP:8S=ia,U`;GQ0NqF@nu(MEQEB/.2 ~i.QA+m,╦']f'" ?4$9K{ϵ oeCh GBb@=S&n~/%:m 9?IĊJ e\RH~^R!a,¸:CvBd{e9$YJ@'&5_M0c I?syTQQ6 _t2bͽCI(:}-h&$)wDm*lѐ]9J[q|sܡJ ~ ;uYOCuAz_ZPK*,!PKaF styles.xml]ݒSPJra n3=[$L^o [3ri*ϒG'#ɲ/ I;H:ݏOp4 уa[#c#Az0~ޑ2O|L]G='>y}68ϼ{H+”g̲t”wO-̘ei?A۶”l*/I[44&FYPSDuvc$=χZ+<  qigж 啇NZeq#Wxk Ƽoؗe7([k0 ?dӶ/ʻg*/ ܲ'LLՙsT玪 r `69wT*7ݠ 7,L@&o twh WXz \k'_)WH/@@z?. رܽsн9_] /܈^ 8Q;3B*U.W= cؕ oE\ K'2-x =R-m_SۦZ Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:39:22.18Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF~^eThumbnails/thumbnail.pngPKaF~ _ }content.xmlPKaF*,! settings.xmlPKaFz݋ ' styles.xmlPKaFh manifest.rdfPKaFmeta.xmlPKaFjҠ">(#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/referenceToText.odt0000644000000000000000000002370312645626062021315 0ustar rootrootPK%rF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK%rFConfigurations2/floater/PK%rF'Configurations2/accelerator/current.xmlPKPK%rFConfigurations2/images/Bitmaps/PK%rFConfigurations2/menubar/PK%rFConfigurations2/progressbar/PK%rFConfigurations2/popupmenu/PK%rFConfigurations2/toolbar/PK%rFConfigurations2/statusbar/PK%rFConfigurations2/toolpanel/PK%rFڞ^Thumbnails/thumbnail.pngPNG  IHDRzAIDATxj0@|WBIh9?Ć^̇xc|n|4}PAE}PAE}PAE}PAE}PVضm=xi+}q)$rictEKZcAzy|:~Kyo>qzO#%,Χ &>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(wv"IENDB`PK%rF content.xmlWM0WD[jժRE=+j#c&.xޛyi/x0%gpGT1oiikFh)R*mB?4ie҆TbAMjIr*kVSZ1{=8d[}{ū=8dg} I k՗7% ϩfn'FHAs< U/]4S5A.d M2JO,Gwc/`>#5D0~-1[Jf->NlɆJ!!S2cnx o9fF藂 GK,M&!h/8W{ 2\x0{4GG]y\DžUp70x?AGTvhw|_++I8C W>M8 K8pJo c5Pɽkǻ^WY+|R03tM' ߡH&a* JPok"">qdUt >EKp1&:P$:Jtְ?PKB+[ PK%rF settings.xmlR8}v!)`JvbxSl1ȒWq2_-;aL&VVnuK}嫯!ήs/ a._2+>.x܍Cԩ$J,s u"^uHVs-isF_+ƜSYFG,I#۰O0;? qt0̈Ϋʕ8^V*h=./mwqV.uU ƔLR6iou]\Jpg`ZU)Xٜ![4-nqz4s^狃]ŖM] %"#K[y6@D=f/bD v,cItp״/sr0r&G6k_:|k8@#u ؏Wx|*عU)<뇵Xؒn<ֵkv^蝴s5rkXs Ѱ6srkP9oF#M'1b.qd&KsOYɹSR{2c>M'jaa' CjyoXY IƓIz3iP)p3 Ȉ_3yl(VN'8"<ܘK ,fHk7v+,Vk[LzVpM)%$8/b38J^g&mӞ|LPj]e*HJux@Q;ހcG@o1ťv?Ƃb4ݷYT@QDZ(K( 1 "̫0&$e@TcbkiK!q@ˆqOWF/Pj @n# xMM 1GS7ۡBDkbyXۭYC zM]XD0$:1sUls:)kcTi!=vm։(T8t̰=߭(>Q}`J 34qbA9=~m5œjѩEz1h@jmYMbY7T€ `MR٪=8k,ثk6 [EY0.ΒշwSt|WR8nlTecx^jLP7>#9#O]td: DO/}Q=S5& !PP6\{8})%vE[XUF>k&~n*c:ifgi1E cJׁ>(U.cSpF5ptǛ֟z릴V{0/, bnh鴟(\2z9e;A1 s(TH#j>ǾBGI)\>TX}h?^ԅ~F K9=¤kCJŊ E$ꇸKR>e9Z?8?veA!-c|fCĩy@IEHHLѣ1Y!lL8}2Vwb D$B.qsEb ՞2?񹇬4zЙ+ylte3l8N&RB=L8+ ac`ӑ Еm d=L['#) @at f)s$iA#(em}q&da;q +fIudP(4点rAAPxXPW~UgA(͹hMQH`.Z4y`+67( 4 i8,a`)|ːvYӱhwY Jq+d}N羲wafT].k& ,YUXN ?nÏsP~k68M:1T:JP~82S銞hXW!Ş]xJOM'V4%S= ~͉S *F1,1`&رl>'iJ*{-;'1ċ %ǖi7b\iT"r|3G|EeX$z2_ m= KQUwT'&V9}@l$b2҅U&Ej`;ap.K@A$5Q;ۃcKT;lګn?.^4VnB([sTzk9󊇪&~\kV .܀K;KR3 :i>qOпey\㡜W)NuKA*ܫWa>:b%f9W~~r򧟪nWOfidWVaEo:Tr~lŹ)`; (_e{Y";9є(mQg[l*Uyu\AcnQC~bC6OZCOJhuyI$YkVxƢN@f}R[au 93[yQӓAj>+?Lɏ;^Hig夁gCK۝ZJK˔=K -=꘥bg~v3;ffk\R*愳[阥'%biN8:ei?ӡLٳ ғYڞӡLXni,iPsEz13Of:;9얶2?L3 b}lHAS/+ !kzGS(S.Օ5(IXpJYodz[R*GXNh @Ze*6. SyhU֥j|}Łt;L&uTٗ;\FTK4T@1A5C%Ö;@!r1fwJZFE w8VNr^)$r۲},b,rwR"#d(0Uxpfe \\+!pn.K \TAj,T=V/ŧG.rՐZkܟhXspp=mtM"W]krpMS \vK\u]͂eEKrH-\ۅk ZP\wm/xM#G]- bB #cѽ<8x'8.0=\R@5kP!eҳ7CXb˹4XRH ִ%XKu//]Y`^y-_{kɥA̯FI}oX+W Lm^> W_@ptA N:mR ncNpt(\gαcs5~ˡ4@st郻@^'W,u*wЅM0\GG s8翰 c؅BOߛFF%Nd6@ $7t :YS0suڼb5@'MxNՒՏn9[_)D敔Lu;P-\m^I" hNG!*DQM($)NL >^A0wod8v+, o1>Cpf8tNrnQu3[ur%G4?tcfȗ3m黦 =w$K}uYC*w0J~) {mR85#ˌYa05ILP5 "F%_go'Fb.Na!Pm1iىٜc9meta.xml Martin Linnemann2015-03-01T17:26:12.312015-06-09T16:16:32.75Martin LinnemannPT14M39S4OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK%rFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK%rF^2 ''mimetypePK%rFMConfigurations2/floater/PK%rF'Configurations2/accelerator/current.xmlPK%rFConfigurations2/images/Bitmaps/PK%rFConfigurations2/menubar/PK%rFMConfigurations2/progressbar/PK%rFConfigurations2/popupmenu/PK%rFConfigurations2/toolbar/PK%rFConfigurations2/statusbar/PK%rF-Configurations2/toolpanel/PK%rFڞ^eThumbnails/thumbnail.pngPK%rFB+[ content.xmlPK%rFQ' settings.xmlPK%rF<3 e styles.xmlPK%rFh wmanifest.rdfPK%rF>meta.xmlPK%rFjҠ">!META-INF/manifest.xmlPKp=#pandoc-1.16.0.2~dfsg/tests/odt/odt/table.odt0000644000000000000000000002501312645626062017272 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF~YooThumbnails/thumbnail.pngPNG  IHDRzA6IDATxnP@ALlVHf > Ə8>^>(胢>(胢>(胢>(lp8}<_}ѦM/uy'N5_gccne.fZ~2A afCpqhս]ly!8Xɲ"X~3n]?ΎG/<>S_v|(w<m~x9燯n,7} `>3]&u /v<[™?ƀAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P>A݊IENDB`PKaF content.xmln6} C P@?bvYd(Z i dmAKMU[COR~HȶdҊ989C7?w!e3t =p9>[ozM OuCn{$wGxl{g֚SbM7% iz-oqaweu{`^|fe)u"Y) "A8:𷙵6 :}/0yU?Y3+af9 8 9oX>o?U6^.~68YO_i(XR z [{݉/P?1܌d[߮oճXbxZ)ņjo~~ `v׊,3eX 7![ܢ"( srfaY8Uް&تqA0&sc"*L..(_%%+/Yv q~%{޲=XO? 2r.<̟6L^{T墍]\/Ke`mθW ˨؅sqQr$.lF6tr\bʰ۸ ^Tfƍl Jr=*q9qi0d2ݱ0qR#hb4Z1A-`FPC,F#)j hu``44j hb4ڂ1A `FPS,F#%ԕKS4O =f=,'(om%\rqVzBi\yzBKqU22gJZbE4NQWNR\aUQWR\+a*U* a/? e2Gc`Q(XFh.4VS?2GpA0\Fh ,4 ? efѪ=(^H:a;0q΂X&kQ zЕ#k) JOy`Ý7ك|OTzROIIØN9T9̦0C_"lfC;56C^}|eZ:+q iH r}CWb+{2S=ӧ2*r ;^g7r|01pzs>aWPK^SlFwPKaF settings.xmlZs8~"wJa:H37a/XHrV6R0=b'&+ەrygPν3\.i s@+ Ach>Rk/ULsݒ,2A e׳[JptE$z}\[jQo\^^ֳ/U~ _f2ezw+4㷯6 7[ۜm>ۭ]{ab5hk~|_bmG:.>K8^ƁGHnCi_DnR4 DCH݈3DLzmR(/; 0CLbԸ aᾭ+[CiYlUEm4{(bdOj>PydRL`zP}8ItPOxJv,Bu SEr77J >Uv*{Y{ž%v^5 Ub94*fBT) 3l4 * GHDyj +X2ٯSl(' 21rv:F >h>ghP'F,]c& >nT>_ҏDwLLt{r /$mb0^P0.{[k}ᒩQQXDCFr[= Ts3 svHK# q|HBfrly^e@8-ʴsQlѬ1;,S =(N+sF` ¸rDEmAᛉaj0?2Q҅>_\f.-BWXS+M_nDq 5~uiIa Hk 4@(ځ {gLl."-8#3_J4Y;tJr~5ʖ)u '(@cCz:Tآ!r/.KBk+#Pvꪞ.ރ~п:PK _~$,!PKaF styles.xml]ݒSP>T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:45:24.40Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF~YooeThumbnails/thumbnail.pngPKaF^SlFw content.xmlPKaF _~$,! R settings.xmlPKaF Ɇ styles.xmlPKaFh manifest.rdfPKaFM<meta.xmlPKaFjҠ"> $META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/imageWithCaption.odt0000644000000000000000000010202312645626062021434 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF N||Thumbnails/thumbnail.pngPNG  IHDRzACIDATx teǫt:d! eTlAQDaP!"1 *M2l#*0zDaQQAH `!Kg饺癷;9'9=w<9mwUjD X `A~,A ? X `A~,A ?a*KΞ=kXrD:oel+"p| ([VUA@v}>_(§8󊁦ixmBUUA$ f;``0h%}2xm׮+Y9^r8@=U\as!DS{"/gE#"T8&.$ l;RD`H vxX4nw>MFXpM6ǒrHP !r0i2~r(t8qYKȯoSZViVMU4 qy*4`|jw8H猒@7uj^nh]#uQlo-‚/_% ƨ)rINr8.Ԡ>MFXCD9m: F!$7?Äi#F%fJ@8#]W^t$l8ޜǏ]^cc'dA;F]3~9ha55$Ny |ҿ%aGCC}>$}"NY P!&6>XUTllD; l0*jlc)%=ݶmfx+^D7^?<18؆aF. $766Æ ;ZDE {, W$ Cw:+VRQ^ԩAh`CzwS}&3ZDT qBq )K15}Pj^O4~*JnQ4?;Vw(Cp%Wֽlj.((x饗̻3r b1{۶=4SNjFF8ueÆ 3g4 ʲ+ogTvv@-[6O8rS^GO951)auϽt;o+ ڝ+缔>xaCpnk_NE"vO>pG3'=?앓c'P0BZ$mڴ)++ s,Y` 7TYu_<}tl\Νn3fᅬm1wm"#FUQJKOCsZ]]k1vڹsg*bAw }࣏>2 $#G$,Yd^]{qɪ_("=$}YSS{'6nF3gNvvޫGb dy ƛol8}ݻV[H "8[l6m谹VZړO߿Sc0!ػw/*B]}]|NZDk_J7S3"z3q &"x9ԦQԯMIuh|ĉ㐠w1}_v _*++Ǩ %#+uEɓ'YZs&#+CӥKܵĉ! Yˠ~yBeE/YPP2@ls6rΈ#JHzJtLCD zՕ 1bpɵZ}"N>՜$Y+*i ES95:bİ PHkL >os^klrɓ=V*j˗//(=*NϞ=kk=G;>X:lڴԩSӧOs/8>ݹ0GVCUӧ{n%'ܸqCKZJLLDT_qv*cǎMKo&$Yys.<$МZTt> z?|7wO2RBr+DV~DD꼍b) _z9ٳgs2iӈ AH|uʘ36~zŘ| !M7W^Ey^M4w~6/~;/&%%}{קM1p!w_ͿW._ƈVl1˗/UWԠ!ȸ^Q9|uDyٍ=k瞑F(" .+!!z9GX7mvРA63/Z:a$M̟''5g.ƛ{<,<_Xx(>ummmDDD򬬎u#=sr9S3=6%6x [QyClwϛ7w>n+HGmDV~8]P@Fu9}tׯ__qf׼jjӦ bϟ;7/[5p6rǏWUUo$Ŀ?e^^GQT###a 68sLEE-rȑ^wLLTIb?MtGDx⋸92b־C{ڃ*"SOqfz͞3{޸qlڼfshEQFJKKCX&Zm۶$PPcqCCߡA/??+W}~_)S>|DXRPfΜbŊÇi((Xi"恵rnڸiGo~–d`vlEɐe9=#/~(^WDDs&#@Pz,K\ Y__ߵk׉'>3urUUգ ;﮻~4!>b-[T7,mu0FEn0i =v7x9tN!jOm#Y=>MFXi,Zy$'-}ξ{Wh!ٳg;w a//}21uǎ} )lۑ$RSϝR:mx-~Ō,ԏSNuiҥ,Z,~_h}Ɠ"=BzBH rP?0 LKK~:zLΝ:oIIIRbFE>|(33[nǏ^giʅ2աr; 4.'8i 9?Z&_ŐEEG746?2W\y5Qk>?eMLH8rp=^|ꪺw7dg}f׮]s8Ą=z91JBAM툨`㊎Zƛޠ?1h 4aR۶mcbb<\NW$$EEEED܁:t-y^@-ڪu]rV+3[i} ‰cCTA҇AN0aU+Ǘ!t{Zjծ]䔔o~c=6`m}҆=]߻ՕJ|bbb*gLTEuF8Pv90(^>|HDž gQQa^wOM5ݴOUյ;LW]Aogl6pҥ^z WڳeV410((A9h;as&#tl2-55ռ橭ѹ={W\p!%%%..NS:t{.@mf~)j 'M$ӹ k_ڌt9$Qx $@1R ֭[{l?+V@0{l$ 0_xY!''Q@FYh5{?ahDIF8Y ^sϨhݑ<닙EjCj-eO=9Y +V@vAo=ph.Y3u$ظv C|Ua܁x/g͕ ̅ƒSoې<"N3 9cQh,?X>oCrڧo׶]VV+%/q.cǻwbc뽪޽ah@!?*䄦gR2QlNMt|>Ail z8^g>e.>P lX4E֟Eg U8񚝳C6Oi԰C痽~s_M_CL8YUUPh"X__gOA}T6be-PL̻7󄾈nH_bl>TcqKZras|v5TmŒ%oOaa/ok~l9o C?~0 E qA ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? X `A~,A ? /]<IENDB`PKaF content.xmln6) آ+ɲLn1Ei+hRW}c!)t"hx#~!/?}HsAXpopd_^8&!G,,SnȲG]8% "J8\KD'+cӻũv-OYGS-t٩19*ȣQik)+%' UqɞЄ+O eww)*V{oR}}ڗ UI~4k*UÝW~6לAѰ8Kۂv.i$ 0uuc,Mw hkL$ʶޙ|sƋ&0&К4c[)ݿemm(j5L}X{쇇WFMLUV9DQn* h,:+O]4qNZ71؍pHK4#,DZpޢ,A4pFS&) {I4aTi_%'-mlkLwY&8k"ı.^qYk޴IvW?2$C}8C LVWF8}+{*Ge@BW$k̃j Guq<W;ԍVn `1xB2qSr,RdE!wkU[Cw 'cKev@3O*8 &X'& LR>v(ҧzK#yQ {C%8+HKx~ϢSŜqJ-ՌQ`ۖ+YYc!%0O?F;;#y2%|}Cp8E"#)g󒖦h2/#*pUIR`($Ŧ-}68dDGOsW5Cpw;ӀщV,)HWrяf2̾ׯ7QhwW~Iv##R f\nz-ބI& m>2V1q.!N)9b~U~*M&3!1"AQaq2#BR3br$C&S!1A ? pOj~7u .|TF~J#{4&'a\'8h6o%&)d?S5̗Wo53I!,za[ sEvܸ'@ )lq'?Nv@ 1vx,z#f}@!( QpOx0c% |fw 獣 cކ |Q\Qr ;v4J>7|3Bh'+.|g*IǮ}{Ph h% b@YP+a($恻)|*qڀG@W>Ss4ݴIbB $F[aFIb$EnW ZnֺѭeRIFV544}*/5jqȇ˾ZD1ʚ.mo!E]{odh=>Ux j ހd{UhVi Hb(nAh-3SMQlm+^/UgMYӮm@ξSn&=Qtv}iP22IQ\O}4IIH2W'.qDc6MBv~xQ| 2GAg٠BNN=(:RK'l}4 P)9ݨ-Ė$aD N3҉OzsBԺVOa%qbp}_{K]\]Ȋ l>ѭimj[@8TƎC)a"T{ \\Gn84{hXfq@rMz*@{h8 ʂ{/ أdA} ]Y ӯKNO#n|UtaZhg=f؊۞=EPvۃP7$|9'$ǭ `zQ*zsPpq7(&na^ֳ[4<81+ށWh2d*pO| z{{d'@|IA9JNP &>Sh, :Xm±WėRpcG:ގ1X+Is(k8~2p;A(8d4̀Kg2h1~mVR3Y/cSJAv>q){Uh(\jW^wt&O'('KU H6@(7)z wwh9WːH 'JnдvXkqC"Jv>e]1;ԃ[Hua.r!S^⠄랋5Ibxz>zgA"Wu H$A9#hy47͒wsbıe40PFGހF;Pϟ'>{@X EJ@rh+6!b] 'f-j 2)U@pۆsށsbhmdp㷶>tbR뵽F@v<Ο:g0pc1q}`z8hХyh,'èk Ë;uk8zOu.\^27an‚zM\ڀ6JIb䌒#sFu[WA w0X~.}#\F8E~ZBPFkH/'BBA 8EAϡ}3=+[B,zZFǖhnNMhGҀduHZD8]%ݽjc2Vl_lP*P,QO0($~c@A4C+0h86s@ buwF{P~T#q PFZ[pw ?0`?]M(C;m5`tW'Ƴ[x敝r1X6d{t's d([сR8,|AyC.,cC:vU[zQT[ .n@S l+6/m9$~X>%;t緐IG_NeCj2K*# Oo tcy)0@Ppڠ\'$vAhAX!sZ%o*Xla3!iXdQ)fcJLz^HeԓpR@>'?,J('G!\`\g@QK%-gPI( mka/n G?>>JM޼1EՃV ŕcʣGD:zP4MzM1Rd޴^g/8&CFQV}#> H(4 <>B'挜}?Zɾ+{nz_UkFd'@_$vPhH_T\ܽb˩ dUsRO-bG_XğQz;%7P7B bG<v;*2W+pEmZaM& PEuv<>$ Q#_|f ۩1aNs\L?HF($u3S(/-,⹷%w,r+ H8# XOJmN[NU6o!##Ci-0x19}=q@Pk,Ls$rm,Ү C[qsxvH!$L14{k1 C㲽K)к}^YOR;R}p!Dq)qք* O>Z,qsE%"m9⃣b@4J8G3'n8ݤ)D9Yf Be- EOb}A|:=֍ҤWeKö{zwEץGKҺMWH$]] u7XǤkG%ܒ'(Ocϯ;YMG͉ ނnTYMKdggk]jr JѬy bA߈yuv{8£n~mAkz+amaG7W;җαwۜE&r>>%)v49ϋkqӎ6sAREH@s(igyo( -6c MX<ǦhKX7=͚1F"ϥQazOU鮣#8ǵ(ӟLҺvWҒNcB ᱵvsY}3-k*M8?޵5hLT 6K +3Y( gXVՏdѨ Jc iv)8r{@B%=@F `?h' h6_FbdB@2Q^BH`+!" ۽` !TAͬtXSρ"G%\|J.ϫ;KK:.@k 3dzCW!Q- &P鏝}ҽ/ɪMr-Fcz2׽}=]4jGTFH;d<պ9ŴRF8g(sO4:?XW*:_ *-> gjN\m='bf|[PH:dTl8e~n[-p"T]UpK;qn( < ,eoq> k!Z!f?,U;wz}"Q,(vɕFq>hzwI [bW+FVLdM &*D .[}87[imtȩ,xh['M9@Eqm⤞ ӱ ?A0p؜Z->ctkLRF 0,;~e!bXr!z7KEmM332ɴGz=+KmP9cE8 1=P18@Aj~t0%VEyVT$п-kH b +XV@IY/ԣ[o9HU"BGb>cP+ 6EG8-uRl[=oaWGkgQ+%KRcxՂ*E sy?@Ef՚F)<lD~%)-$P\?${z`@`YCcxzѡX:qgg˛kU$X>8- MK}A;f_a[fJe-܌jZ,&5;P(cAKFQAAuD3_ 3_ WsъuJ?LG3^5L7BTc5eRVHKW{KkK'*OW=Zv$S̫e<lژ=l@v0k"?'s&K%B/n1Ogu{g6(7΋4xR!" F璤F22K$E-lc28+tu亄pfE v<)m+`n'>C3$J"yA :u`lo@C!' !}dyMӮk䷱+0W{+K^i`|zUPu5̪w#;n8 z[=x Sx gZ[v]CZjӲZABp0=(1THx_"S#G}4]+y.R(W>DIvvE&%&YW <`w$*h>iPJ%*#*oJZ&mM)r?QP-˟jcȠ1`Y4 NXF)>$F`A҂?V-{-naFA#5eJ{\mr?*hu_eomLM2lʌ)L4 vqx9*0 >ƚ&d >ml K9|F\OGCnŠ"( Z[j Z[,<[\cY?ۙtid29!9g0YeΚ۪&yݜSrϬVjZIin78U_y5_%]%vFy#Ƿ^`4Bj>A$FW_,2CG2?n8a#}KPt͎pj`N>$csH=F;7>thZBdrެJ;zhA k!>zNrO˵K׃ZRӯucTwfH= +CRTz 4$o'4:tbtWx |ڃrK$m>d8MUpO,ua__aӭm41ݟAۏzgZ%ѯ$r401]jԳHGqi^&bl0`;dRكY@V`7cyػ}OowsgZqpC 3ή ƒ6RfW^:`u'43Fx`o@Tq@P@XQ3Ƀwo\[x"&vlg#Aݏ'P3u..7V[/ܿ* +ݚ1P Su-֝ʐhvDe昁\g gGQ,۵-(N_5T'ymqPc}[]SbZcx`r0X 58G{$T{tφjpF9UѧƋg=՝bmuk='p#`=Pe=A0.H#*!6>_ϧHUn0F#>ރHkTxyGGZ8Z.< #F5x@}܋O˟A-/ ńK0#kF}8?j UjgZ Tho iNj.%rqW.zc>A⦩ Gs@?h-޷r̚lEn\콎XRGkI%RE u# 2i6#FI@d05{o 7+4 Kn%)Jgx9CXi"cnLcjy-NUO.äAܱ9'8ɪ-KBxnHp#[t1^: @dU=k&iœ1A~U#PX6:Y1BIV=~=S㶸#Zc9zu{hB/$zΥQjNuD:.rnjՂcD[k%幝qXTӚu{kbKxB'ēT X֮/mKI؀HΧԓAu 2;x2N0Cφ iOfHi}{B[-[msRK.uUȅERhl9TvKa6$B "c>#4:{c.qܞV'Z=Q;A{U3su֚r;]&]$sD^) BNA$8PHt]*-e%uz\uM V6CBSi@;Ճ}_?ZtشjOp}(~Tѡl1-.dAxA)mpor0€uNC0lE,X3h&c`޼{PVTtWD'PTՃ$zr^+8QiW9C8Fl\ #*JTk!.c,B{hQ> 4[.sx8BZT9\vOTBI18`Ѧ/V:[b_w^G-&DfJǷJ0Mvei|>&ct'8V}v_ԘY\aAo..2A'Fhѱf±Λca?栖ӺWHH[R Æ{u[t 5̐<c w@\]]E{5@ӏюW GQz WTԚN۠"K2w('h/~kk:kt4 raA,N0A(+]K=;=z@ )-<*y#[7;hWU^w$LT(Fe]VܜeV_Nʂ>\_[F@.3wJu~rJ|Ŗ{igTMblF\0I$3Ko$ʲ7 ݃d ݬ7d,8cmo` 7)R}ssyh2ӎ0&]]yF{ce+hY]B.]F͢V*v1lxv, OZWP\Xp]t+z[fr`--$#JHu(ǧMas4sZ!B1=P_ 8 \P.g]EM7[lz@ Γucjj'OJNo:R+J+$ȤH;c8zI my, ]7G?CuņDVZݤ·xN9ck2}AvkĎLEok ώK8)|N(9X&<~ǗdR6PhIQ}}(WW\[iQ]w(wdާs珝1+ֵR=Goރ ?K,'{(G/ՅX%:j@b(:Ff1j|$fϹ9Q_t{^n5 .qvI7Ѻi k)DJPdck1%I?QѼ2|lI8 /NWp[lP{sRZzm vH[ҭ$H3=ꖉta[_.wy&mfPhGr>*둓*NS@,+g$G΁18y' hRkvn觅?@vx7H;T?nP/s7c& PzV]IBہSYEonbI[req=4g^[7OX- JW=Z uSteyWvKԴ ;rXn?*7duJʑPh_ a/iXд{7ޖnNj[f YM19'*Z4W7y]fy~@YZ;0|&ѓoԤǽ#09ۃ8Ak*أ^9';ՐCkoi ,Kq#`,vybN3}I>e%*kZ>Vm`Ϙ1 I a>A09g{zgPAe\)'s# -x40 ZO.3Fj,VKERTj`h$ lPGʖe᷒JZ4a$c?\Qhsi< $b-ɁvH`/θ0q'{٨5$ r2;znc1G*xP4LhO 7M[W鋙mMf gΗ?MKn/%˂rNyVP?Q4ڏ+mj 9~IcXr9>U6oR,nk$zg]Z-LV@6Y#~2){A4;f q=MJi]=kg˩KNaNJcjJ Qᛖoz5eVM{Pbuw[iŽmcxwڮ 5R7MwE%!€`=j $020@UϠ|E׵۝F.`K.4~NJg d:.S&!!vvez2cPfi[$(#ːhd`hAmb@,=hFr#tC ދ}\(5|&ֶ*)SGzmd$6I>Ps)HA p<@qȄ>@houe2b;~EcPIL  uwlf4$4=]kz|v_%d|(ed}u,į.O>_GIKlIed= \ $m>7 ]4x I'J`h]_k-$p̛wʪ;AU#HܸFTDT{89/kSk]5cSĝPq ƷtNrBmDŽŕd E̽O˫BV8,F k' /֯<"8ǩ0dRit)r#ɑ(09=5j7z#Y~^C_8$S[`e8;Pw9WT>T} JiɎ(BayS8=l)$pVtqwd@X?&`f"I->Rhkyhd: d3R/i<-nxnmFi)_W e0FӻcɫOEbΣo:Ds2Ƙľ3zU4aLM*i\0?>8l@{^kdb ll7ܞkBj/ kQm v2/ǏlfߣZ]`;lLjv+3(1IK#sh%@4x]s@ ;>T&wS#=))|b&yFآ>18\sڋY Gܮ=>pO|PXmd1aN$a@0h'tީxDc.^=(4^7P3p0=v5iMuYomZ# Yݎ A'/Mm9YX5֕Ӷ&} [ncwzx+&W0y9=Xu%M{{mfҸR_RrOAkם/רX/{KyivRw悰jU^ wA$hlB>q(ř%'q<}C }@mA;#9bpx[:23EUs*Ah 6q@S4ٍ2*>po *[ J4:Q ߿Ή es?DB]FsseXc;w`{f Gd9$~`:N cYs9pL]W! PgϿژ/|t4JHGb+z-#\[@fA,o^1`5ތԣeb75ֳFn:Ey"Iku-5fϕW#qZCM"u2]kOo*28 \_Sw,ĉ$1'V\ g`H|;SB+,@'8 \O=@(w?JOFP-ʌ}j? s@pF{˜h'Kڤ@vRIGl@&H#4h g@phM<{ $g2ۈE1P`9P&2yh #H=@[ yPn!@"8wPߜo(y "=G&cF 4rc@``ǁP$ ׵qC.]NodNH{P;N9X3 #0^2 LZ+ {hq(w1总ݻ1(7df$<%!%NO!榀۞x)F=tJl8WDZ7+yN9 $$ G hQst9L#zP@o6(7s;(~S@H ##<WnzCw'(p9T`ځPPKaF settings.xmlZs8~"wBkzIRZ \߄`5#lȥ`z[OL,iW߷+2'/4Gy㝟y'  xng3@3 Ach>R7/ULsݔ,4AeͷRp|E$z}X.>E57z6oU!" LC=;Yoi.㷮 7[ۜ?ۭxaj5hk|_`mF*.׺J8\jfHY9O<4Qv<*EH{#\ N)&Q)' 1}gLbԸ a ᮭ+[CiVYnmUEl}x{j>PydRNLhovP]Fc08~ fr8g+LMEl^K?/+\Y:ڥx#Mc>oQe'!NT1C.J.oaS1UNW?@"JCPX'ŒLq/{? L L',;^ːNnF`؆[2',a ‡4rhBP&}W*2O;Vt0 0 o6|SULhS"AK2`B)-:To5`m%SGcE~U%n?.v,P e4] iqbV0A~j1 ˱+ƶ*}iUޭbfd١`D(OP9GAV % Bh qoƆvd0p7Fi/.J|!pYN;L ts \ic9G4=27;%P8Y!'Y͉^"ݓ}]x+sWF .Y8+2q|)d~l;DPLqP%T?@% X" O30/`'Y!j81JW[6:C ĉpOkZ3d9 L0CW$bu2% X>0) v/ՂPt.pi=}J39Le`R6Vpc0iϪO|md6_>)buCngSxe(Wbk?BaL):&KLv@O=6"eiy LQMF?,4lMrp-Kakt0NUFdg&jSA`QrV ]ozȞ;}PK3gZU$+!PKaF styles.xml]͒)TrmrDRH+^ڵ^R)DB+=Yhy4)"Faw㧿FA o^ljO}c{8C O߾M߿ppmv ՒtAȈO,Cc|NQ^qHAqZ5(E;&T^mP*#=#GQR`2~"O-~۾oEUvFɸE0 to{Ⱦn#.421 ?31ek(b  cJ}O^YHYa8!wӬِ2{yb"@6l{ɻ̡=7S3 3=ޖSf_`nyI{y&+k :Npm`dRFLae`!Z!qm79md~&wY!muUf/vӕ"#:QqD5!upXccIG-B"?b-W L-I A1Bz;l*R4R#5(<0 -Ø0 q ˛:kP%iSE\0oӾ8%oӔU`5̜DuLހ.[m/"OJkb\:q.mf؊L#mz"!h0S4vd;&F9G4~Ax`1z\XʼnfI4P xAJnHA);M,Jе[V zEk?ByA]^#'<#_sCtX[[m| j$0d]u5;77\6=GmTD 2)N˖6.! yH` zz/DuVz=>_H"LbEciBzu,u^Ǚ,T6#2p;K0!Z!LYFHOUT=&~iFWQFLjs(GX5pĵ"P">&H+rPXI/Hv|acRn#)BYE'=l S{B;?=_KySТFRCynة"elOQmW\M,~G35|8コq Hŀ閽$sDVz1p;oM&"2pt((X֮Cy9G>Iyx)׃8\A p^[ UE7UŞkSgMߴWIXHvBN;yEuCxЕZc9o+ ;;CA&BL3;C\jM~JIgU#)Sd*]vI-݌ΦMD 9v0݃sF7AATĻ<$;Z1d5ʗ HC6j >B{^V2yhZУY.)Q yXI_c圝%3бF%FcaB1[H#/}9iEQ+kƒM.B ׀|@a:/)W}0y0ۚRfF(,4PUli4m tAiR4'\ӣӴ9Q( L\Sez.)5E35mݘ'B%iF8nJ@ɗCR4'\ӓӴ9/"iF87iKBMY<\RjfkoJգ>"jN8FUβRW_e|/& wϜa= wC$`\5u9_KkP.Wv8'L;L垣W"U 0Yw$W;\E 9aa*VG٠ޡP1"gkvgYqNJaeuw-\K w-(>.+""׏V@Jd,mge4xpfe\L+!p.C !C PaE[&rՐFk<(q u~9r:ՐFiuUH#\k:*2#X\"`M,"-ˡ\"pͮ1 \vm/hj F:2 ĸ+GF#{ySx{IDH-UK)L>C fݠ{9\L\[ {1:e{)kBʗ P~$B^qG^)tkrnEq#L~0A|7_2Wg3/h72p?W Mp5?WMpݟWMp pmX,Cib~w<7#Orͯ2DusE#b,',tk]cpXoV?^-0_ͤ*0"mC%Ll_g1 ڂ.[tTU-Ul_-8GCKJP 3s9hӵ5N`Q,< RReR`ށ,/A jWs6(gw L5fr{b;W~_?$ r#'6yqS6\5J\/C%.nLNO 0̜k  N"cA Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:21:10.37Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln0 "]Rq[F U^S:71.(aεP~iUhT4.5YS_Wl0\*ϰ[6{=/N*$v oR`pt֫βlFw=y@?5se5Ihzu ;sPKʾPFPKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF N||eThumbnails/thumbnail.pngPKaF\v content.xmlPKaFi??-U$Pictures/10000000000000FA000000FAD6A15225.jpgPKaF3gZU$+! .dsettings.xmlPKaFQ_mR istyles.xmlPKaFh Ixmanifest.rdfPKaFymeta.xmlPKaFʾPF}META-INF/manifest.xmlPK2pandoc-1.16.0.2~dfsg/tests/odt/odt/imageIndex.odt0000644000000000000000000010316112645626062020256 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF]6 Thumbnails/thumbnail.pngPNG  IHDRzAKIDATx tUktw6B!2 /E ʻKU_4" )?כ#.Z\%U&] ף!~LʔSdz 0x4. \kׯ&?U/^o vfKC=^H ~q/+kko]U6FKkxkɟ-'t`FW _~+#bZit?_Jm0*r-˳X,18mvhs8~( E%eYU%)H'eYwa 4M+s OTUeg,*C G&I6ZfHH/GQ}SRUMXmvP*`ݕ>MR2̦** H Mv9`Y> ޵lH oIFqxbX3s)8y0FMKJyW(]OfwAj=h0 |(#` 5A9s>˙3t}U-û0U|cuނW8Vx퍛6oU DT74T FV>M~^ o``2; K/fw0/KBQy%a0lG6 CϟqԩQf5U%8>_ !KBʏ:x <&avY QQeª}`ى[n ׯD T#39lRRRl޼yg.^ )آY؆!64/**ʌ59E ^{ΒYw˾}Bܡ`CmK_*+-}r$I4 XY/r;RzO4!e qqqe``>Eeo|BB^U i蹉5ТoAU07p㠈5k֌{bҾ}>DT|PB&1ͦ FH3 )bLibdYGxxuuզlvf40xA!ܳڵqِ :}yA$䥥{>טޔ`4.3߅WX ۳gOHCJ0~q}ͳ3bf n|?Yc߾}؊_|yvSG~ Q @8߿? ܹQCbzDE1PǨfGSYY !(gϞ+VLC@O'nwUu5uo6mŋ<>.WC;t2E JHvرnݺAF|AQg}ֻwo;Y֮];m4SIM#o0{xFF~wX7n7n| Z~_~uLԸ5kWϞ3oF g[ .̘|Jrʀ2b]tя}Fo:GZmzN<3PFFFDFFEEG~>iA}LE,PMcB.\8gΜ/:zG5s1s;>^nd3gfddu]L[,2)+kO|Վ8V lgƍ'O6|rT{1{|b|0D)?vS69!''X ts 4C! N;vĀO? 8:d։I ?ؒGȂ>9%--&~=dee;6,TJi=hÍè?L3v_\!]2E:z9X4K]gϜ9|ptdghFej堼P('$N5k6x?Yx,Eeed+\_lz)R9;b~C}jSLq_tc[hehI5jTrJԄxLo̓sN}ӧObѫnݺ_}wM鋌YQRRR7{)?œZ,d1ayϿ3e3(E? sg$ (*D}CV\U-SW^=ĊA|Gbh ;v< g8ݻvӫezO4!8j>^8:Z""",Yr˫ MMM-/+{̌;{}yhiɥ߻}aÇ*"Gll_]P AR[nݿjffg /;*p99z t%@eUz+j̸wд;gcbZԄ.--MOoo!9hР \6)СCZk!x4ӲKVٳz#訄O6,kaU.߷o7wB$Op#,DR~ܞ(Z x:w,+$ZVIImgzM־&|ٳ??ޡCE͙;X~yϞƕ^L|ʢ(]BSSӒSˡƄXcXXXr BTԌ~x؟֥K#G~snғOi(]; [n@}'|Yf/yx5-<"=rKhd.\++#KE @ Ґ{ݺ=sU{gႅO=D%KlV@=lk^jl4Q봴#Y4|0n C*iDG>îiڵkí[6otO>}ZyAxrbvv][YlqC`P?DJJ~]ZZdEoygYYV_ ` A]$4)?6+ES?da-#iӧBo&QS'?utr۶G޽; i/` c4 ^,*uhXf5!x$ z E}hY -qzEqBb,>Txf77)?ha*[m-)?g%xmC!@Ha]?\013~"r^O !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B@H !~ $@?B=2k IENDB`PKaF content.xml]͎)  $,?t/&Yfdr[-3KZRj甧ؽC+O")ɔ-Vw"X?| sAXrÑ3IBDη߼so/~-$y Xh'b{'3X̲`RZ3Szl=ӣՕuv񖕰r:VYBPM;Vy-`8EbMI̲tyj $BwS"1e+L930y`?!J41ebKHL59YޔHI@W~< !_=#f\H'~8BU g;HRG2 FVNb"&+0w$,e˓ ' w`iCf,'wfu&n) txx(os1+-!><%gy8Ix,@ b0JSZj9mF:\1XP^̶p*9P (yrd~?}ȗcU&p78cscxGƈq5T$FvY=7p }l*5g35uI^}-&b:1#&FB ru5kW=?8:Mb\98=!lq2Xt y}c?%Ej5{ױifDzU_j!RS9Z2( [Y)H(+N㻱< [r)o꼃nuR8b\W-B:&|ޞ^6NݢG33d. C嗓SlYαmt<FN)D\,aea;,5G+BLC9E`rάEY8OȐt%k)?PKBƢ4 y|PKaFi??-Pictures/10000000000000FA000000FAD6A15225.jpgJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((>!1"AQaq2#BR3br$C&S!1A ? pOj~7u .|TF~J#{4&'a\'8h6o%&)d?S5̗Wo53I!,za[ sEvܸ'@ )lq'?Nv@ 1vx,z#f}@!( QpOx0c% |fw 獣 cކ |Q\Qr ;v4J>7|3Bh'+.|g*IǮ}{Ph h% b@YP+a($恻)|*qڀG@W>Ss4ݴIbB $F[aFIb$EnW ZnֺѭeRIFV544}*/5jqȇ˾ZD1ʚ.mo!E]{odh=>Ux j ހd{UhVi Hb(nAh-3SMQlm+^/UgMYӮm@ξSn&=Qtv}iP22IQ\O}4IIH2W'.qDc6MBv~xQ| 2GAg٠BNN=(:RK'l}4 P)9ݨ-Ė$aD N3҉OzsBԺVOa%qbp}_{K]\]Ȋ l>ѭimj[@8TƎC)a"T{ \\Gn84{hXfq@rMz*@{h8 ʂ{/ أdA} ]Y ӯKNO#n|UtaZhg=f؊۞=EPvۃP7$|9'$ǭ `zQ*zsPpq7(&na^ֳ[4<81+ށWh2d*pO| z{{d'@|IA9JNP &>Sh, :Xm±WėRpcG:ގ1X+Is(k8~2p;A(8d4̀Kg2h1~mVR3Y/cSJAv>q){Uh(\jW^wt&O'('KU H6@(7)z wwh9WːH 'JnдvXkqC"Jv>e]1;ԃ[Hua.r!S^⠄랋5Ibxz>zgA"Wu H$A9#hy47͒wsbıe40PFGހF;Pϟ'>{@X EJ@rh+6!b] 'f-j 2)U@pۆsށsbhmdp㷶>tbR뵽F@v<Ο:g0pc1q}`z8hХyh,'èk Ë;uk8zOu.\^27an‚zM\ڀ6JIb䌒#sFu[WA w0X~.}#\F8E~ZBPFkH/'BBA 8EAϡ}3=+[B,zZFǖhnNMhGҀduHZD8]%ݽjc2Vl_lP*P,QO0($~c@A4C+0h86s@ buwF{P~T#q PFZ[pw ?0`?]M(C;m5`tW'Ƴ[x敝r1X6d{t's d([сR8,|AyC.,cC:vU[zQT[ .n@S l+6/m9$~X>%;t緐IG_NeCj2K*# Oo tcy)0@Ppڠ\'$vAhAX!sZ%o*Xla3!iXdQ)fcJLz^HeԓpR@>'?,J('G!\`\g@QK%-gPI( mka/n G?>>JM޼1EՃV ŕcʣGD:zP4MzM1Rd޴^g/8&CFQV}#> H(4 <>B'挜}?Zɾ+{nz_UkFd'@_$vPhH_T\ܽb˩ dUsRO-bG_XğQz;%7P7B bG<v;*2W+pEmZaM& PEuv<>$ Q#_|f ۩1aNs\L?HF($u3S(/-,⹷%w,r+ H8# XOJmN[NU6o!##Ci-0x19}=q@Pk,Ls$rm,Ү C[qsxvH!$L14{k1 C㲽K)к}^YOR;R}p!Dq)qք* O>Z,qsE%"m9⃣b@4J8G3'n8ݤ)D9Yf Be- EOb}A|:=֍ҤWeKö{zwEץGKҺMWH$]] u7XǤkG%ܒ'(Ocϯ;YMG͉ ނnTYMKdggk]jr JѬy bA߈yuv{8£n~mAkz+amaG7W;җαwۜE&r>>%)v49ϋkqӎ6sAREH@s(igyo( -6c MX<ǦhKX7=͚1F"ϥQazOU鮣#8ǵ(ӟLҺvWҒNcB ᱵvsY}3-k*M8?޵5hLT 6K +3Y( gXVՏdѨ Jc iv)8r{@B%=@F `?h' h6_FbdB@2Q^BH`+!" ۽` !TAͬtXSρ"G%\|J.ϫ;KK:.@k 3dzCW!Q- &P鏝}ҽ/ɪMr-Fcz2׽}=]4jGTFH;d<պ9ŴRF8g(sO4:?XW*:_ *-> gjN\m='bf|[PH:dTl8e~n[-p"T]UpK;qn( < ,eoq> k!Z!f?,U;wz}"Q,(vɕFq>hzwI [bW+FVLdM &*D .[}87[imtȩ,xh['M9@Eqm⤞ ӱ ?A0p؜Z->ctkLRF 0,;~e!bXr!z7KEmM332ɴGz=+KmP9cE8 1=P18@Aj~t0%VEyVT$п-kH b +XV@IY/ԣ[o9HU"BGb>cP+ 6EG8-uRl[=oaWGkgQ+%KRcxՂ*E sy?@Ef՚F)<lD~%)-$P\?${z`@`YCcxzѡX:qgg˛kU$X>8- MK}A;f_a[fJe-܌jZ,&5;P(cAKFQAAuD3_ 3_ WsъuJ?LG3^5L7BTc5eRVHKW{KkK'*OW=Zv$S̫e<lژ=l@v0k"?'s&K%B/n1Ogu{g6(7΋4xR!" F璤F22K$E-lc28+tu亄pfE v<)m+`n'>C3$J"yA :u`lo@C!' !}dyMӮk䷱+0W{+K^i`|zUPu5̪w#;n8 z[=x Sx gZ[v]CZjӲZABp0=(1THx_"S#G}4]+y.R(W>DIvvE&%&YW <`w$*h>iPJ%*#*oJZ&mM)r?QP-˟jcȠ1`Y4 NXF)>$F`A҂?V-{-naFA#5eJ{\mr?*hu_eomLM2lʌ)L4 vqx9*0 >ƚ&d >ml K9|F\OGCnŠ"( Z[j Z[,<[\cY?ۙtid29!9g0YeΚ۪&yݜSrϬVjZIin78U_y5_%]%vFy#Ƿ^`4Bj>A$FW_,2CG2?n8a#}KPt͎pj`N>$csH=F;7>thZBdrެJ;zhA k!>zNrO˵K׃ZRӯucTwfH= +CRTz 4$o'4:tbtWx |ڃrK$m>d8MUpO,ua__aӭm41ݟAۏzgZ%ѯ$r401]jԳHGqi^&bl0`;dRكY@V`7cyػ}OowsgZqpC 3ή ƒ6RfW^:`u'43Fx`o@Tq@P@XQ3Ƀwo\[x"&vlg#Aݏ'P3u..7V[/ܿ* +ݚ1P Su-֝ʐhvDe昁\g gGQ,۵-(N_5T'ymqPc}[]SbZcx`r0X 58G{$T{tφjpF9UѧƋg=՝bmuk='p#`=Pe=A0.H#*!6>_ϧHUn0F#>ރHkTxyGGZ8Z.< #F5x@}܋O˟A-/ ńK0#kF}8?j UjgZ Tho iNj.%rqW.zc>A⦩ Gs@?h-޷r̚lEn\콎XRGkI%RE u# 2i6#FI@d05{o 7+4 Kn%)Jgx9CXi"cnLcjy-NUO.äAܱ9'8ɪ-KBxnHp#[t1^: @dU=k&iœ1A~U#PX6:Y1BIV=~=S㶸#Zc9zu{hB/$zΥQjNuD:.rnjՂcD[k%幝qXTӚu{kbKxB'ēT X֮/mKI؀HΧԓAu 2;x2N0Cφ iOfHi}{B[-[msRK.uUȅERhl9TvKa6$B "c>#4:{c.qܞV'Z=Q;A{U3su֚r;]&]$sD^) BNA$8PHt]*-e%uz\uM V6CBSi@;Ճ}_?ZtشjOp}(~Tѡl1-.dAxA)mpor0€uNC0lE,X3h&c`޼{PVTtWD'PTՃ$zr^+8QiW9C8Fl\ #*JTk!.c,B{hQ> 4[.sx8BZT9\vOTBI18`Ѧ/V:[b_w^G-&DfJǷJ0Mvei|>&ct'8V}v_ԘY\aAo..2A'Fhѱf±Λca?栖ӺWHH[R Æ{u[t 5̐<c w@\]]E{5@ӏюW GQz WTԚN۠"K2w('h/~kk:kt4 raA,N0A(+]K=;=z@ )-<*y#[7;hWU^w$LT(Fe]VܜeV_Nʂ>\_[F@.3wJu~rJ|Ŗ{igTMblF\0I$3Ko$ʲ7 ݃d ݬ7d,8cmo` 7)R}ssyh2ӎ0&]]yF{ce+hY]B.]F͢V*v1lxv, OZWP\Xp]t+z[fr`--$#JHu(ǧMas4sZ!B1=P_ 8 \P.g]EM7[lz@ Γucjj'OJNo:R+J+$ȤH;c8zI my, ]7G?CuņDVZݤ·xN9ck2}AvkĎLEok ώK8)|N(9X&<~ǗdR6PhIQ}}(WW\[iQ]w(wdާs珝1+ֵR=Goރ ?K,'{(G/ՅX%:j@b(:Ff1j|$fϹ9Q_t{^n5 .qvI7Ѻi k)DJPdck1%I?QѼ2|lI8 /NWp[lP{sRZzm vH[ҭ$H3=ꖉta[_.wy&mfPhGr>*둓*NS@,+g$G΁18y' hRkvn觅?@vx7H;T?nP/s7c& PzV]IBہSYEonbI[req=4g^[7OX- JW=Z uSteyWvKԴ ;rXn?*7duJʑPh_ a/iXд{7ޖnNj[f YM19'*Z4W7y]fy~@YZ;0|&ѓoԤǽ#09ۃ8Ak*أ^9';ՐCkoi ,Kq#`,vybN3}I>e%*kZ>Vm`Ϙ1 I a>A09g{zgPAe\)'s# -x40 ZO.3Fj,VKERTj`h$ lPGʖe᷒JZ4a$c?\Qhsi< $b-ɁvH`/θ0q'{٨5$ r2;znc1G*xP4LhO 7M[W鋙mMf gΗ?MKn/%˂rNyVP?Q4ڏ+mj 9~IcXr9>U6oR,nk$zg]Z-LV@6Y#~2){A4;f q=MJi]=kg˩KNaNJcjJ Qᛖoz5eVM{Pbuw[iŽmcxwڮ 5R7MwE%!€`=j $020@UϠ|E׵۝F.`K.4~NJg d:.S&!!vvez2cPfi[$(#ːhd`hAmb@,=hFr#tC ދ}\(5|&ֶ*)SGzmd$6I>Ps)HA p<@qȄ>@houe2b;~EcPIL  uwlf4$4=]kz|v_%d|(ed}u,į.O>_GIKlIed= \ $m>7 ]4x I'J`h]_k-$p̛wʪ;AU#HܸFTDT{89/kSk]5cSĝPq ƷtNrBmDŽŕd E̽O˫BV8,F k' /֯<"8ǩ0dRit)r#ɑ(09=5j7z#Y~^C_8$S[`e8;Pw9WT>T} JiɎ(BayS8=l)$pVtqwd@X?&`f"I->Rhkyhd: d3R/i<-nxnmFi)_W e0FӻcɫOEbΣo:Ds2Ƙľ3zU4aLM*i\0?>8l@{^kdb ll7ܞkBj/ kQm v2/ǏlfߣZ]`;lLjv+3(1IK#sh%@4x]s@ ;>T&wS#=))|b&yFآ>18\sڋY Gܮ=>pO|PXmd1aN$a@0h'tީxDc.^=(4^7P3p0=v5iMuYomZ# Yݎ A'/Mm9YX5֕Ӷ&} [ncwzx+&W0y9=Xu%M{{mfҸR_RrOAkם/רX/{KyivRw悰jU^ wA$hlB>q(ř%'q<}C }@mA;#9bpx[:23EUs*Ah 6q@S4ٍ2*>po *[ J4:Q ߿Ή es?DB]FsseXc;w`{f Gd9$~`:N cYs9pL]W! PgϿژ/|t4JHGb+z-#\[@fA,o^1`5ތԣeb75ֳFn:Ey"Iku-5fϕW#qZCM"u2]kOo*28 \_Sw,ĉ$1'V\ g`H|;SB+,@'8 \O=@(w?JOFP-ʌ}j? s@pF{˜h'Kڤ@vRIGl@&H#4h g@phM<{ $g2ۈE1P`9P&2yh #H=@[ yPn!@"8wPߜo(y "=G&cF 4rc@``ǁP$ ׵qC.]NodNH{P;N9X3 #0^2 LZ+ {hq(w1总ݻ1(7df$<%!%NO!榀۞x)F=tJl8WDZ7+yN9 $$ G hQst9L#zP@o6(7s;(~S@H ##<WnzCw'(p9T`ځPPKaF settings.xmlZs8~"wM0 CJKC$뛰Fz$9+r)뉉%Jv\}Y(w20V>{_Z]lh1HS` Mg\f>|J6iŠ&hbrvv3SY .ȘY.ŇsTEѨf*V"* djwԽ㷮 7[ۜ?ۭ]{aj5hkiM06#fkկڇ)[;MMTߧ|n^oԎ8B/DLAo)" `kq:zpC'}Ƅ>X|%fIڪ85ju{VQ^ />/?/uO|\$ZvJgBG{R$m43'bλv*{H®G[T7 DSh!U!K;RfؔicLU|9URId _C'C؄Q&eH'7#lCy-F }0}OA94PN(F+Xh+ :L| =6|SULhS"AK2`B)-:o5`m%SGcE~U%n?.nv,Pe4] i¯qbV0A~j! ˱+ƶ*}iUލbfd١`D(OP9GAvZA3K@uƅPl'(j ߌ SDaVo^].B"v @8tr^*^izenv"KpOCND'\V<$\p,D)Vď |8ef}iRڡvd!'XQil\K ~¯K 4:$61̳EXRg`1 _NhBpbllt =$K֤ f!$#s`HeHKA|a"HS_sj߽zW BZкE-(k0IĖ[mt=+<%r|`ChU 1cMᕡ\'vcMTչ0QVvXbRL遴.-L[4d{^`">* 4Ԇe`so␃lyƼ&Jㄎo_eK@ Zj@)I;f6h%᫋-89Pmڊ1Ȏ@]EPyϯOֿPK+#T$+!PKaF styles.xml]ݲ6ߧHV6g$LS53Hr'+`YI%Yl$cÁ Hr[-dqa7z;t`io6\,\?:8H$z8p<2S?%n 'F8B"#mڊSfQ:ś0Ȣy)(hVNEEVxx"ЏPzϧ*Mp^֣A/l6Rjaأ\=&%Cc` 9SԶWRsV JE âD9(![^7c7űn7ȳ Lig CL9wL8 Ȣ1 Zv/BqН\ ]{vӬِ2{)f[>1/Bƚm/-s&~ByFY|rJ,3t?=IqO5cWRGI M[.Tvd_]$$/W >@鏙: o !K:W%mb>p+և*: yלwih}ΛE1LYk((#1Y!'\kpSm#ۗ5b A@$B6qm9md~&wYai[\_c+-KCPD1P !cE^Bڍy,:l!2`O}/y>d% Hq00 QB H킝{g4YA A6n^K4Rha~f2>CK(rfA9>N!i8]g $ujdPk9ˊSV8Eu,H>KuV7lV8@59nefB0J7~ArC2 @Դ[&2KW9j1G#;Nvadr+ZsFb#7b۝eɪro0yyX4m1qbg0gx(J۰ZPRs?14\tEe5,6lp!N_97p<$=қv'FꠠH9hUE_wS}:[Yb>aE$M`yd0s1  [mo:|QZ)ƥҊ:x./mfp䡭PO$6z!23HmGcl;D/ "F]/ќ8UeRJ;ʈ,]`{6TvaUhM,7/KkD0g䁋8!rqkqUl!T=&~iFW'u"٬⊙zZѥYVFRp|ӊ8I唤w|=e{Kd>jRQnj>]{A-H)t(c9hXY_$|acR֚n#)BE$/zbFc' 3Ɠv~-Sσ5EMj!bd޺7R=*r$_k QZ"HlW*|yvF{elOq:ԔFSrJVRvO~'kG\p6i6&{̀݌zPYZ镞otgNyl6c ,fI蹎e:!=ϓs)wN_ꉯ3[\Awĥ|14ثR%fL܋NgMߴWIܧ@47z-ѥ{1=/7k(pO/9)/ƒM k{e&`)/GLLE*ԬJ=K T>[jڼ)MxjZT4 '4mN.5=y|cj̱B%hF8d2Uh4'Mi#y8)Ms5=1MSy8)5M35=1M[iZ leݘ'3KJMьprMMz4x(R*cT]%u,+| U7bmB1_}Jܓlp7Fb ZxƯ8W] hi @:e*ݠ2 SUƹj|X}tÆx;L"W;\BTs4T@QA5Cšt 5>g+ݵr-5- LN\?)ĞaR5ӗ p1΄45Z %\< rfɂ4B5ZFs,: 0Ά4e]-\Dqcח.8 ijzXJ֯2EgE\-\T9ikz`0)ђ_ikvpa=@K1r΍45^-`ȒgGFCyh_zdtOv# g=D*w)GtHլTsCuOAdȵŪ'C^,#XֹBJ{"te;, {"wk|niIG&7(wÜ } ~6V{sAnh|\',7 ?) c?. pmX,Cib~w<7#NrW :Qt.r`DW ђe.3e(fSEL K#[>1TyR-9m5@'MxNZ^ُۂs40ĩē\63)5U@2}NM:{(l@;wn `4\UUd#H yc.-ם)vSʨ޻r"w^V{Dh+27GvFMdE?րy= UE%|8@2rͅyebLIØu 9aVR"T L7pvr*:(ai&@`HPnPt ڏ俁_-72ެ]>Z:/cʝPѦ yF`H02ׅ>ЍiوxZFNAsIZ' ,IXy "zK'+Z /kő 'nO!*'O)G?-Yi58Uzɋy@PKƁ PKaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:21:41.45Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln0 "]Rq[F U^S:71.(aεP~iUhT4.5YS_Wl0\*ϰ[6{=/N*$v oR`pt֫βlFw=y@?5se5Ihzu ;sPKʾPFPKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF]6 eThumbnails/thumbnail.pngPKaFBƢ4 y| content.xmlPKaFi??-&Pictures/10000000000000FA000000FAD6A15225.jpgPKaF+#T$+! efsettings.xmlPKaFƁ  kstyles.xmlPKaFh zmanifest.rdfPKaFM{{meta.xmlPKaFʾPFMETA-INF/manifest.xmlPKpandoc-1.16.0.2~dfsg/tests/odt/odt/externalLink.odt0000644000000000000000000002475712645626062020661 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF|e))Thumbnails/thumbnail.pngPNG  IHDRzAIDATxjP {ѓ;Yw~#7j9?®7G: x}AE}PAE}PAE}PAE}P1Mu6My~[ec$;Ȳ vU_6{?;؎o.wt{ËMu7+> .z%E>V$ˉHIG#E$y/;y I8[X#gh 0Oza}a _>fqx39׵ k+؜#I䜡yyY5[t{l>lO|ѲzϱqhWYBP+^y/ D7=%ׅpM.ҍk{]4=S:m#Tu|6?$ XT n]9#%6HT΍įw}mJ\7P>lOB Vsγ*@ᎇésֻGwDX̽G=D,<( ؍\J,U dՙK6a2B t reYU08& hrWZ~) g҇gd?|<.(K\iJ2d:xbALU`y[b;Uz褕nV^!>z7x8 bkDGv$ X?nӂ&rO4 d)HAǚטA a . 2-EH"; ]_o=-brC|B., #d GMFa1켷 š:HKbn, Ƣb"ge>6S)KLvW`ݕXxrxE;~5?؁gWZʕ6oכ{) Y"51?ʹHuC f3BhR t*{ױه)Fsa_ٴs& pc"\m8m6J-,P 뚩wQLo/r afC e=t&&@bM2#)Ccel,a,Y].ڥ10g΂;i=.GcX}&zI]3F6q.Fua966uӚ%ui y73%h Es>^R\q#;s&5$a 9hUWF#0A7`FJ,F#h-Z h-b4V1A[tE#hb4V1A+`FB,F#h)Z hm`ZR#16#l}3crZr_zk,ƕ"堷j*zq6">PW[\ +a)= tڸtj\ H-5ڸ4j\ P-WMcf~XF.t?:eN2G`C-Z]?Όae2Gp3)\F,t?EE[-bCM: >!Eo#!IB3J2HHMEKV7h̭T󿽳&ߘ6vuVTln#Wy o3bV piV+x}bxh}r덏N <ڻzQ>p1 :s[ ZFPLGO.4aϘG,p][l Zg^UmEײq\Vl|:!@deh`dR[t(zk@m6L(E]T/0J#\X˘i0@̅_ĬaPC2sc+*}iUލbfd١`D(OP9Ǟ0g*BCYnS`fln'8L# :}c&(tdA?˕6zTJӓ.s\B E]~ru؜%=څ2G}!i #`!Jr ~^)7H ?̗Mƶ$bEer].) ,)X0a\xb}Hƀ|q ; VÉQڲс,%N NxZ֚&Wp@$[_`9"˗!,I O}ͩ ~R]-5kIw@ӷ9T&uj[n 7 ӝ~\זY@fe@ ᓢ+VY7ƌ}6WreVC 9)6PUDYaIh0F b_0mѐ2x<((RK:1!w$yM >˖@B S;f6h%᫋-89Pmڊ1Ȏ@]EPyЯWPK'),!PKaF styles.xml]ݒSP>T€ `MR٪=8k,ثk6 [EY0.ΒշwSt|WR8nlTecx^jLP7>#9#O]td: DO/}Q=S5& !PP6\{8})%vE[XUF>k&~n*c:ifgi1E cJׁ>(U.cSpF5ptǛ֟z릴V{0/, bnh鴟(\2z9e;A1 s(TH#j>ǾBGI)\>TX}h?^ԅ~F K9=¤kCJŊ E$ꇸKR>e9Z?8?veA!-c|fCĩy@IEHHLѣ1Y!lL8}2Vwb D$B.qsEb ՞2?񹇬4zЙ+ylte3l8N&RB=L8+ ac`ӑ Еm d=L['#) @at f)s$iA#(em}q&da;q +fIudP(4点rAAPxXPW~UgA(͹hMQH`.Z4y`+67( 4 i8,a`)|ːvYӱhwY Jq+d}N羲wafT].k& ,YUXN ?nÏsP~k68M:1T:JP~82S銞hXW!Ş]xJOM'V4%S= ~͉S *F1,1`&رl>'iJ*{-;'1ċ %ǖi7b\iT"r|3G|EeX$z2_ m= KQUwT'&V9}@l$b2҅U&Ej`;ap.K@A$5Q;ۃcKT;lګn?.^4VnB([sTzk9󊇪&~\kV .܀K;KR3 :i>qOпey\㡜W)NuKA*ܫWa>:b%f9W~~r򧟪nWOfidWVaEo:Tr~lŹ)`; (_e{Y";9є(mQg[l*Uyu\AcnQC~bC6OZCOJhuyI$YkVxƢN@f}R[au 93[yQӓAj>+?Lɏ;^Hig夁gCK۝ZJK˔=K -=꘥bg~v3;ffk\R*愳[阥'%biN8:ei?ӡLٳ ғYڞӡLXni,iPsEz13Of:;9얶2?L3 b}lHAS/+ !kzGS(S.Օ5(IXpJYodz[R*GXNh @Ze*6. SyhU֥j|}Łt;L&uTٗ;\FTK4T@1A5C%Ö;@!r1fwJZFE w8VNr^)$r۲},b,rwR"#d(0Uxpfe \\+!pn.K \TAj,T=V/ŧG.rՐZkܟhXspp=mtM"W]krpMS \vK\u]͂eEKrH-\ۅk ZP\wm/xM#G]- bB #cѽ<8x'8.0=\R@5kP!eҳ7CXb˹4XRH ִ%XKu//]Y`^y-_{kɥA̯FI}oX+W Lm^> W_@ptA N:mR ncNpt(\gαcs5~ˡ4@st郻@^'W,u*wЅM0\GG s8翰 c؅BOߛFF%Nd6@ $7t :YS0suڼb5@'MxNՒՏn9[_)D敔Lu;P-\m^I" hNG!*DQM($)NL >^A0wod8v+, o1>Cpf8tNrnQu3[ur%G4?tcfȗ3m黦 =w$K}uYC*w0J~) {mR85#ˌYa05ILP5 "F%_go'Fb.Na!Pm1iىٜc9 Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:55:51.85Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF|e))eThumbnails/thumbnail.pngPKaF+7v content.xmlPKaF'),! settings.xmlPKaF<3 e 9styles.xmlPKaFh manifest.rdfPKaFy=_meta.xmlPKaFjҠ">$META-INF/manifest.xmlPKpi%pandoc-1.16.0.2~dfsg/tests/odt/odt/citation.odt0000644000000000000000000002513212645626062020017 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF.fThumbnails/thumbnail.pngPNG  IHDRzAIDATxъ0l v9z><%!J!mǾ??>(胢>(胢>(胢>(>mk:Xuej]<1ϵ{ 1e~z׳>?x_(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(,c!!2IENDB`PKaF content.xmln6} Cz$vY(i łhXJTE*o}C}>IȉHIW+E$8C7?`GG78kcb6޽޼0^_~m+9}a:>_ֵ!NG+XkU^%c;\imĸ-Au'hSĸ(,m!E-|2Ⱥ ADq6B+ێ؊g wd\IkQH+ױ1r0nOzXIbH~mpX;5H{TͮvE*RQX6S3>ޙ[W01sBX$UNHTEXtP 4 w:mu]4C"pX0w4wu3,i`77L—S[5ܭ7{֘zFK(4>7MHJm)6s}!,!⫐ u_p`A+?2!.]#$/P%\`91+UG`l n$ַ|4Hyx12yap(-ScƘA='vW7(Ň@NNlz#?x<:c6̫{>Ȃ;,4DI\̟,䦹(io.q8=l8ĭ0+Ϣr穰pepZOM>ğ}/&[獲UdDCwJRA·nVi"'B8/N O|zȘE _hMD)#(P@ub~:~mmlfM̥50!nd3bҔK!ncsk>o^2q#[Xf\Rְ\ q瓆%si rٙ5k%h d<}Z^4\K\G#j@kĢ5NA'h`FA,Z#(t: Fk]`5: FkĢ5΂Ah`FQ,Z#$tK_4yF~FcbF t3yݒڰ7寖[­+ GXe`a'4U' W*CcXe*@a}12aZV$*S$ qպzVz1XXkqiպV1XZBZx#\Z, ?zK¥^Gpi_iC/?zK=Go`iW+XZ.VTiÆB9-TYp (:,KB҂AUF\H&HNY^^;V3VҸP(tk]nȆ Q?P#/DDsC8oic$_c93.k꽑.G19D$2-#U IPKʞ|vPKaF settings.xmlZ]s:}"w ioa:H2o^Y+L/1艉%JqήX=w杁 0r~OO?8!i T4CS-_yMdd1 ,k̔_˧+/2&iV;TyѨf*Z"( dE5;[oi^kc[kOm֮֟{oQF^N8B/DLAo)" `kB9=Vp!>cB,eKwmU\J :pk(\e㸤}'I|*iI=uJgBG{RQh 2<$mY8"v6omħ],0(i@U >F}k*@x8R [*EfM;T;c\(5AM`iKr09ĽqD@a8dMe8a fځm?|QCe5 DxSPM4TJѤJEiʂ1aFx{ TUGn[&S&T=H璌66P r^Pc06{[k~hs (tDi,Q&`A $\%Nu9O '!3{9Ajl'Ye9]+hMF٘ @)rTl9#TWa\ rDEmAᛱaj8a2~e4Eq },&:D]ףWtj(,ӐD/>.9Ih, Qc _N^CZqFfhvh?,$+*--SrI!PeIB$&yC 5 7VNՖd)qq"Ӛ|5: $zt X] )` 6?O:L`kMPwBojA^KZȴ%}͙20SrM1WgO|md6_>*buCngSxa(Wjk‘ØbSUu.LTӟz mD@ , -ϣ"_,4lMrp-˜D`V!aJ{LԦ ݕ$|q7 _[Q?oOt==Twӡ PKca](+!PKaF styles.xml]ݲSPlMra dl%leff/f*e*ϒG˓%Y0XbPH꯻%?nVA S=pO֤?9OlJmɣ >u8|(!cV8yLGP =܏+•5̪t7iSaƻ#f{̪uSa 6U紩& 9|Aa%$b@"Y+C&)^3n{yGQx ]H1J3qJ`72khh ~w;l}Lȧk :Npjmvo୴m`B$B,֒ ՝2?yyjc<$]Zbc4GA8BbMN>;`EAD>Yl:|!VO َ,ݲ :9H9FHx4J]q&K0!d=Pؒqq FQp -L4wߋ77|B2KӂERs.+oKI{M7uI: ҇Ҝ;$ wk LFK"V|l1 +R EY襙Pf vHHO ,C #]e*k)=u%G;y߅i֍羪wa3."6=(K#bCϔ`mıqFc g(J۱ushoGVJ8]s C _!s/@IÃ)i_?006`PUBï[ݰe!ŀ"]3k$nc|EmCD)eZE-"ɗ>sWt$h Qbham<ݏd5n0}Gwb4{ķDZ^_5=QqʤX8dAnnƤ`[v84YhK1Ik*M;"OZO|b[q^bʺhmK8Rn?}S 3zS |s($Y/[A`/ɭ}e#@$vURT;lګm߃.Q4nB[suk9&~hVk(d.@H;KR2Zk㗊qŏП(MC:]7*vW,#܌WV/:e'Kk4Ϯ5ieJۜg ]<0֩ľqyRٻSc)&@t?s$vgkXԇ¶YQYٕxMJf[x iX%W'Ǣ^-؄7Ϟ #MY<46RS_E4.:G^GGu*nP-Kej^&D< J2 wF7&YInt+|GVهC{+;JʇmAON|Ђf@({S[au9 ƾ5ۊCf]^\jPR*ˊ vN&{6{Svz󠵴Jٱ$҃;6 TOnፙy v.)C -=1KKJ҂prK?ܔݞ=/*eҒprKoD䖞ܘG4*v%IOo%bhA8L=CzRvL- ǘzڟ:Pz1<^*.NWզӪPS-%UzI6SsjA-s hCo0.WmsNw3GrU;\T-,4Tn[G{zUl4A58'L;Ly`(.p6&w$TÞmJ5U2,Vظc%w -ܶ,bx,.\?Z){gd)^S}.!rѕZW cWA K P AaQ@\t55 qr9TCjzZz#ctMlmtI5Z&.7Ё%..R jr ҿ*%..R z~€!Jˮqo0WG=ǀyPydp/)v <{IDZjZH^)jznrs7CXb+5j `K!%X`M ֽRt[l {!kxneqK^Q6_4,_2K~k~Q^'B]\O:52~8҃5:8te&4_L4*"u@ CyƀT k fNl@W,n бkS#FWy_4)E.敔[t41@ yM[Gl@[wn ao0nRU5T pNY/+h^܎IIͽ*IvkFKD#N,QF2tGq1}~(uD?@~FfWiouD1J5)_q4WR@ q9IL8Qw@R@44FB/+#x-Ov$% ;fNS* `N~e~;퍍3̻ D4F$UÙ߆j Uw;r47K[+)®v)Iuvv&e'uka期Ů ku,g r Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:04:58.76Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF.feThumbnails/thumbnail.pngPKaFʞ|v content.xmlPKaFca](+! settings.xmlPKaF? styles.xmlPKaFh manifest.rdfPKaF'DN meta.xmlPKaFjҠ">o$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/referenceToListItem.odt0000644000000000000000000002514712645626062022127 0ustar rootrootPKrF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKrFConfigurations2/floater/PKrF'Configurations2/accelerator/current.xmlPKPKrFConfigurations2/images/Bitmaps/PKrFConfigurations2/progressbar/PKrFConfigurations2/menubar/PKrFConfigurations2/popupmenu/PKrFConfigurations2/statusbar/PKrFConfigurations2/toolbar/PKrFConfigurations2/toolpanel/PKrFmJ33Thumbnails/thumbnail.pngPNG  IHDRzAIDATxѪ@@тA k=Ą ] |04}PAE}PAE}PAE}PAEq>o_nO]bOs[^'nGtX֋<}n>]_TL'{yδ6cX뽕DN8csΈ{6'鄝9U>ַb~C|>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(K8:hIENDB`PKrF content.xmlZn6) M%i6hv Zl"t){=$,;-%.N G΄WB{\- =y'fa|95>,bA@<< q$ME~@;s-];D#b1ޜ8ʴEnoú(U'qmjtQ1Mu Yy{zyYX496 L4/|QZ_iۛ{oCt`DBH8f\ 7L`cʐVw%͠Pg`чg>%f$ǦO1DQUf( iP,u-wk,.Za yGJ7|U ED">g> l9\3Zb `{DɚIQ] pĞq5',l""&҃@W~#>ݣH>EC@A1ߖ`|B-1tW۽Udn 7<}Aƈ G62"huSƿ2Б0i PDBC2a! h b8Hu2'v0JrTgq?i 0`X>]fF$D|C"\C-\⾚?~Ǵhֈ?yĸh،T5Z]lc˙4v)vA@U\Tcdj{ >9t4 lrYZ'4lQZ24&lQ1]eD1Ye*St֧*^tg*it'*tt_/v=TfsS}}: >1E&IJ"lՃ( ɑJP~s>fwcf~}%܄)>9u 9h4LfuGw6-Wa5cP\@4j+P!V+wrg'#w ;%q*7'p7&">*B5r1&saf~qb'Ad׀frxޛq3ry91KJ,:XZm]ܮβ}t{PK7;/PKrF settings.xmlr8}"V#fB% &$W&y0Nd+1oˆL#Z=X%-CzF 8rg  o\4pIn%Q @Lg}łU80YQnGU>BWRbٛ9 MnTT$\|4%A$9''dI r>ΖRvŇo/=vE,o b'Xx, ˜\~#bHQ:.>y],)"JvD;dvR]l$̎$P" +æ) ph ly[1\RE*Y S WBG`^*"D[s0,p¸7*\uNJnH\돭PGEQi[@A[a0ރG QbuQ"G-@U#VY^P{tϛm4{K^tZagՏnP Y@?j_G>rZ TmiLg-PUd ~×*@Zηe w8S:e_ _Bn?7YSzA'7=Kj{j?n  ^0"ZXudml]Ʃrw5 lV5a>o(O<뇵XlIjUڵlh7/N9@U{TsF 6wwlߪV?M)b.Ÿqd&Ks>OوƧɹSRg:c>M'jaa' CjypXY IƓIz3iRp3 Ȉ_3yl)WN'8"<ܚJ ,fHkv(,k[LzVpM)%$8/b38J`&mӞ|LPj]e&HJux@Q;ހcO]@?oNRLc 1UZ,*( H-NS T%D {U{X^fuWղx ZGJKSҵ%8$aDeZƫ!OM(5 GF<󇦂 n㉍SYX!yAu{p6F1% {l"fݘ*69Y]|C)*46\p{*HLfL3O4L(MfmX}NL^di0gntj^0Z/%zjVS-AX hw}nWb0D?N~ Q.&c9\m[X,tN^wcӆKpY')eOowwPKr-L'PKrF styles.xml]ݒSP>T€ `MR٪=8k,ثk6 [EY0.ΒշwSt|WR8nlTecx^jLP7>#9#O]td: DO/}Q=S5& !PP6\{8})%vE[XUF>k&~n*c:ifgi1E cJׁ>(U.cSpF5ptǛ֟z릴V{0/, bnh鴟(\2z9e;A1 s(TH#j>ǾBGI)\>TX}h?^ԅ~F K9=¤kCJŊ E$ꇸKR>e9Z?8?veA!-c|fCĩy@IEHHLѣ1Y!lL8}2Vwb D$B.qsEb ՞2?񹇬4zЙ+ylte3l8N&RB=L8+ ac`ӑ Еm d=L['#) @at f)s$iA#(em}q&da;q +fIudP(4点rAAPxXPW~UgA(͹hMQH`.Z4y`+67( 4 i8,a`)|ːvYӱhwY Jq+d}N羲wafT].k& ,YUXN ?nÏsP~k68M:1T:JP~82S銞hXW!Ş]xJOM'V4%S= ~͉S *F1,1`&رl>'iJ*{-;'1ċ %ǖi7b\iT"r|3G|EeX$z2_ m= KQUwT'&V9}@l$b2҅U&Ej`;ap.K@A$5Q;ۃcKT;lګn?.^4VnB([sTzk9󊇪&~\kV .܀K;KR3 :i>qOпey\㡜W)NuKA*ܫWa>:b%f9W~~r򧟪nWOfidWVaEo:Tr~lŹ)`; (_e{Y";9є(mQg[l*Uyu\AcnQC~bC6OZCOJhuyI$YkVxƢN@f}R[au 93[yQӓAj>+?Lɏ;^Hig夁gCK۝ZJK˔=K -=꘥bg~v3;ffk\R*愳[阥'%biN8:ei?ӡLٳ ғYڞӡLXni,iPsEz13Of:;9얶2?L3 b}lHAS/+ !kzGS(S.Օ5(IXpJYodz[R*GXNh @Ze*6. SyhU֥j|}Łt;L&uTٗ;\FTK4T@1A5C%Ö;@!r1fwJZFE w8VNr^)$r۲},b,rwR"#d(0Uxpfe \\+!pn.K \TAj,T=V/ŧG.rՐZkܟhXspp=mtM"W]krpMS \vK\u]͂eEKrH-\ۅk ZP\wm/xM#G]- bB #cѽ<8x'8.0=\R@5kP!eҳ7CXb˹4XRH ִ%XKu//]Y`^y-_{kɥA̯FI}oX+W Lm^> W_@ptA N:mR ncNpt(\gαcs5~ˡ4@st郻@^'W,u*wЅM0\GG s8翰 c؅BOߛFF%Nd6@ $7t :YS0suڼb5@'MxNՒՏn9[_)D敔Lu;P-\m^I" hNG!*DQM($)NL >^A0wod8v+, o1>Cpf8tNrnQu3[ur%G4?tcfȗ3m黦 =w$K}uYC*w0J~) {mR85#ˌYa05ILP5 "F%_go'Fb.Na!Pm1iىٜc9 Martin Linnemann2015-03-01T17:26:12.312015-06-09T16:20:17.89Martin LinnemannPT14M39S4OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKrFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKrF^2 ''mimetypePKrFMConfigurations2/floater/PKrF'Configurations2/accelerator/current.xmlPKrFConfigurations2/images/Bitmaps/PKrFConfigurations2/progressbar/PKrFQConfigurations2/menubar/PKrFConfigurations2/popupmenu/PKrFConfigurations2/statusbar/PKrFConfigurations2/toolbar/PKrF-Configurations2/toolpanel/PKrFmJ33eThumbnails/thumbnail.pngPKrF7;/ content.xmlPKrFr-L' settings.xmlPKrF<3 e styles.xmlPKrFh manifest.rdfPKrFWwY meta.xmlPKrFjҠ">|$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/variable.odt0000644000000000000000000002514312645626062017774 0ustar rootrootPK؉aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK؉aFConfigurations2/floater/PK؉aF'Configurations2/accelerator/current.xmlPKPK؉aFConfigurations2/images/Bitmaps/PK؉aFConfigurations2/menubar/PK؉aFConfigurations2/progressbar/PK؉aFConfigurations2/popupmenu/PK؉aFConfigurations2/toolbar/PK؉aFConfigurations2/statusbar/PK؉aFConfigurations2/toolpanel/PK؉aF@}Thumbnails/thumbnail.pngPNG  IHDRzA_IDATx! @+? q`b{f\|PAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPfZ<>IENDB`PK؉aF content.xmln6} Ckbq@df-Q QJTEʗ]wEk(r"Ј#n!760+cd  _b΍7C\I2!!<:Ki]I. .C@dΒD0̣ee:llkhwn=#h7ۺ—/j9#uwDY0 _όEKnvbطGNEN%1N\dž=Fv@'|)Iq J7~'yqHNx'n96ȍLJC-AݱR91jOSz !E"@n4p8s{{}#㒻s)VUF60FiQb!艀-ͅ3uOvÓ ppFMRəF$fxLNk\|z kǮ[ә|gn~{t: wIM"#1E!ƋDR,.G-L8t<@|yG?)r}n1Ğ.J 0ZǨ.lC| -?T%_!3lx~aA.<>|"B))59fOۧ3k #݀3ҏ$Q&[td0?t3 Ɛ QcG {1u8~5J3nw?Fp"Oa9pVmj5i$p+57rC﫺}6zcLD?jOD1qp,I?坮 shLf%B>NJ̔72l,0p֔ i `lڌKi5m_xM)45,7}<Ʀtp!A6f\ְxͬQfǃƚ4Ee49vc-Ȑkɔ̩F0Ģ5NA'h`FA,Z#(t: Fk]墊F0Ģ5NA'h`FA,Z#(t: Fk]墊F0=ȯ]ަn(pfc$ICaŗMY­+GXUAoa'4U'W*CcXU*COa}1*ZV$êR$z qU=պzVz[XkqUi=պV[Z9LZaiC!\ZP?åe`iC)\ZP ?¥hhC_?,(K b ,(KJBҒ]OU/SWbT@VyuaM} +K$6ucqQ 4>y{3E(Mt9(t0؛$a|x4'@`^>z^RVZz?1Į"ͿwJ6 `25[K8ülIS^tt 3*K>JmPKFfH.pPK؉aF settings.xmlZs8~"wM0 CJKC$뛰Fz$9+r)뉉%Jv\}Y(w20V>{_Z]lh1HS` Mg\f>|J6iŠ&hbrvv3SY .ȘY.ŇsTEѨf*V"* djwԽ㷮 7[ۜ?ۭ]{aj5hkiM06#fkկڇ)[;MMTߧ|n^oԎ8B/DLAo)" `kq:zpC'}Ƅ>X|%fIڪ85ju{VQ^ />/?/uO|\$ZvJgBG{R$m43'bλv*{H®G[T7 DSh!U!K;RfؔicLU|9URId _C'C؄Q&eH'7#lCy-F }0}OA94PN(F+Xh+ :L| =6|SULhS"AK2`B)-:o5`m%SGcE~U%n?.nv,Pe4] i¯qbV0A~j! ˱+ƶ*}iUލbfd١`D(OP9GAvZA3K@uƅPl'(j ߌ SDaVo^].B"v @8tr^*^izenv"KpOCND'\V<$\p,D)Vď |8ef}iRڡvd!'XQil\K ~¯K 4:$61̳EXRg`1 _NhBpbllt =$K֤ f!$#s`HeHKA|a"HS_sj߽zW BZкE-(k0IĖ[mt=+<%r|`ChU 1cMᕡ\'vcMTչ0QVvXbRL遴.-L[4d{^`">* 4Ԇe`so␃lyƼ&Jㄎo_eK@ Zj@)I;f6h%᫋-89Pmڊ1Ȏ@]EPyϯOֿPK+#T$+!PK؉aF styles.xml]͒)TrmrDRHxJVO "!1I3gɣI4,Nz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PK؉aF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:14:48.45Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK؉aFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK؉aF^2 ''mimetypePK؉aFMConfigurations2/floater/PK؉aF'Configurations2/accelerator/current.xmlPK؉aFConfigurations2/images/Bitmaps/PK؉aFConfigurations2/menubar/PK؉aFMConfigurations2/progressbar/PK؉aFConfigurations2/popupmenu/PK؉aFConfigurations2/toolbar/PK؉aFConfigurations2/statusbar/PK؉aF-Configurations2/toolpanel/PK؉aF@}eThumbnails/thumbnail.pngPK؉aFFfH.p 3content.xmlPK؉aF+#T$+! z settings.xmlPK؉aF֡e  styles.xmlPK؉aFh manifest.rdfPK؉aFjX meta.xmlPK؉aFjҠ">x$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/image.odt0000644000000000000000000010112012645626062017257 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF^,,Thumbnails/thumbnail.pngPNG  IHDRzAIDATxytet:d! eT.lQQDaP""1 *M2l#*0zDaQQAH `VY:RUuUWIN9=.U_}VM8?hӐ `A~,A ? X `A~,A ?"yAPEQd ,K@hS-,;\~(Cj9^QU9 (!h na|#<hv/TUA,l6]6 BvXV\'e(?0ݻOTUS5+K'rOmٹ0FS{"/gE#"T8&F]IbwPU%6 )5'>,h}&Z#5soee_(J`CAMøJa.CN# ",eAjFefTEk3{5.5-v- *alpP8 WZL3A>X>tO20ϘQ?NHd][-vE()xѢkDI1h wJ$\"/|:C5~rPk#Cb>tA ^CH"/Z뼷?쳤™G?fp1>Vi;fo>ܾc现(HF!U6Uv>}Z_ffkhh!(ofvV%a<~8a#:O==ڵfϞ԰R8M-IE7,(?3#xM 8NC[7bU}ىݻw 2ad"Ո=ƌCQ.BJfV;wΞʍUE=o|xcpD "t. MoƏ#G'I3p(ܷo_lznA!GPU3 v;@1.X*~۴iӔf9 P"aOCQ~`bœ⊉۱}i FJJ ~b\%Q "yü}cǎ(YQ'P`G9-.NDWh}&Z_\ 599{ndEXUyknTϛ7>YYY' U &! j[ŕu9fiii׮]`P Gd6;~nh1"ܹsa/%SR}ʢ 0III+W4ތ۷cccBccjQ.6ĺݰ'---֯1i{1*F "D#~bYlYJjytr% N8w%K X }}QטޔӰFfF=a%(ڿ! ()/9Hic;ٳg59ꍭݷt(6'L̂p2tPlֳgO3A0oɊmPǨfGS[[w ʕ+Wzt{ݺuӦ&hiۤ㩫G9s\)PzG>ڽ[Y_^|U1gΜӧ~+|52Aof;,7o3g)MHmvG8_yF9crs}bm߾mʔiؗY~8p&ĩ)I6o\h+>|A^7̌aÆ1j'z_r:-tG f$&&‰W_}l\\l\\||B,W^^YbGD(CA-!I:tPYY_xo,G6n4=g~8sܹݻ5~O>ۘ=DGTTgt@qZWWo1(//xALE,y~1AD`pԴ˗/Zh[N<%YPHEu}u6d>CH[,_2QTWzoj +!D#g3g6ڵkT{I}e!D@Fh6vH-,,4Ets 15C!.];qE h$c\|Ʉo9)vBQP:hPS`BS\\?y ]1tׯKVNq pӦM]>-FDNWZ+ٻaeP ~yBeE-YTT6cyP(aƍqx 9護 :l8BBB޽S< D4A9k9#IS5IVWW6s=vu葋)~טf1&|k>iӦy<'籍UVZUTWd}64x>wzluֳgΚ5g;;^r9w"=͚5s1)1֭[]j׮]rr2Og2a„NԴU41oEÆ64ӓKJ>0_qII>}~~IFJXQ233;oi3bDQѮF_3,A6}(5s޼yLFjjEEd׿:t/U+WMĩS7Uvmm0"!=O䘗(>9::`WWWqǏw_zO$FY l;*~ )_>:fL~SSŪmxg#GYI_%~OΝ?/7‰'6ylŞ^?ݶCfs(EQE@&Zŝ;w$QcqSSwߣ! ^aa!7JEyӏ;@?,)(sYzQP4-4Qiqoݲuܸ'wuږbt.lDȐe93+ /~-Ç}>WTTk#<ހ,K\ z{9eʔgL}?7oU$%&Zba̕+W0bV%qzTc^xQq(Æ k2h_ih4>gň(?0l1˫OsZ%pBn5JobyA'Cmxw vA"=W\A8{lnVXhbRQQ:h<)/m'հ,d]hVVvFF͛7Qc" Tt?Rn7"D}Cħ'-]رٽz:u/:Wgb8d..]}^{Ə||^z fժU-'2;O声NE~?ު_ ; 26I\Lsa6o޼쯫>߽kwR{466:Ψ/l/N/֭k֬1` x/df+2V%?g>+vUm6=($cIdQ~v?!j w[?glN4MtK;:uo߾;$6UV[E>11qҤ<[YiyyĈGA'A1!›~ч[;?ҭv6 ܞ5ݸ\|{=1?ݻww}(K,;t[|\={۵}狽{sJu08,:g'NL߰h~}3f=JFAN򢙩bcֿޖ6O{?ߍ- 9dԱcǸ8WSU=I 111QQ`.]`Kb9qb?vkjG4iRQRUD$cf+FpD4UV3ĩ'O^vR(?0J?/sv:uTZZv7}p&>C x<'m{СkZS^Vu_:4V9Ce*3Ikn1 6ŨY fjŲh˙YYΒ~뜞.Xu?jw^>z?ΰl0ի{!:;PĘ ]wxs!>-FDvc^w0l5OC}AAF… iii M>ѣoקtf5( P=̛7A*b\Q@DYt);dȍ~{lH$#^_LXp͹gTQhL"pbʊ矛&مիW#}Aj]b+g AyÆ LTվK(!b** bD)o$sH>FҢ_ޏY,F,KkE&?%xkMSD!LtıPڈPQhR`щbAG|[(`( +IUU?ccA=vN'4B?DECoeXXYS.Kk` { fNq)oƥh 9ҥ50!SgڐKo<:v]JF>F#hb4N1A'`FA,F#(t: h]`j4: hb4΂1A`FQ,F#$tK_4Aۗj?)3D{89fYw_[o 8S u=1:=aZWêS #hqiղ"V"1PXAhN(Ջưԋj]hN(֕ưjj](y5?fF0ǧ=e2Gp7+\F,?E/ǩ?2GpG3\F , ?z=e~4X`[=Hzy#Ky!3hm*bx|u^34lmqhv7ُgS )VA`l6y_KemBRќ_[vTkuNޖrH5ahAmLy,dh͵F5;uҊ`%4#u5bMa~A>(d7|^7Lfoidy\ ũK #M@ $6Mw-?I!s\y?PK],CrPKaFi??-Pictures/10000000000000FA000000FAD6A15225.jpgJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((>!1"AQaq2#BR3br$C&S!1A ? pOj~7u .|TF~J#{4&'a\'8h6o%&)d?S5̗Wo53I!,za[ sEvܸ'@ )lq'?Nv@ 1vx,z#f}@!( QpOx0c% |fw 獣 cކ |Q\Qr ;v4J>7|3Bh'+.|g*IǮ}{Ph h% b@YP+a($恻)|*qڀG@W>Ss4ݴIbB $F[aFIb$EnW ZnֺѭeRIFV544}*/5jqȇ˾ZD1ʚ.mo!E]{odh=>Ux j ހd{UhVi Hb(nAh-3SMQlm+^/UgMYӮm@ξSn&=Qtv}iP22IQ\O}4IIH2W'.qDc6MBv~xQ| 2GAg٠BNN=(:RK'l}4 P)9ݨ-Ė$aD N3҉OzsBԺVOa%qbp}_{K]\]Ȋ l>ѭimj[@8TƎC)a"T{ \\Gn84{hXfq@rMz*@{h8 ʂ{/ أdA} ]Y ӯKNO#n|UtaZhg=f؊۞=EPvۃP7$|9'$ǭ `zQ*zsPpq7(&na^ֳ[4<81+ށWh2d*pO| z{{d'@|IA9JNP &>Sh, :Xm±WėRpcG:ގ1X+Is(k8~2p;A(8d4̀Kg2h1~mVR3Y/cSJAv>q){Uh(\jW^wt&O'('KU H6@(7)z wwh9WːH 'JnдvXkqC"Jv>e]1;ԃ[Hua.r!S^⠄랋5Ibxz>zgA"Wu H$A9#hy47͒wsbıe40PFGހF;Pϟ'>{@X EJ@rh+6!b] 'f-j 2)U@pۆsށsbhmdp㷶>tbR뵽F@v<Ο:g0pc1q}`z8hХyh,'èk Ë;uk8zOu.\^27an‚zM\ڀ6JIb䌒#sFu[WA w0X~.}#\F8E~ZBPFkH/'BBA 8EAϡ}3=+[B,zZFǖhnNMhGҀduHZD8]%ݽjc2Vl_lP*P,QO0($~c@A4C+0h86s@ buwF{P~T#q PFZ[pw ?0`?]M(C;m5`tW'Ƴ[x敝r1X6d{t's d([сR8,|AyC.,cC:vU[zQT[ .n@S l+6/m9$~X>%;t緐IG_NeCj2K*# Oo tcy)0@Ppڠ\'$vAhAX!sZ%o*Xla3!iXdQ)fcJLz^HeԓpR@>'?,J('G!\`\g@QK%-gPI( mka/n G?>>JM޼1EՃV ŕcʣGD:zP4MzM1Rd޴^g/8&CFQV}#> H(4 <>B'挜}?Zɾ+{nz_UkFd'@_$vPhH_T\ܽb˩ dUsRO-bG_XğQz;%7P7B bG<v;*2W+pEmZaM& PEuv<>$ Q#_|f ۩1aNs\L?HF($u3S(/-,⹷%w,r+ H8# XOJmN[NU6o!##Ci-0x19}=q@Pk,Ls$rm,Ү C[qsxvH!$L14{k1 C㲽K)к}^YOR;R}p!Dq)qք* O>Z,qsE%"m9⃣b@4J8G3'n8ݤ)D9Yf Be- EOb}A|:=֍ҤWeKö{zwEץGKҺMWH$]] u7XǤkG%ܒ'(Ocϯ;YMG͉ ނnTYMKdggk]jr JѬy bA߈yuv{8£n~mAkz+amaG7W;җαwۜE&r>>%)v49ϋkqӎ6sAREH@s(igyo( -6c MX<ǦhKX7=͚1F"ϥQazOU鮣#8ǵ(ӟLҺvWҒNcB ᱵvsY}3-k*M8?޵5hLT 6K +3Y( gXVՏdѨ Jc iv)8r{@B%=@F `?h' h6_FbdB@2Q^BH`+!" ۽` !TAͬtXSρ"G%\|J.ϫ;KK:.@k 3dzCW!Q- &P鏝}ҽ/ɪMr-Fcz2׽}=]4jGTFH;d<պ9ŴRF8g(sO4:?XW*:_ *-> gjN\m='bf|[PH:dTl8e~n[-p"T]UpK;qn( < ,eoq> k!Z!f?,U;wz}"Q,(vɕFq>hzwI [bW+FVLdM &*D .[}87[imtȩ,xh['M9@Eqm⤞ ӱ ?A0p؜Z->ctkLRF 0,;~e!bXr!z7KEmM332ɴGz=+KmP9cE8 1=P18@Aj~t0%VEyVT$п-kH b +XV@IY/ԣ[o9HU"BGb>cP+ 6EG8-uRl[=oaWGkgQ+%KRcxՂ*E sy?@Ef՚F)<lD~%)-$P\?${z`@`YCcxzѡX:qgg˛kU$X>8- MK}A;f_a[fJe-܌jZ,&5;P(cAKFQAAuD3_ 3_ WsъuJ?LG3^5L7BTc5eRVHKW{KkK'*OW=Zv$S̫e<lژ=l@v0k"?'s&K%B/n1Ogu{g6(7΋4xR!" F璤F22K$E-lc28+tu亄pfE v<)m+`n'>C3$J"yA :u`lo@C!' !}dyMӮk䷱+0W{+K^i`|zUPu5̪w#;n8 z[=x Sx gZ[v]CZjӲZABp0=(1THx_"S#G}4]+y.R(W>DIvvE&%&YW <`w$*h>iPJ%*#*oJZ&mM)r?QP-˟jcȠ1`Y4 NXF)>$F`A҂?V-{-naFA#5eJ{\mr?*hu_eomLM2lʌ)L4 vqx9*0 >ƚ&d >ml K9|F\OGCnŠ"( Z[j Z[,<[\cY?ۙtid29!9g0YeΚ۪&yݜSrϬVjZIin78U_y5_%]%vFy#Ƿ^`4Bj>A$FW_,2CG2?n8a#}KPt͎pj`N>$csH=F;7>thZBdrެJ;zhA k!>zNrO˵K׃ZRӯucTwfH= +CRTz 4$o'4:tbtWx |ڃrK$m>d8MUpO,ua__aӭm41ݟAۏzgZ%ѯ$r401]jԳHGqi^&bl0`;dRكY@V`7cyػ}OowsgZqpC 3ή ƒ6RfW^:`u'43Fx`o@Tq@P@XQ3Ƀwo\[x"&vlg#Aݏ'P3u..7V[/ܿ* +ݚ1P Su-֝ʐhvDe昁\g gGQ,۵-(N_5T'ymqPc}[]SbZcx`r0X 58G{$T{tφjpF9UѧƋg=՝bmuk='p#`=Pe=A0.H#*!6>_ϧHUn0F#>ރHkTxyGGZ8Z.< #F5x@}܋O˟A-/ ńK0#kF}8?j UjgZ Tho iNj.%rqW.zc>A⦩ Gs@?h-޷r̚lEn\콎XRGkI%RE u# 2i6#FI@d05{o 7+4 Kn%)Jgx9CXi"cnLcjy-NUO.äAܱ9'8ɪ-KBxnHp#[t1^: @dU=k&iœ1A~U#PX6:Y1BIV=~=S㶸#Zc9zu{hB/$zΥQjNuD:.rnjՂcD[k%幝qXTӚu{kbKxB'ēT X֮/mKI؀HΧԓAu 2;x2N0Cφ iOfHi}{B[-[msRK.uUȅERhl9TvKa6$B "c>#4:{c.qܞV'Z=Q;A{U3su֚r;]&]$sD^) BNA$8PHt]*-e%uz\uM V6CBSi@;Ճ}_?ZtشjOp}(~Tѡl1-.dAxA)mpor0€uNC0lE,X3h&c`޼{PVTtWD'PTՃ$zr^+8QiW9C8Fl\ #*JTk!.c,B{hQ> 4[.sx8BZT9\vOTBI18`Ѧ/V:[b_w^G-&DfJǷJ0Mvei|>&ct'8V}v_ԘY\aAo..2A'Fhѱf±Λca?栖ӺWHH[R Æ{u[t 5̐<c w@\]]E{5@ӏюW GQz WTԚN۠"K2w('h/~kk:kt4 raA,N0A(+]K=;=z@ )-<*y#[7;hWU^w$LT(Fe]VܜeV_Nʂ>\_[F@.3wJu~rJ|Ŗ{igTMblF\0I$3Ko$ʲ7 ݃d ݬ7d,8cmo` 7)R}ssyh2ӎ0&]]yF{ce+hY]B.]F͢V*v1lxv, OZWP\Xp]t+z[fr`--$#JHu(ǧMas4sZ!B1=P_ 8 \P.g]EM7[lz@ Γucjj'OJNo:R+J+$ȤH;c8zI my, ]7G?CuņDVZݤ·xN9ck2}AvkĎLEok ώK8)|N(9X&<~ǗdR6PhIQ}}(WW\[iQ]w(wdާs珝1+ֵR=Goރ ?K,'{(G/ՅX%:j@b(:Ff1j|$fϹ9Q_t{^n5 .qvI7Ѻi k)DJPdck1%I?QѼ2|lI8 /NWp[lP{sRZzm vH[ҭ$H3=ꖉta[_.wy&mfPhGr>*둓*NS@,+g$G΁18y' hRkvn觅?@vx7H;T?nP/s7c& PzV]IBہSYEonbI[req=4g^[7OX- JW=Z uSteyWvKԴ ;rXn?*7duJʑPh_ a/iXд{7ޖnNj[f YM19'*Z4W7y]fy~@YZ;0|&ѓoԤǽ#09ۃ8Ak*أ^9';ՐCkoi ,Kq#`,vybN3}I>e%*kZ>Vm`Ϙ1 I a>A09g{zgPAe\)'s# -x40 ZO.3Fj,VKERTj`h$ lPGʖe᷒JZ4a$c?\Qhsi< $b-ɁvH`/θ0q'{٨5$ r2;znc1G*xP4LhO 7M[W鋙mMf gΗ?MKn/%˂rNyVP?Q4ڏ+mj 9~IcXr9>U6oR,nk$zg]Z-LV@6Y#~2){A4;f q=MJi]=kg˩KNaNJcjJ Qᛖoz5eVM{Pbuw[iŽmcxwڮ 5R7MwE%!€`=j $020@UϠ|E׵۝F.`K.4~NJg d:.S&!!vvez2cPfi[$(#ːhd`hAmb@,=hFr#tC ދ}\(5|&ֶ*)SGzmd$6I>Ps)HA p<@qȄ>@houe2b;~EcPIL  uwlf4$4=]kz|v_%d|(ed}u,į.O>_GIKlIed= \ $m>7 ]4x I'J`h]_k-$p̛wʪ;AU#HܸFTDT{89/kSk]5cSĝPq ƷtNrBmDŽŕd E̽O˫BV8,F k' /֯<"8ǩ0dRit)r#ɑ(09=5j7z#Y~^C_8$S[`e8;Pw9WT>T} JiɎ(BayS8=l)$pVtqwd@X?&`f"I->Rhkyhd: d3R/i<-nxnmFi)_W e0FӻcɫOEbΣo:Ds2Ƙľ3zU4aLM*i\0?>8l@{^kdb ll7ܞkBj/ kQm v2/ǏlfߣZ]`;lLjv+3(1IK#sh%@4x]s@ ;>T&wS#=))|b&yFآ>18\sڋY Gܮ=>pO|PXmd1aN$a@0h'tީxDc.^=(4^7P3p0=v5iMuYomZ# Yݎ A'/Mm9YX5֕Ӷ&} [ncwzx+&W0y9=Xu%M{{mfҸR_RrOAkם/רX/{KyivRw悰jU^ wA$hlB>q(ř%'q<}C }@mA;#9bpx[:23EUs*Ah 6q@S4ٍ2*>po *[ J4:Q ߿Ή es?DB]FsseXc;w`{f Gd9$~`:N cYs9pL]W! PgϿژ/|t4JHGb+z-#\[@fA,o^1`5ތԣeb75ֳFn:Ey"Iku-5fϕW#qZCM"u2]kOo*28 \_Sw,ĉ$1'V\ g`H|;SB+,@'8 \O=@(w?JOFP-ʌ}j? s@pF{˜h'Kڤ@vRIGl@&H#4h g@phM<{ $g2ۈE1P`9P&2yh #H=@[ yPn!@"8wPߜo(y "=G&cF 4rc@``ǁP$ ׵qC.]NodNH{P;N9X3 #0^2 LZ+ {hq(w1总ݻ1(7df$<%!%NO!榀۞x)F=tJl8WDZ7+yN9 $$ G hQst9L#zP@o6(7s;(~S@H ##<WnzCw'(p9T`ځPPKaF settings.xmlZs8~"KzIRZ \߄`5#lȥ`z[OL,iW߷+2'/4Gy]{'  xGSkx4iN5CS -xMdd1 ,k̔_/2&ijlyhԲU~ _f2eZwԽ㷮 Sn 9Y[Hej^Ѻ|6یUB#\UJ8\jfHy9O<4QvW<*t8?#)19`(IeT ɶ…{ a`1KN a ᮭ+[CiVYnmUEl}~x{cqyPͧ*OLj) JRh gxB,BUlHcke+K]tY`Pqizz aWч#v^-^U")4*fåT)-3l41* jHDyjKX2!e)6avkl_|QCe5 DSPM4TJѤJEiʂ1a[|@-ՆV}7=)m*]$sIFL(EꭗL֚.\2:< q4QwQQ&`\Lٌf.'fD{Ajl'Ze9*hMF٘ @)sTl œX0.`;GQ[P`fln'8L# :}c&(tdA?˕6zTJӓ.s\B E]~ru؜%=څ2G}!i #`!Jr ~^){H ?̗MǶ# 9?IĊJ e\RH~^R!a-¸:CvBod{e9$YJ@'&5_M0c Is2j1`g\3>%Ck` oSv|WR V JE<4q(nm mȕe5̆8h孨ʉ49,O)Jڦ9%M#&RKN#|8 TJ>k~f*c:im˓a#@h.k޽(UbUpFCp50tÛ*Y!c)jKAyloU<鴟PBw6y,hB"hE)()8+J6^oT5/sD^O?#cx.¤k3HW/'4q88f9Z;8><te~]!b=/x(S%ySD)~.dc@ NS@IՈ) ,H"2nI}9!ڳFg:>g"OVXma/]<1Z"? !B1bI@YJh` gE~F6E$I tlSߏtQ/t1 4'#)LD 5 v:d 5UֹC|)Ig`)a}Zvg>}VL4s}1}f 7(͒i"Br.7.h_ւ">Go5-ԵWo }/Yq6WhH.ZQ4|亠+6掾x[[N;,aޠ) p=pːv*j(tؕ[m;Ѯ񨗝Y'02źz+[1nr14vg1EYDŋ$yi~-'V>^l3W3GL=wJwF4Ϭ9)eH2g-|WvKf>js(G|3p䵭"P"~MF*VEb%YX#+ 7ִl5E0S6,hE-Oz\bF'  3Ɠv{>f99?֤W)JM4PAy(RLznqg hr׍TJX|e3vte$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2J}H#9 "uҤ㧏xׂ|>j/z܊W!e:51-쭫\5^E?(aGUݶinAQ,\W'v3Oeo Ù)S5FVyVT+Bd8@Z(u}ʤ ٫3Xi@feK6{$O65;~9r_x2``krɒR3lN(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+[͡QYrkRy) e $[.-=EQu hCt*-AH;\E2 *00{^e۫wT6,4T&>W=*nP St *x`3@!r6wJ:zE w8V5y%ג]"/zʲ}#!K ^/\|JH#\e g%UFW h`ՁjH#\kTg3.X72p?W Mp5?WMpݟWMp pmLm'_xO4[޸ ~k~^'C~]\/*5~8Q59?Y c-'~?Z`th1+aiU2Dbjd:Í)A̜pـXSצZ5AN/Wo}1 {% *]3*;\&XzťDFJS~ӼЉqڑ,T?EAYd0J~{9UFXiT;ü P`j0; #/Īr?[|sd Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:20:30.92Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln0 "]Rq[F U^S:71.(aεP~iUhT4.5YS_Wl0\*ϰ[6{=/N*$v oR`pt֫βlFw=y@?5se5Ihzu ;sPKʾPFPKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF^,,eThumbnails/thumbnail.pngPKaF],Cr content.xmlPKaFi??-#Pictures/10000000000000FA000000FAD6A15225.jpgPKaFfF%+! bsettings.xmlPKaF+oǘ 8hstyles.xmlPKaFh vmanifest.rdfPKaFqwmeta.xmlPKaFʾPF{META-INF/manifest.xmlPKo}pandoc-1.16.0.2~dfsg/tests/odt/odt/blockquote.odt0000644000000000000000000002062212645626062020354 0ustar rootrootPKd7lF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKd7lF'Configurations2/accelerator/current.xmlPKPKd7lFConfigurations2/images/Bitmaps/PKd7lFConfigurations2/floater/PKd7lFConfigurations2/progressbar/PKd7lFConfigurations2/menubar/PKd7lFConfigurations2/popupmenu/PKd7lFConfigurations2/statusbar/PKd7lFConfigurations2/toolbar/PKd7lFConfigurations2/toolpanel/PKd7lFebThumbnails/thumbnail.pngPNG  IHDRzAIDATxP@ф-Q)6s'pM}PAE}PAE}PAE}PAeO˲_gqz=v5Lo=}\<[H (fi?o1ݘ`¿oXvwx]nU2ͬcif4胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(9E IENDB`PKd7lF content.xmlWQo0~WDABy@ba-B $ ! $^=I-N{N⦬"e[w|n?nkmuBe3fBUϯ}qV`65WQ<΀\yycUPІUEY==#xfs EK=u^YlP{S`ܶE{}m7778zS4LceD1!Ë5dn~;NI5#KCl5k6į'z߃3kscAf6;NBw@cWoq=B'S"i p 7AInp;w;65ك`$D+cC&w[n0 ݺJ}-{2v \c8pF<<AI$l5܊"Ph mbEWjx:: %\@$#Ʃtn$s}<=QE}k=p ->d"pi)EaM;L[W`\(5@M`iKr09ĽqD@Q4dMe8eaZtr3[&W'bԐ9a gC h4R{ځ6 $a2ځǰ ޣig>UUɌqO.D$ ܢC]j &dok͏:\2:up B;* ‚X 0 Uv"vGᛱaj09?2Q҅>_\Ӏ.QA+m,╦']f\B G]qru؜%=څrG}i E#`Jr ~̞)7{H ?̗MǶbEer].)B ?/)X:0Oa\xb}Hƀ|q [ VÉQڲс,%N IxZ֚&WB8 HG@0]ˈ`c$`"S_sl߾zW BZкE-(k0ɜĖ[l=<%r|`ChU 1cMᕡ\GvcMTչ0Q^,5 ?@ڈpX-[=/015EfÿuYqi@'#&x7q]< c^%$WV!aJ{Lܡ ݕ$|u7V ]oU=]OthPKm(+!PKd7lF styles.xmlZK6W*-˻]-E$!%bCIIQeVq< `-1JhBʔgVY2(Eyh1ʕq)8Y,-_U f4&hc2NIx X4RY+"FC>nFgv3Mc1:7 axo|| &{ u 4TiZn_s޺lwml=I==ɞb"%1p i긅X :@:rUTǺYdwnb(5HtdsElInzkF4Ԝu΃BS}-D} D g`e|1hA[G[UB]0K7`>!]"BYÔ̮T"z%3Nrn;NcM@vgqkF?)0-ޅ1U{,/ /Ft Ip%u0|3#DH.s}6?B eXdǰOWM 8xP w(JKg Ylr*V`K @V{;7 _q!zo2oHcxKx1%\+C.L{w"2C8wЖpqUA}3݆O9^!ǿH8kל+ Eؾ:n1>A'(=/c Dsa!)!iA^#y23x#`jbѽit(64ZnIok{W栓]çHSPv4?ñm4Ih9\bz?8fPs*ߪ ܨw)qhkr~0HR9u`:#kdxZ?Xpo- M;.V]~ޠ3ѡpI3uwi Zk5^z SPK;)PKd7lF manifest.rdf͓n0 Martin Linnemann2015-03-12T07:57:29.212015-03-12T07:59:08.12Martin LinnemannPT1M40S1OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKd7lFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKd7lF^2 ''mimetypePKd7lF'MConfigurations2/accelerator/current.xmlPKd7lFConfigurations2/images/Bitmaps/PKd7lFConfigurations2/floater/PKd7lFConfigurations2/progressbar/PKd7lFQConfigurations2/menubar/PKd7lFConfigurations2/popupmenu/PKd7lFConfigurations2/statusbar/PKd7lFConfigurations2/toolbar/PKd7lF-Configurations2/toolpanel/PKd7lFebeThumbnails/thumbnail.pngPKd7lFc=Xl content.xmlPKd7lFm(+!  settings.xmlPKd7lF;) styles.xmlPKd7lFh Gmanifest.rdfPKd7lFqkmeta.xmlPKd7lFjҠ">META-INF/manifest.xmlPKp pandoc-1.16.0.2~dfsg/tests/odt/odt/formula.odt0000644000000000000000000003365412645626062017662 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF0Object 1/Configurations2/accelerator/current.xmlPKPKaF(Object 1/Configurations2/images/Bitmaps/PKaF!Object 1/Configurations2/floater/PKaF%Object 1/Configurations2/progressbar/PKaF!Object 1/Configurations2/menubar/PKaF#Object 1/Configurations2/popupmenu/PKaF#Object 1/Configurations2/statusbar/PKaF!Object 1/Configurations2/toolbar/PKaF#Object 1/Configurations2/toolpanel/PKaFObject 1/content.xmluAn1 EʾB]RRf$m=IâoKKfrY5i ho\pdbU|\j]km}^OQ)!:4151AطVC Xiѯ c+L8POpDKA-|)3yBK E"N$ePO_~PKɓIPKaFObject 1/settings.xmlMs0 HH;$gaDz$9@}% Im'[Gj*`7"o;gu)4?tp6>xS:"kz:^D{H$'HOihomgTr<]6OQݳkw6#gQ}"@fB Qw]kN'C" 0m(,w^s=Y c Z [[LY0Bjfꪜ@5_4Nyh""A΀ ^97Yx^@aQ="JuEbQrHsy`zC"攧/`FR6x бr: *P#e+(a0@YdLu3bj^ g@e١& w:3$&aԷňobU&0(ư:X68Do bYMjڙfUF L"bUfXjm@B(j b #f}Q/G>ae' ZUᦾ4pU7^5$G Slmaݿ)@"p?L_`;*~F\[)G"(cROE:sYf@z* A_񸕪mi}TUk&="|]w`s-[p (7a0KWEtgD]$K X 3j:mRLBl#ź!gY\9J@zYjN)r%oOeQy2: RN(Xbn"9Oahu뛅[i4'o 7/PK`iPKaFObjectReplacements/Object 1 s qcd0dFid{i@! @2(5('d9Y @!$37X/\!(?71q @% `>fMPfHFv f;6$ āt b)ue?)l6I.Լܤv@rFlN4z3}p|q ӎ* pw_nɍԿ @[}VjTwq/LPK.GPKaFӔThumbnails/thumbnail.pngPNG  IHDRzAIDATxA m!JK=9o pj胢>(胢>(胢>(胢>({c 8]}ieD`V04PQYn72Mė'΍rn73]2/5\8p /0uQ)m];AL;4H :Swкɾxtr7o m{!$ogu% V*EfpXo`chAÒ!  ɂ1=Ewg/q 1#ķTȬ ԰ _ oQż.&KJ(Vw<=8zS'峻3mGkAềx'O\yր U.JV˚付zk(yYٰLSߍ|kCVDP`aP=+Փ/3 lA-vpsްBu*Ptubӝ]V#Sn˯(LT5@cطy"Es+D ӹe+I:j h-.P9ۧI>zdY@ջ*K[v߹MҞ%a@[ާ_wL\Km`F Z fLոawefB6rU(ڰ\ty\jsB6qWոab8%s ̴UzԆebpWh)t F`4vb1A#XFX0F#h 4hc4riF02ډhc4Fb1AcXFP0F#h(4ʥ-FF2#g:::nn9F3~Vµ+GXeAgaծ'TU'tW*CeXe*CGa}22jV$**S$: qUzQVzYXkqiUQVYZFaE"XFh.?Ze2GhE0?>XFh.?ZeV2G`E.Z ?ܓ R5L! \0$$7flŃ|olSNG-y|4)b>d6%`ЬoP) ^TkzAdJe'Ѕ阾fK|yTBl[a\AVoԸɍK0'zRيF7̺]IkT_[0d5!OKR89Ht0DKfuQP%á=: oPK'tqPKaF settings.xmlZ[s:~?"wB.9IRZ ɜ {jdGlIl=1]i/߷+2'/4Gy흟y'  _{nf3&k1Kj\pVP, Z6K߾tyx{ظxOT&ԪS::ڛzKn1Wy? IU9"v6F|,weAUƑ1 ]EyǷox TC!B~vRh7̰)`ǘ`'r ! ,͓b@?=JC؄Q&VeH'7#lCu-F }0}OA94PN(F+Xh+ :L\nT>[ODwLL{v %ml0^Pc06{[k%SGcE~U%n?.nv,P e4] i/qbV0A~j! ˱+ƶ*}iUލbfd١`D(OP9GAV % Bh qoƆvd0p7Fi/.J|!pY;N;L ts \ic9G4=27;%P8Y!'Y͉^"ݓ}]x+s7F .Y8+ 2q|)d~l;DPLqP%T?@% X" O30/na'Y!j81JW[6:C ĉpOkZ3d9 L0CW$bu2% X>0) w/ՂPt.pi=} J39Le`R6Vpc0iϪO|md6_>)buCngSxe(Wjk?BaL):&KLv@O=6"eiy LQMF?,4lMrp-Kakt0NUFdc&jSA`QrV ]7U=]dOthPKRr%+!PKaF styles.xml]͒)TrmrDRHxJVO "!1I3gɣI4,Nz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PKaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:07:27.67Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xml͕MO0 U\P u88 $gn8{nAِk#ϔL^:atA I@sS ]~Qo8C[V9rynХ^>_8-5S2%+JHHC JR7P4Rp2[ d yҕ2mN B İ˅ѕ]S8 !4romD %"?c:Ƞ'x+\GD4v D1h1MwT*ckY3K#*!KY#e)M= 8my; j7Oh&>vT4ƹ}wՖV6A C7zPKe&u:PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF0eObject 1/Configurations2/accelerator/current.xmlPKaF(Object 1/Configurations2/images/Bitmaps/PKaF! Object 1/Configurations2/floater/PKaF%JObject 1/Configurations2/progressbar/PKaF!Object 1/Configurations2/menubar/PKaF#Object 1/Configurations2/popupmenu/PKaF# Object 1/Configurations2/statusbar/PKaF!NObject 1/Configurations2/toolbar/PKaF#Object 1/Configurations2/toolpanel/PKaFɓIObject 1/content.xmlPKaF`iObject 1/settings.xmlPKaF.G ObjectReplacements/Object 1PKaFӔ Thumbnails/thumbnail.pngPKaF'tq content.xmlPKaFRr%+! settings.xmlPKaF֡e  styles.xmlPKaFh I(manifest.rdfPKaFs)meta.xmlPKaFe&u:-META-INF/manifest.xmlPK%q/pandoc-1.16.0.2~dfsg/tests/odt/odt/orderedListSimple.odt0000644000000000000000000002451212645626062021640 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaFThumbnails/thumbnail.pngPNG  IHDRzAIDATxn@@AFEB.6']^oHtsvq/7//,_(f.&?Nc:;XǛ;OSȌFicYiK cߩ=X*;?=/]c:Ǭds}>q3yl~Ð_ċ ;~\YF?|ӫu"/(zZq*Dϧ'-c^Ḩ̂}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P $nUhIENDB`PK;F%$P content.xml\n6)*О$Y'ض(@ ho ZlT){=$%EI˖¼8p8p$uqc2(پ۱-H"ٟ>o.hNC1$ (% ٙ22#>% |*)M )U4[Kpƍ3pZXa7lj2jj2U65~؉zD}f/HZUϥlfˀ g0 j1 4>DxY+~Q` Xªm IJw#'Z`qӵv#UCImjt՞RZ v:}O_WЫC < ʌx[$$LW5]OO`ֺ.X<~RAN,s#[\+2 ,HńPcمdG  F|>5'g_==6I*swc(,=呵eu3ZLcn3/E&* %Q@&d !#D%:U41iyD5mn@r`D1+:soe"{]Y\^Ӥ\?S@EDKBtf;w31` D(-Tزݕt_L_|ŴL:h{11uvGm091sld=w%8-slc}oy^ 3:F6p;vGe|mlA[^шc#GcqkbɡxO$=AhF#0F`4hF#0F`4`f_F`4hF#0F`4hF#0fuV#п'ܫl3_#FznuPJ omF9hʯY]C t ]'SZ7dP{hMu2E5YCC ut ]'S/Z56dPhMu25Y[eGsë} D>1ẼP9B:: ! k# zЕ T7@yg)>k(54qΨ;=>@uVZ٪ lGCcN,x+yWV͛]%K޼.߉﹵`+M,U?hKP_iB+%CR_)۔/ah6ڡ)7^PKaF!R(+! settings.xmlZ]s:}"wBM$t )- fn߄`5#}W6)^bKڕ])ן8y9;`{w*Oq:4B h0Z.u#R%4 b 40^x;)˿,7^dLҨVSTy^f)*V"* djggod7y͵o^?n 9Y}[Hej^Ѻ?|6[eB#\yv]ݖLO<4QZ0_ϢMjZ9C)19`(IiT tteK\=K J̒ !, ܶUqpek(-r?wÍj(rƶrwǫboG\}(+T󉀣I&) J˃Dwey9?1I a8cKLMEl^I/[GKmtX`P^4]=C||*W@U<q ?"pi;Uvy 0 w /ǸQj<)es; p3Qkl< >j!'hP'Fqϕ,mc& >nͷT>]ODLL{v $md0o5F`Mp⒩^QXDAMgq9s3SvHs# p|LBfvrlyVG8-ʴsUlѬ1;,S =(+sF` ¸ۉ8ڂ7#f;qd0p7Fi/J|!pYNL t3 :\ic9K4]27%P8Y!'Y͈^"ݕ=]x+sWF .Y8KG0q|)dnl+YI"TZ([8(B*IE lƅ'Vj wZh5%۫-H!RD8ij{AIƘ+|Rl,R /ՂPt.pi]}J39He`R6Vpc0jώя 9 l !|R4Uu2ܘ&P  ;Ŧ\(+S,1'?u_ڈpX-[/0EEjÿuY~i@'#&Xߛ8[18W٣? P5B $E-+GIb!oT[)tAe[>EPzϯO/PK!R(+!PKaFh  styles.xml]ݒS8TldgO%U{.S26Y@x,ys3! g N|4i ( E"-roA ̽`]8cshپg,K)ڵ`SY|E ?g"GAma{46y,ngIC{>W%4d\7!eC۲79j;>+)FK6 ӺG<56(mޱޱ/F(h0 ?4j=0IirnYR euFɐw4q*{ $R !pN餵a@VX)kG>(USWpC5pt)OCd )jx/@R^!>;Pe~4>xB@(b A~GK*THj>0XBGE)\T TMh?^H܃~B K9h8%+'/ ^Nh>q1pkuY}Wh :E& [|6b&؍b&Ir!11gc@EA>ٙqsYc/R5b+ )6yaN(ά;fVBga 7F+f#$(Et8hxGcYQl cb,_f~:S3_G['#) \$u Kv:l3 f)s$y8OaYFj;IBp-ZCϙ<(sXo8йBiT BP.h7R"?k4MPY>~1*sZ+o4:lO68F4>؊cDA9lc/r4a0oideL;Uӵh9tY JƝhWy]:bq+{9r)Pt3/9bJ٦3)yXv~l\34!J2įLɮ9ԂƉ57\FTrܗB( mn(`x?U4FZuPLPb2ï3}IjXXRH1`.-U9=k;٘-1[xQCT:rE)eI0 vK+9+*CNBbham=Od nR}GubRlĶ?D:^_c5=^qbʬ\DAj!O-ݼJp6iVbVCnY:(E|5"v\d  \[ VkX6g gM n+?`EmIB_LD"r)AVV>.K@rAr$ MQ7ۃS)j6c"3 pA_7qhZK9j~apYz/bKW/"45Zl-\ ra^RijrP-gNRG.jH#\5qlr{4pp=X6f#et ^WE^-\3k˱*@"`ͮ,2-áBuF 4P6҈hZUWGƖALȼayd|<2G^-r 78.0=\+{9j CE㫟 QbUߋ!o,`K!X`. ֽR=te;lK{! tkrie iG^#0%iXadr2yf>ڛ{ WRMqc;.W>;:cFw\XտʢĦe\+J\X˕D\{)JlXx6Ԣ;4,=tƦ/ 8^&M0x-yrDo'>"WQ [t-W9]5%7>y4^-0_ϕmp"wZ ;پ rc@J U[t{VU}Ml_|-8ǖQ-B߀L-E hBϭ:vP.o@;ԇn щ5v Q!&jjJ1qfz$^mn^fEHN?.d8v, o1>qwyI 0PpX:yaDuW"bGJ)TVQЂKq|Ǖcfڪ[}3LAQ{o6?( ~N&1.(7©aS\K̭vE`$i3A$Sr(+4ũ1-TFcf˹]J 'Bٳq90sOyQ]*{l=x T7l4bRP)&^c> JNJ*;QV4RMWeN䡒ԋfPKh PKaFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:37:15.62Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaFeThumbnails/thumbnail.pngPK;F%$P  content.xmlPKaF!R(+! settings.xmlPKaFh  styles.xmlPKaFh manifest.rdfPKaFyP;meta.xmlPKaFjҠ">_#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/hiddenTextByVariable.odt0000644000000000000000000002504412645626062022250 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF@}Thumbnails/thumbnail.pngPNG  IHDRzA_IDATx! @+? q`b{f\|PAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPfZ<>IENDB`PKaF content.xmlM6z:YEU+ʹٕz[9`Slrh=ЏOR!3Fbo|<"540pxsn} -qqL\Tʧ3!>\ ;克 NIM!X LMAe![bYx#y@h፼@,2@xd MI|Yİ/|tQ^;:B%}"t370{ȏ#J M@$k!bv W~3}wX2@H%Z<#eпe):}t>v3Ÿ 1~x Je|OGFQ\C6AO!?JDa< kngl ˆ!H/Y!Ə פX! 6({,.,G/m|,? cY gMȔL>̟* flͦ͸aX%Ki ̬ĚrI2ZrkljM K>^d3k8o%h ˼̺5cwbLL!xch@M,#$t: F{Ģ=AGh`GU.xh@M,#$t: F{Ģ=AGh`GU.xJ@9UDt7iy2b#- ~kSp΁Vs[X q =պVSX{h{-ư>Ec\e>EOq^4U^VFc\eFOqt4UtVGƫ1?>XP?piCXP ?piC-ZwK B.(KJR.EC]4&1 S6׍r\DC &F4ӂAVOǔE@lXM{_Z]lh1HS` Mg\f>|J6iŠ&hbrvv3SY .ȘY.ŇsTEѨf*V"* djwԽ㷮 7[ۜ?ۭ]{aj5hkiM06#fkկڇ)[;MMTߧ|n^oԎ8B/DLAo)" `kq:zpC'}Ƅ>X|%fIڪ85ju{VQ^ />/?/uO|\$ZvJgBG{R$m43'bλv*{H®G[T7 DSh!U!K;RfؔicLU|9URId _C'C؄Q&eH'7#lCy-F }0}OA94PN(F+Xh+ :L| =6|SULhS"AK2`B)-:o5`m%SGcE~U%n?.nv,Pe4] i¯qbV0A~j! ˱+ƶ*}iUލbfd١`D(OP9GAvZA3K@uƅPl'(j ߌ SDaVo^].B"v @8tr^*^izenv"KpOCND'\V<$\p,D)Vď |8ef}iRڡvd!'XQil\K ~¯K 4:$61̳EXRg`1 _NhBpbllt =$K֤ f!$#s`HeHKA|a"HS_sj߽zW BZкE-(k0IĖ[mt=+<%r|`ChU 1cMᕡ\'vcMTչ0QVvXbRL遴.-L[4d{^`">* 4Ԇe`so␃lyƼ&Jㄎo_eK@ Zj@)I;f6h%᫋-89Pmڊ1Ȏ@]EPyϯOֿPK+#T$+!PKaF styles.xml]͒)TrmrDRHxJVO "!1I3gɣI4,Nz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PKaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:13:44.96Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF@}eThumbnails/thumbnail.pngPKaF\cP/o 3content.xmlPKaF+#T$+! ; settings.xmlPKaF֡e  styles.xmlPKaFh manifest.rdfPKaFG  meta.xmlPKaFjҠ">9$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/underlined.odt0000644000000000000000000002442112645626062020336 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaFeSThumbnails/thumbnail.pngPNG  IHDRzAIDATxъ@@фMq 5(M |'}|4}PAE}PAE}PAE}PAE#}Lζ,n?9 o:xֲvxT$֣c]We7M3^v;anB7|j/}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE4T잂bIENDB`PKaF content.xmln6} CkczAI[ -6QTE9vv.X},'-ŭFqD9xzv#ln .a;x _g.wfpx31SscGCЙqkE}>q;=E=GYo7@u_{A{> ɳ(_& mv;k7xԎjӀ4rS,;؉CT6>i m%JU.=#q6((=7"c#<ޑP)`rcAe0l_(UN@TYytP 4 wmޝ4$A9i ^^n`4M'L(pڪ:5naӿ;졃19ol&B $‘N<Ĭo@kƶ =Zemb\7ٰaᙏ>?Oχ`68 r$ʉ`zg,QVi  slءbFm iqO=8bkDFv#)1?%9Md*4 d65YwYg1;"Ĺ.  2)?|'{#_ L׷[wc8'/ŗ9tO"%1Ƹ E3.Gې@3j'ϣX}A(@ e,z0=H. Ąqlp{uHN^t*oLF L/BEo@w7"p2*L+7@f1߉` 6mؔKr\59UsQs1/r126)q Lvĕ`X8rxE:n[wz|+^n)aOUr1O߫˅m)_V?Lf:`}$ DŽ)|y@yp P +r-g&qQSw50Ϥ L~tvz43 ;u55 քA082ԞJ|,Wcc'U(^ [ fhMոawqY%q ̤ȺTyԆ媋+ĥ60]&Vأ6,7]&zI\j3Fve*r=j2wq7(KdhChXFH0Z#h$4Ek 5bA#h\ڢF5vbA#hXFX0Z#h 4Ek5riF0.a~[zخVd?7lZ$ZKv@+O9,ʸ]e +Oe(=Tƕ=tW͊DeXyDGa}2,?ZK-åGpiU"\ZhWZǧK-¥Gpi5*\Zh,?EA]bݧAm3L/ U\"|L "j&@V Q^ȷ۔/F8={0X|^:Ck?x?bi'Uvy 2 w v/Qj<) `s㄀p0q f܁m/OŨ!sB"O)(&* hw" meApF7x{ TV'n;&S&T=H璌66P r[/s 1t5?]djuxuDa,Q&`\Lٌf.'fD[\ 5WN2n[d4&l BA|BϹ?Tl9#TWarDE7cv;Qa2~e4Eq },&ZD]ףWtj(,ӐD/>.9Ih, Qc_NY_DZqFfhv0,$+*--SrI!PeIB$&y D 5[ wVNՖd)qq"Ӛ|5: $ztX] )` 6?O:L`kNMPBjA^KZȴ%}͙20SrM1Wge'D2/lMU]ʺ!7f)2+}aL):&KLv@O=6"eiLQEF/|]_Ɉ 6&9˖'akt0NYFdx1 ECvw( _]l9qj+.Vԏ#@v겞.΃~п:PKV}*,!PKaF styles.xml]ݒSP>T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:52:49.65Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaFeSeThumbnails/thumbnail.pngPKaF6|t content.xmlPKaFV}*,! R settings.xmlPKaF Ɇ styles.xmlPKaFh manifest.rdfPKaFbk8meta.xmlPKaFjҠ">&#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/hiddenTextByStyle.odt0000644000000000000000000002505612645626062021626 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF@}Thumbnails/thumbnail.pngPNG  IHDRzA_IDATx! @+? q`b{f\|PAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPAPfZ<>IENDB`PKaF content.xmln6} Czd#8~h] @o ZlGn}C}>IIQD5VdW 9p@wo`%Kñzw?3w u$t)߁&lf6" b ]k^{Ɵqe8Wu'`U}8E`_Yڊ}ZS mil8آvf]pl6Pnlr6TOC"`ʩv[݀rmƧx^uc/)a2dX QPu/i{*7Bac*?4 U: ;'zYϚ#a3wϚYiP4a„;YYD3c.Ó8&"rL$!tjG0Wo(m\~ljkd<#n 1 zg ou40XiqDe_$kǃ>ŘgD~Fns(OlsݺR|']кODkD>< ,f%Gccu(?̟vȚNqI<2c4fF6fN].GcXn&dR.c#ZY=.GcXf}lcS֩y_RnqM.GcXa؍5\%F5nbA+hXFZ0Z#h!ZEk5rF0Ek5VbAkhXFR0Z#h)ʥ+T#PaxQ#96Cd}3cl41 k,ƕ"堷j*zq6">PW[\ +a)= tڸtj\ H-5ڸ4j\ P-WMc|!\Z,t ?:K¥NGpi[hC?,t?:KåGpiS!\ZvAPg-$TYHa-Lj@3)T%C^ػe(׭"{"߫ʳoEy{_Z]lh1HS` Mg\f>|J6iŠ&hbrvv3SY .ȘY.ŇsTEѨf*V"* djwԽ㷮 7[ۜ?ۭ]{aj5hkiM06#fkկڇ)[;MMTߧ|n^oԎ8B/DLAo)" `kq:zpC'}Ƅ>X|%fIڪ85ju{VQ^ />/?/uO|\$ZvJgBG{R$m43'bλv*{H®G[T7 DSh!U!K;RfؔicLU|9URId _C'C؄Q&eH'7#lCy-F }0}OA94PN(F+Xh+ :L| =6|SULhS"AK2`B)-:o5`m%SGcE~U%n?.nv,Pe4] i¯qbV0A~j! ˱+ƶ*}iUލbfd١`D(OP9GAvZA3K@uƅPl'(j ߌ SDaVo^].B"v @8tr^*^izenv"KpOCND'\V<$\p,D)Vď |8ef}iRڡvd!'XQil\K ~¯K 4:$61̳EXRg`1 _NhBpbllt =$K֤ f!$#s`HeHKA|a"HS_sj߽zW BZкE-(k0IĖ[mt=+<%r|`ChU 1cMᕡ\'vcMTչ0QVvXbRL遴.-L[4d{^`">* 4Ԇe`so␃lyƼ&Jㄎo_eK@ Zj@)I;f6h%᫋-89Pmڊ1Ȏ@]EPyϯOֿPK+#T$+!PKaF styles.xml]͒)TrmrDRHxJVO "!1I3gɣI4,Nz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PKaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:08:10.12Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF@}eThumbnails/thumbnail.pngPKaF6qgo 3content.xmlPKaF+#T$+! E settings.xmlPKaF֡e  styles.xmlPKaFh manifest.rdfPKaF9# meta.xmlPKaFjҠ">C$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/expressionUnevaluated.odt0000644000000000000000000002511512645626062022603 0ustar rootrootPK,aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK,aFConfigurations2/floater/PK,aF'Configurations2/accelerator/current.xmlPKPK,aFConfigurations2/images/Bitmaps/PK,aFConfigurations2/progressbar/PK,aFConfigurations2/menubar/PK,aFConfigurations2/popupmenu/PK,aFConfigurations2/statusbar/PK,aFConfigurations2/toolbar/PK,aFConfigurations2/toolpanel/PK,aF]²Thumbnails/thumbnail.pngPNG  IHDRzAyIDATx1 @ _VZ703j13ܚ>(胢>(胢>(胢>(胢>(}f<]ؿx>e}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P3: mIENDB`PK aFS/Eq content.xmln6} Cz)$YFY $CvD)D)Qؾ){=$%EIKsI"r39?MD8ŮXCcc$]͹[KyYcaz,@z|{]#K%Ce"̗[ǥײnc.{n\x#:+=_97{)ZwuVrQ \(Ad$5H^bih;{.R[)VX]FX)zJqpyi@/Ta6,{#7ޗwww}#$43p i5[*/%Iij?cJU9;'~Y[)8{^,:hα66Z0uweơypv䴱Ib.P[T8ө℥Z{jܞDD-MiDƶ<ܫaaF%-7 N j#&7K5o ڻhdܕ/i]5dæ=nuY(uID1vъ#C:O =d#cz q,P!& mJб$S-"?P…n_SǨPY63WX tj'Џ@]ni4(/ly%T9HDoD3"E+-sslb1`5͕DRcԂG9}T2qIYŗ9fi4$C2e۶=dZ?eY }u.gfjafdM't)<&rnzlLWl̮Mɤy)]&55ӥ8,k,cSƙEM55Kq6Y5ֱFU `#`#F0`#F0׸#F0`#F0`ds3{r1YkXF%-krU_-GF yBo (Co& Co ňDof 9Eon@ыbA 2r-@b%WGWO1?????tOq=~h Hf OB"Eexd5 /(:VV*b{w׆l.A4æ&22$ !LΫ|bp[cQP5Y&(Y^(͸H.UүCyFyoa.APK,aF*$+! settings.xmlZs8~"IRZ \߄`5#lȥ`z[OL,iW߷+2'/4Gy흟ս\ίIs+x4iN5CS -_{Mdd1 ,k̔_k/2&ijl ռvh4jfjr燪gU|3z희74^kc[Wk)7[ۜ?ۭ]{aj5hkiM06#fk]\v%.3S$^NMT|nQ?#)19`(IeT ɶ…; a`1KN a ᮭ+[CiVYnmUEl}Q<^$P?6.SI&΄fRh gxB,BUlHcke+K]tY`Pqizz aWч#v^-^U")4*fåT) 3l41* jHDyjKX2!e)6avkl_|QCe4 DxSPM4TJѤJEiʂ1aG=ՆV}7)m*]$sIFL(EꭗL֚.\2:< q4QwQQ&`\Lٌf.'fD{Ajl'Ze9(hMF٘ @)sTl œX0.`;GQ[P`fln'8L# :}c&(tdA?˕6zTJӓ.s\B E]~ru؜%=څ2G}!i #`!Jr ~^)7{H ?̗MǶ# 9?IĊJ e\RH~YR!a-¸:CvBod{e9$YJ@'&5_M0c IsNz &KC1uIC!(s?X[q,KxYh3cm S^Щ,$mo, BWߟ4f3،$^ |>dbNeϸ\g}L;K (<0 8n=TUkx^iTQ6sޑޑ+(]k0 ?Si qж/[Q{QirnYR peõMs<KܛFM8؝FvNq|8 LTptږ'G$N,(Ў]: |{Q`]Ůdጆj`Ƴ7TOCqSv;9p'}xi??p|,?l.X_фD<{{SQRdqJ3V8ı&l$9b)j^戼~F K9\IЃ%+g ^Nh.Iqpsvp|C}y!F%<-CZ(Z{N_Q >d#K򸁧R!!1]|5rƀۧ99SX XHDȁeX sB>egt|>+D*<6^6xbD~"BbT'+(>:<ΊhDl#H:l!ߧb^bni)OF Rj@at{ j)sR4R #(e|0 ˙i Çb8!:oP%mӀE\0o\о%Eo|մXP^͂~ΊBFCwz#]0w+ޢ,tҌ7Hf 6HaH[X5'V-U@$jk)-v%G:Y߅)֍3_ٺuqРɼ;{)ʒu|, 6.HL]l0E 5c;6buOjN;ƑNt_FPrܖrQA$޴?0r%76JH]Uf~ݩu((*;[>_4{X{-;'17d /7h 'RȓZs+T?G; L>C k~%h0S6vT;&V9G,~Ex`1z\xʼneI40 DAnJA);M,*е[V zEk?B}E=^#'<#_Zs谶.ZNi4ϰd]u5;&J;`oEmA|WoLD"r)AV˖6.K@A$ vPꆭz|z=D=ŋ$yi+/SٙϫW#reFUF;;KqgÊє2$]3ǫS%3c5a#ln{AmH&I+|_IkZ")BYE'=.l [{B;?=_M|OkRB֫%צ\⠼JSlb)&Z=So7ݟqg ir׍TJX|c3vtu$,5%ȑax.}yh)ʶ cy! $;|14:R%nL܋?-$ro2{^%y> :i҇ ~[kB>gy{^=nEVdWv2̚D{J} .YBJԚxG#ǪFn۴kTx䀘M[Xjul|0 NY*g~AOD0B=(#kH&Fl@b E2зTX%}CHR;郭IJJ 7N(4Puli4m LAiRѴ \ӣӴ=( ̞\Sk\Rj愓kzrcNgM9~)Ms^eJEӂprMOoLLʔ9䚞ݘ'0-jz%HoLӹN%hN8-T=cz(S*cT]%gm,+uI͙HYrkRy e ˠ$[.-=$Pu hc֠\"uNFw=GgU;\E aa*^e۫pf7FizL:j<0͎9\;\%\=k|^Ϣ;VIwךkIe+eY>uY H7 \]l\t%eiU3C*H#T㫅j4@XV\t55L58>v9yjH#\W `YUNH#\ӫk6i#XB"`ͮ, "-ˡB"pͯ14P\vm/hjFuud44 7,GFNqKYOp%).0=H^)wj~nrѳA7CXb5`K!%X` ֽRte;$`;5>7X2H ִ#Xsu/aԯFIoX*h ٛ{a&`&`OJn+X&@@nQ6&Y[ݧUoŒX?5`I!|P.Dbh?qn \_dY>^-0_͕*p"ko@rEw}ƀ k fNl@W,n ЩkS-V7} ,/qj" hJʭ:2P-\m_5@E.Bt<M;yD5"zKb8$\z,Ftn`|-RhȘre"+e#N, WdBam%NLdEX\׀⦞ P\$86D*xj-Tb̊EIL/=]KSAPv[QuSY.,`"y#)Pi^8`:azN~ \'G Cxw HVJTJLN%*B#"`a(05 G^Շ5>v9 Oml8F\AB/Cʼn.́iN\O 0̜SKKAK$* y9[͔.V)&nt37ž=u| .9!Ր#_)Y JCe3*kł*PK֡e PK,aFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:17:24.40Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK,aFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK,aF^2 ''mimetypePK,aFMConfigurations2/floater/PK,aF'Configurations2/accelerator/current.xmlPK,aFConfigurations2/images/Bitmaps/PK,aFConfigurations2/progressbar/PK,aFQConfigurations2/menubar/PK,aFConfigurations2/popupmenu/PK,aFConfigurations2/statusbar/PK,aFConfigurations2/toolbar/PK,aF-Configurations2/toolpanel/PK,aF]²eThumbnails/thumbnail.pngPK aFS/Eq  Mcontent.xmlPK,aF*$+! d settings.xmlPK,aF֡e  styles.xmlPK,aFh manifest.rdfPK,aFw.B meta.xmlPK,aFjҠ">b$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/horizontalRule.odt0000644000000000000000000002362212645626062021230 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaFhThumbnails/thumbnail.pngPNG  IHDRzAvIDATx1 @EA=gOE\_kmp`>(胢>(胢>(胢>(胢>(Wsc+}m}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P~~ {E[IENDB`PKaF content.xmlVM0WDԛ1TR`UZ JUNm@}1 K P<<όǞ=s6\y< IR.7?,TqʒT2g"$:K-E 7$93*lXINX~؃M!۲Kv3.Y\CvI՗찐Ԑ(S b/= UU @ MS\[[5* <p͙%}9l(Iީ!mzwnӑ%woN坤!7'vQxg@7:M/BAчvUo~6.g9%-/n'DF@As" ؾ.NjMkp2BJf1]1WDnLsqh,1 {rsTijLkQEd V @Z̷e[ 78S:2zTVc/ 7艋,j]=#zJ%=MNb?D R/ b-6^9۪Gkz6Gv0V;Oa-/[%*uޛ= ajQPj {7Vg΃Sj =hd5{dPx3);/,"|O#3X#xrOZ4>NΝړ 3Ldi:Q #57;FV[{hJpf4|WN#NlbL9]@FcCDv:4XbU1CZᰋT_aZ:fҳJkH)!y;(I;>1s 5Pm TUg:3icՀ:T݀|/SYg@V*1{==>~%5ǘVwb f1v߶gQECj!tbtfR.y"Wgh3,0/Ø.#"=YSՊR^FUg.I #j=-"^ xlB e>W2?4D4-4")/5 `wMc] 0UQ QAA!['ރPyzf28f5Q|/@gEi2kHłsR{,Lk9;GrS^tz.Tl Ųo0D;xr; R@tn:wjjjAsŐX×6^:eM<-{zK_,PK8D'PKaF styles.xml]ݎۺS Z-Z46mIErh#~\Yh}IQeRkH`f2 zO8N|>VhpW/iN>=Y.}=ff@8Lhdq8'(y68D8Bs{κ-LYSq,K9m*LydѢyόYbm*Ly4~NsILl"Q<~ۣNh>lv'j`fv (`Y2@npC ǍMRtjjO+i5cއw5wɲ5L_xӴ/ʻg*7ܲ޾? 󦔫mHKIy\lz y@=N ,#X6~cP/3 n BD<# E+tYqK%[?IuGAceO]'#]\Co(Lz>,X1?$QrBwI71[>gb^,wBs>U7lF1LYZM,BBbF.d<51܍SXLXHDȅe\sBeOt|!+dZX:s{0M1Z !B1b IDYJh gEAF6El:|!6࿏Fb?4 <1H1FHx$J]q&K0!]ؒqqԲZAǙ\i ),oo8йBiT \0W.h?ւ"?k4Ե_Y>}5JsZ+o:l8D4y؊cob -B7͸B0K7C G2=2Xel,C~%VYq+C[k~%qӀl; `>"~Ex`1jze|Bxʼn*bi`;aph|qSQV cd'3]Ğoʖza<y7ҿm]N0aaC5]JZI+)oY`<bɒW)uvlQeGOcf73.8k' 3z~ϜbTŸslL'\$1 X,҇*\7k\ [왋?haHV?Ƀ\>+?LaA(!UN:{6)K[Lٳ ңYڞh ]*vfg7cfv%bhN8Yz2j,]R*愳[Sak^eʞ얞tTʔ9얞vҎ:MK$Y<\R*愳[vԣp^eʞSd3]Gβ)2dmRyѢz e Qљd˥j8–zpwl;K4T9ZGu*vjq`9&SIlUWl0M0%PLbPMP P\ 5ldY;V+}h9ZmYD󽿲,b,rwR"#dkO(0Uxpfe \\+!pn.K \TAj,T=V'ãjH-\5O4q,r9TCjzY6Cet 5Y.?R%.R f iR9TH\u]5-M*"] 4,`QWGF}KyXydt/)r {IDZjJ.H^)jvirѳ2`Uߋ!o,`K!%XӖ`M/ ֽR~B5n ` %X`M. ֽ"tQR@ 7}m:S۹/th WX: ~k'_)7H'@@:(\kαcs5ˡ{5@st郻@^'2X׉>.Dngr8:j +/06]h?Y`th1)aiT2D@rCyc@J53'\7+]t{TQ-Ml^%N-Bm^ITE5:P.r݀t q4iBMTBtIWYm3fIHJ?7p !Hc21mFCO7@_=A!.GUk.QY'WRZzDNC7;|;VNok |{Gt%ڔ54Iv)v*(ڤpjFX6ٳD;ü 0`j؇j1S9ؽ@&տξߘ_7dA\F.C#bZӲq0sOyBQ-M*8x{ *@(/~7dSLjl}3wi9aBG[H5_:,y̒J_Q/EFPKy7M MPKaF manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T20:40:11.46Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaFheThumbnails/thumbnail.pngPKaF]!y* Jcontent.xmlPKaF8D' settings.xmlPKaFy7M M styles.xmlPKaFh Hmanifest.rdfPKaFnWnmeta.xmlPKaFjҠ">!META-INF/manifest.xmlPKp #pandoc-1.16.0.2~dfsg/tests/odt/odt/simpleTable.odt0000644000000000000000000002472112645626062020451 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolpanel/PKaF~YooThumbnails/thumbnail.pngPNG  IHDRzA6IDATxnP@ALlVHf > Ə8>^>(胢>(胢>(胢>(lp8}<_}ѦM/uy'N5_gccne.fZ~2A afCpqhս]ly!8Xɲ"X~3n]?ΎG/<>S_v|(w<m~x9燯n,7} `>3]&u /v<[™?ƀAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P>A݊IENDB`PK@F. ˁ content.xmlo6+ a$˿)$ۀn-1JH:o+;_2RdʑIfx=19ocں\Lk;-,"b|;r\`9 $b2ƉtCHKy'bbzΒ'XLd8a)N m=2-Bic^6uֶ_4k>sfl{G:k[T}Κ: Ιz"I$mJN|Zy㱟]4BS'~~acƧm퐒e<üqjDTwqؑƵWFFoMF~\_mjMҶTX2T`hnekDbn{CD2,K |e;]eDt"9W7-Ƙ_ w/m%n|A+?A]GmѡknKaxTP"W2ƠzbozpOLnW{c>>uڟ{mL?UNWĚђz;u2\ܮHi#{P]^nv@ki9pΔEՠcš> %{},JP۩H :uܶ7sř{V=i(sLqv* ;^wǩ>jzUXZ>줅P 3S+8}(zWarj  ^{tǩ>Z(8 Jh\NvR(aqj6lѶ^l`;vl`;vŲ.`;vl`;vl/c;O_2vr>'Sdz4@2$>Fu퀮g΁U ʞ5:VzXeYcugΗUvʞ5u:Vz,XeǠYcu%T 9q+[ڣUp+V[n p+V[n p3VV[n p+V[n p+VN<,h葪#KTokRvRR`7/L5HRHtB+IyҨKTa8`}3`[}/{TMF>;8{dY8HHC.蜭*2~=ˈ.+שW%Sf[Ȑ>ܢ2%22-OuZ߽P׌Vx#T,m*յ^UyYdy=NQ6ͤX_PKaF _~$,! settings.xmlZs8~"wJa:H37a/XHrV6R0=b'&+ەrygPν3\.i s@+ Ach>Rk/ULsݒ,2A e׳[JptE$z}\[jQo\^^ֳ/U~ _f2ezw+4㷯6 7[ۜm>ۭ]{ab5hk~|_bmG:.>K8^ƁGHnCi_DnR4 DCH݈3DLzmR(/; 0CLbԸ aᾭ+[CiYlUEm4{(bdOj>PydRL`zP}8ItPOxJv,Bu SEr77J >Uv*{Y{ž%v^5 Ub94*fBT) 3l4 * GHDyj +X2ٯSl(' 21rv:F >h>ghP'F,]c& >nT>_ҏDwLLt{r /$mb0^P0.{[k}ᒩQQXDCFr[= Ts3 svHK# q|HBfrly^e@8-ʴsQlѬ1;,S =(N+sF` ¸rDEmAᛉaj0?2Q҅>_\f.-BWXS+M_nDq 5~uiIa Hk 4@(ځ {gLl."-8#3_J4Y;tJr~5ʖ)u '(@cCz:Tآ!r/.KBk+#Pvꪞ.ރ~п:PK _~$,!PKaF Ɇ styles.xml]ݒSP>T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:45:24.40Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/menubar/PKaFMConfigurations2/progressbar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/toolbar/PKaFConfigurations2/statusbar/PKaF-Configurations2/toolpanel/PKaF~YooeThumbnails/thumbnail.pngPK@F. ˁ  content.xmlPKaF _~$,!  settings.xmlPKaF Ɇ vstyles.xmlPKaFh manifest.rdfPKaFM<meta.xmlPKaFjҠ">#META-INF/manifest.xmlPKpK%pandoc-1.16.0.2~dfsg/tests/odt/odt/paragraph.odt0000644000000000000000000002053212645626062020151 0ustar rootrootPKnaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKnaF'Configurations2/accelerator/current.xmlPKPKnaFConfigurations2/images/Bitmaps/PKnaFConfigurations2/floater/PKnaFConfigurations2/progressbar/PKnaFConfigurations2/menubar/PKnaFConfigurations2/popupmenu/PKnaFConfigurations2/statusbar/PKnaFConfigurations2/toolbar/PKnaFConfigurations2/toolpanel/PKnaFQ))Thumbnails/thumbnail.pngPNG  IHDRzAIDATxj@@l "lazjFcm,M}PAE}PAE}PAE}PAJcll=o\4a[(crJd7B"˺;U7Yt:k%g?M?xA|n4kxv(2ܾ"=<2q8p(fe>Q.*+>[ S>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢;IENDB`PKF岑 content.xmlVo ~_ayd/I5m4yj+00qߏC8jkfɎ(M_C\/?RE$55&C7l`]⹀Úܠ\H;Vs+hs` ٛd=XڢB%5 a^Kh?YWiehv'B`X, '< #@q4N9lo-QK |U+G+bWUPֆwǷwcn M5Г`cUgB /Sup@} |G*UU8 YXDFvN]!ak<U'0 (SekN?EP/L1~`n*ST́=e;JgzRºSc!{Iu; !-yZ<2h'V~PV@D2Le r]ty 4M 5eΒoѭ'KLw$nj_T[!*jx[>FHj>;hS7B?5bzZ]tChFf HS` M'\f1|eJ6i%&lb rvv3WV|Y.oؘYfFQGSCS>;TU1*D|Udɕ^֋&ߘk>~zqڍG*/Vv}w+`cLY4¥Zm K8#{޸:8_❛>?o>q>  DLz-2(+ 1}ҧLָ`ѶvWB-x7ت6"k8.il+w_5.>{ꢬP'*O\j) JDLeY9?1I q8cKL"Kf6/my.T(i@Qw||*W@{Z|3D Svy 0 w Qj<)es{㈀h3QB fځMNŨs²"zȒ (&()ps" mdAIda[|@-ӆO=7=m*]$3IFL)EꭗL֚_djyxtDi,J~Q&`\L锠.f:Dgӈ[^A?3UN2n4&l !FA|Bυ?vTl#TGarDE7#f;Qar~e4Eq }8- '!LWXR+MW & ?4$Kǵ o#h "b@&nW~/%ڏm% 9?MŒJ e\PH~^P!a-¸:CBo{e$YJC '"_1gp@$[_`"˗,ID }){uL;PלA&C9-ڄ3V{VE?.xkK,$2$IT˼rc+C[+!FsaL Xj2O~꾴.-L[4{^`b>k 4̆ҀNFL7q8 c^%$WV!aJ{Lܦ ݕ$|u7V ]o}U=]OthPKvU(+!PKnaF;) styles.xmlZK6W*-˻]-E$!%bCIIQeVq< `-1JhBʔgVY2(Eyh1ʕq)8Y,-_U f4&hc2NIx X4RY+"FC>nFgv3Mc1:7 axo|| &{ u 4TiZn_s޺lwml=I==ɞb"%1p i긅X :@:rUTǺYdwnb(5HtdsElInzkF4Ԝu΃BS}-D} D g`e|1hA[G[UB]0K7`>!]"BYÔ̮T"z%3Nrn;NcM@vgqkF?)0-ޅ1U{,/ /Ft Ip%u0|3#DH.s}6?B eXdǰOWM 8xP w(JKg Ylr*V`K @V{;7 _q!zo2oHcxKx1%\+C.L{w"2C8wЖpqUA}3݆O9^!ǿH8kל+ Eؾ:n1>A'(=/c Dsa!)!iA^#y23x#`jbѽit(64ZnIok{W栓]çHSPv4?ñm4Ih9\bz?8fPs*ߪ ܨw)qhkr~0HR9u`:#kdxZ?Xpo- M;.V]~ޠ3ѡpI3uwi Zk5^z SPK;)PKnaFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:27:28.53Martin LinnemannPT1M17S1OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKnaFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKnaF^2 ''mimetypePKnaF'MConfigurations2/accelerator/current.xmlPKnaFConfigurations2/images/Bitmaps/PKnaFConfigurations2/floater/PKnaFConfigurations2/progressbar/PKnaFQConfigurations2/menubar/PKnaFConfigurations2/popupmenu/PKnaFConfigurations2/statusbar/PKnaFConfigurations2/toolbar/PKnaF-Configurations2/toolpanel/PKnaFQ))eThumbnails/thumbnail.pngPKF岑  content.xmlPKnaFvU(+! settings.xmlPKnaF;) Fstyles.xmlPKnaFh manifest.rdfPKnaF8Mmeta.xmlPKnaFjҠ">oMETA-INF/manifest.xmlPKppandoc-1.16.0.2~dfsg/tests/odt/odt/referenceAllInOne.odt0000644000000000000000000002517612645626062021535 0ustar rootrootPKhuF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKhuFConfigurations2/floater/PKhuF'Configurations2/accelerator/current.xmlPKPKhuFConfigurations2/images/Bitmaps/PKhuFConfigurations2/progressbar/PKhuFConfigurations2/menubar/PKhuFConfigurations2/popupmenu/PKhuFConfigurations2/statusbar/PKhuFConfigurations2/toolbar/PKhuFConfigurations2/toolpanel/PKhuFwThumbnails/thumbnail.pngPNG  IHDRzA]IDATxj@@ 9DfmkVᜇFӀL`_NM}PAE}PAE}PAE}PAgn#jU]vu[ɲ3ǧ׉ǫåsz[3.>Sʑ>Nb:qiGXSX*$ri_Sl5~׏זan@ uaپl?}zL~ΟΫorPA=}$ǁgZKcHM;|z^ ,?!Fuu~c[O<8vfq\KV/o0; 5~ޛ_:O)胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(DOLIENDB`PKhuF content.xmlZ]6}@TSMH7ZZi]u9$Lmwl0Yҭi sfsb!sAX2}g[8 YDWgbV+im,v"ufoy2eH1MPTSİUTVȮd=e\eGZXWAPgŠq$eq$y)ө{w?p_{~ .rQQaU0l%ꚟVSJΥA*v[& ޹74TA]ATHnZ4x/`/e/k,=)UIyg*Bv@u^oe"|ωļ/CDâ,n*|ީ6-_B^f."ju[1*cC!QRV+Zw:8NEaV&/rȘwe55F(3sv?!4h\9%6>DU#8AstZag3+=77iW,PTR,[ٵcfdo[0) $&h,w'l/mpQ1~gDɒJW6g!!'B|ԔY} !*? I7[B7$J.xǟ1>k|m%{ h\y_ʓLGkҍ1zNz!%4sPi;ҷ CneF.10xY{l.bf[]TIԤ>$XX̠mO3%d5 ob=%T^Q`ٕp Eai_Oqb9F]Ngs#& _ɂ–zI+* zk(7kpwG7kxˈ5pgPn&.W)ĿV-͸XwXCw8l2r:rĚ*W-C\].#׃;Rq3]R`r\zUP9,:.?[u*DD$C S#Uuռi'dҺWM^"OIР7 ={a27ݛjq~_ whwqYv P"N?Oxt*JN^2'e^.xC8^aټ#X( 7C7cmk6Q%e<09f^k#ȦKBdVhͪ-ɬ Z;w:ѪH契0sH1_·(PfɸN&PK$l ( PKhuF settings.xml]s8~EכHsIґ &$|ɛq#K>IV6)9=X#{+V2+2PT*r/`Ma4tN/ _ni8$LJd%|Sp,Ya8$ [MIJ7sLR,&I) X*_W.gߕT-&%vV*qdw9+ܮ@֝7'zi7 Yy HƵ¶y?<yTX}QLnKM cm21l޳偸H϶.|Q`Ɠ>@='rsJ0+*h4%x"I{$S3GȜxڮ\0 ؍ omR ­%xE9VTq %Gm:E3˃P[\)~9i]f\戚xceslݜˇb89=o"gg{!Wboyޯ}^wًX`!w b'Xx, ˼\q#bHQ:o]?y],)"JvD;dvR]l$Ύ$P" +æ) ph ly[!\RE*Y S ҸBG`^*"D[ss+`X, ?qoT4S[+!ns?ҹ?*w 8t=x8i Yr%VQYC見q}\ߊ~Wz=Kjuszf^R81{~zcj;6G }#@ՖƔ{_tM&mɨ TQXr-NK~F槺ޞ2  @O\dQTO?=YRST)vc@T/)ª keh5N#i4gsom -xCA~pY?:ŖtQ]ۏfyw>׬ꕮڣ3ZG\cVmNΝ:)3Ldi:Q #0;EV tb gM83'MLO'LvuKKf. #~䱥|pXu";Gpkz,1貘!rEjXmc3YO5M@LC$=ؘ7 B*}j0{M{1j@Pun@HZ`>lf MH+]ELx>gta:L[1~3Wii.߷YT@QDZ(9K9( 1 "̋0&$ e@6T}bkiK!qHˆqOˠWCF/Pj @n' yMM 1GS7ۡBD{buY:׳ϥ4")/`wMcC> 0UQ oQAA!['ޣPEzf2&8fuQ|/@gEi2kHłsRgMvsvݏFhz.Tl Ūo0D;xv\YH!:e7DHV`ema5 _9EzbDCKNR/Mfp:̦\=%/n|V-_PK"[:G'PKhuF styles.xml]ݒSP>T€ `MR٪=8k,ثk6 [EY0.ΒշwSt|WR8nlTecx^jLP7>#9#O]td: DO/}Q=S5& !PP6\{8})%vE[XUF>k&~n*c:ifgi1E cJׁ>(U.cSpF5ptǛ֟z릴V{0/, bnh鴟(\2z9e;A1 s(TH#j>ǾBGI)\>TX}h?^ԅ~F K9=¤kCJŊ E$ꇸKR>e9Z?8?veA!-c|fCĩy@IEHHLѣ1Y!lL8}2Vwb D$B.qsEb ՞2?񹇬4zЙ+ylte3l8N&RB=L8+ ac`ӑ Еm d=L['#) @at f)s$iA#(em}q&da;q +fIudP(4点rAAPxXPW~UgA(͹hMQH`.Z4y`+67( 4 i8,a`)|ːvYӱhwY Jq+d}N羲wafT].k& ,YUXN ?nÏsP~k68M:1T:JP~82S銞hXW!Ş]xJOM'V4%S= ~͉S *F1,1`&رl>'iJ*{-;'1ċ %ǖi7b\iT"r|3G|EeX$z2_ m= KQUwT'&V9}@l$b2҅U&Ej`;ap.K@A$5Q;ۃcKT;lګn?.^4VnB([sTzk9󊇪&~\kV .܀K;KR3 :i>q_m}GWr헨I429%h_߲ Jfl OqL3~eJe˒sf‚&9rGԪnWOfidWVJco:~l)`25ϫ |Oò=Vhʚ-vޕқ T5˗5pq5Y,-\ ra^Rj|PXUWCjrnqyc6qަR w5*K\uU5O5p ,!puZ7 +-ˡB"pn1'4hiB!rݵZ@6uudԷ4 7,GF˞(SEK"RWTpGrHլTKCu/I QbUߋ!o,`K!%XӖ`M/ ֽRte[l {! k|ieIK&^C0%iXad|2~f>^30{0\}Ew ;?; II7 E:pm8ǎ,^-yF_e׉>A"7q Ftp9O5Xr*k`>=o/ZfJX 8il--l^gdM hE69iTKzS8W?oi~Sn@WR3@ryMk&#\7-;BtMZyD581].eKg{/Yҿa#B&ŲL(Ť Martin Linnemann2015-03-01T17:26:12.312015-06-09T16:43:17.49Martin LinnemannPT14M39S4OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKhuFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKhuF^2 ''mimetypePKhuFMConfigurations2/floater/PKhuF'Configurations2/accelerator/current.xmlPKhuFConfigurations2/images/Bitmaps/PKhuFConfigurations2/progressbar/PKhuFQConfigurations2/menubar/PKhuFConfigurations2/popupmenu/PKhuFConfigurations2/statusbar/PKhuFConfigurations2/toolbar/PKhuF-Configurations2/toolpanel/PKhuFweThumbnails/thumbnail.pngPKhuF$l ( 1content.xmlPKhuF"[:G' settings.xmlPKhuF8O styles.xmlPKhuFh 1manifest.rdfPKhuFp meta.xmlPKhuFjҠ">$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/orderedListRoman.odt0000644000000000000000000002457612645626062021475 0ustar rootrootPK„aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK„aFConfigurations2/floater/PK„aF'Configurations2/accelerator/current.xmlPKPK„aFConfigurations2/images/Bitmaps/PK„aFConfigurations2/menubar/PK„aFConfigurations2/progressbar/PK„aFConfigurations2/popupmenu/PK„aFConfigurations2/toolbar/PK„aFConfigurations2/statusbar/PK„aFConfigurations2/toolpanel/PK„aFM5q++Thumbnails/thumbnail.pngPNG  IHDRzAIDATxj@@A FG^0bŸ*W}~~. pi胢>(胢>(胢>(胢>(GuȟO`R?6)ފYŠq98uͺeL|7kw/r?"cyma^(IbKd:1̱U2|<Q1F]VcOX_رȀ>z7ʘ1>^RGF8Q7+RqzA[˖xe\cj؋|w$^\߀ϧL1Z?c=s?'~|P ?>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢o},rIENDB`PK;F[Y content.xml\͎6)ThO,'H[MleH[CORRdj#ٲw;/+7|Ñ'B% 7]F?{Sӯ8F!G4HR"oGz>օ12#>' |.9M!)&z+\lqglz x':+l,Gwʢ1|DZSY$#] }6e+?f~n+\1Ї`z_b(@LdΥ|*]uUKi5`{#FFoĺ-뗻^`IX [+UP65V*}@tzaH@fýప8M&q/UmZ5*oq\yԺ/o5L=DdWHhӱ`J wAZ$+k ](-72їϻEpMmERȐU#x EAӹ{4EWS>{tr\cȋA+4YR}RZ׀\G --aFoɒ} c~-jhg1ݕ[A" + ;yhJ\?DHrZKY"wɏ!oAJ Xm؟ <8ѢZ1Rx7p T>EP՛;YKMP-M+ui [~i9"^Or~T0י\ᰜݸza j]vW_a*>OhwO=]cDL封L ȝȎBBOb!p1XJ<~+S{"LSFR\t<, MT7 e 4*e$7]^w5"2~,*ߨ 7>rgpp218돏P7GaqnGvj`r),]NҒip,ǹsT38FGN${qfpjh$Kv973;I5Wf0AZR8͡v$EXmj;V۱ڎvcXmj;V۱ڎvcXmvV۱ڎvcXmj;V۱ڎvcXmj;Vl!mGeS>XE,xnEE\]c*>yX^/\:١eաSyY^/\3:ٱeSy^t*EN:^u*3E+TڨPYb/I2mԭ7!5|ҒFbbETo Ū!bh&0"+)M/0θ`@V|#l'|~/mX\iUH7p|5͂t6O $`R;4)p7>wLOuj6rۮ0$4PPý'o"!%kZ+cB|ǝ@8Yl1x_B!o:1m/nc0]:&)NadYhԢzVOjA? i~?PK„aF>ӺN)+! settings.xmlZ[s:~?"wMρIRZ ɜ {jdG!Mc=1]i/߷+2g/4Gy]׼3\ίIfD&ywzV/&|b!t"&砷L0鵌Jl+\hI1_YR2%\J :pk(\e㸠CSIV4.SI&΄fIh Ƈ2$mY4"v6/my.]T(h@U||*@H3DN6eS_q#$<5yR, )6avkl_|QCe4 DxSPM4TJѤJEiʂ1 >nT>[ODwLL{v %ml0ʷ^Pc06{[k~撩Q"*Fr[ s3 f3vHK# r|HBfrlqVO8-ʴsQlѬ1;,S =SVP]^h( q{ ߌ SDaVo^].B"wv @8tr^*^izenv"KpOCND'\Vo<$\p,D)Vď |8ef}iRڡVDPLqP%T?@% X" O30/na'Y!j81JW[6:C ĉpOkZ3d9 L0CW$bu2% X>095A@^ {-h]"z5grNmb˭6\aӞя 9 l !|R4Uu*ܘϦP ;1Ŧ\(+S;,1 ?@ڈpX-[/0GEjÿuY~i@'#&ܛ8.[18WV!aJ{LԦ ݕ$|u7 _[Q?ozȞ;CPK>ӺN)+!PK„aF( Q styles.xml]_ϧ|TaPԿݏOQ8xi1G ^=osfOrx'&qnf.M}"=Ip,e{oaڊ3fY:Oy[aʻ'{f̲m[a 6ŗSKbz$JPFcpn"jh!Jd8Ĵlh[PF8GmGy!śh֦A9:@5{\Ǖ4}1;;ek &g ?UFm{ i=M-BʡRlh4}9N%vCWZD*=?R7)V;LqBҼȲ}8ex(ԇ UJVxn>x^i|ȘA7\Eb^HKa^ltgPhNPaO0ȯhAB xD4P(8+4ʶAiTI{ӏd) G 8b@M Ce9^2n?vmbw!4CZ(Y!xfB̤y%BIEHLL>[#lM8ù`)1YJ}Cx!2OM/V4%S=34~]ֱ,R , a lվ yN*NAb6f o^n.;N\QlJkbR˂]CRg$2%?fX[O/ϙGTekQTm+HQЫKz+NlWK݁(H:㱥Q)غ&mJLPj-R%5aL_#'"XhVp ذ.ZN69T>nJuv\5,j z7g"K Zat 9/iҐaWKQݰUkCM^.5rA٫kM,D %g\r6N:fYWxa?qQcd.]]KDM,mK:h}EI$ V:¢҄@ZŴR[c)t%bw]p2"=wb["`EÔ)ņ%˼ UN:{+KȾSZZYZNnq,L5. 5;y33DcR34'n,=4(5Ks-}+K;h^eʞ䖞Lʔ9䖞Ү:MKݳ$y<\Qj愓[ck4Q2eԂSd3]GβZu YsQ,BGPttg2crjadMsԎ4t˹UnfAe 9sGWUaro0UQ;npnP Sup;jbFwBlpopUpuy#6nXqRhIe-UY9uYkBFQT5˗ pq45Zl-\ rfSijrP-gNRG.rՐFܫkbM58oS ijẳ\mtF"]ikzpͬ.]ikv`ِh]ik~pM`?AK eFW ز5 7,GƷQ.gVڥs%p+PͻA5?7TrH9`|!JJ[1 r;[)kٹBl0~M`+X`M ֭ R5`݊ AxW> 7,L@&o twh WXz \k'_)WH/@@z?. رܽsн9_]o:Ϯ[zƨt!rEz\ːAtj k`<W /s%, 4Hn@H H `}moNuj񜶪:)$slٚ)D.5tR-\m_i" hJPXi"ogGeڤAI0bsBp !Ic7`27e!}ǸFT]ů~CoBIe-Gw\Bcǘި:'l$mRࡌ |z<{R85#}5ΰ $ `&y\v57ŀ4 όS9z#KɐDY#{Vu"w5f)OQ=%MUłn]ꎪFOj8Ťы@ه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:38:04.29Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK„aFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK„aF^2 ''mimetypePK„aFMConfigurations2/floater/PK„aF'Configurations2/accelerator/current.xmlPK„aFConfigurations2/images/Bitmaps/PK„aFConfigurations2/menubar/PK„aFMConfigurations2/progressbar/PK„aFConfigurations2/popupmenu/PK„aFConfigurations2/toolbar/PK„aFConfigurations2/statusbar/PK„aF-Configurations2/toolpanel/PK„aFM5q++eThumbnails/thumbnail.pngPK;F[Y  content.xmlPK„aF>ӺN)+!  settings.xmlPK„aF( Q istyles.xmlPK„aFh 0manifest.rdfPK„aFometa.xmlPK„aFjҠ">#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/orderedListMixed.odt0000644000000000000000000002452412645626062021460 0ustar rootrootPK̄aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK̄aFConfigurations2/floater/PK̄aF'Configurations2/accelerator/current.xmlPKPK̄aFConfigurations2/images/Bitmaps/PK̄aFConfigurations2/progressbar/PK̄aFConfigurations2/menubar/PK̄aFConfigurations2/popupmenu/PK̄aFConfigurations2/statusbar/PK̄aFConfigurations2/toolbar/PK̄aFConfigurations2/toolpanel/PK̄aF8 Thumbnails/thumbnail.pngPNG  IHDRzAIDATxakPQ S5z#q+Fo1pi胢>(胢>(胢>(胢>(6ߊxʠv1>?]+ gL>G5(c\O":lXO>bmc>a >F9kOr_ch_NO7WAc=n~,X/ [tyqq9,_)cQN֋8nWu{~s<2.˾1 yd3D^9bqy8kkxV9dynZCsrz•8_¯8~z.0>gekϽ~J9|Hv~=g1֯\\?6==LNSΪ.g|: 蓋8r|~*0RAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAΕ[A IENDB`PKFtUY content.xml\ˎ6+ThW,?fl7N(`& 0 ]@KM"UwvE~IIQd˞IxFOsy)z.-dQ2w^u ir{7q?{1 ,a@"!:Қ݌ 3h Ii53gy,w6ϕMkDWc[se:b`Xʢ1j|DZSY$#] |^eK?N~.+4c8׊Bbq?~@t͔H, \ Ge玸]&\ֹ7r:è;ȴMX`20KRR oSk*Ue7h^T_3$ 3Ý!aUq4MjӪU!xJG W0[e_C @a ; 0q)TD۷KEFry0sq.tہw)dH ˢֽ̰XXg}qʳG-͵XC^ BE0\PϒJkܽd p:rh* ›R7zI71]|0Z0h+1͕[B" +_#;yhJ\HtVBWY"wG ؐw ]-؝ <8ѢZ1Rx7p T"(ro?ki E)``@*rA=,,*U0uWI.\U稭rZ5=,g7.\/2pPK3 /t߇pUy6 s?QHYx.CB1V弌ӹ{q!I[""Ǣ*;PapG#?_Pɩ1~UzaFpdFp .܅ɩ1IZb8 085vjG]XK;I5^rũ9Z"xPéË@ S# -!NP| M\څXnr;۱܎v,cXnr;۱܎v,cXnv۱܎v,cXnr;۱܎v,cXnr;b>nGd{/S=XE,xnEC\.[1 ,g"{б,g"{Lұ^X\Ϝ_:KYN:9u,SY3TPY`ω2m䭪7!5|҂FG<?2HokEl< *{JwK3.PA^ߚ/zw~Qa[sUn"ݜh2 `0oc 䍂Lj{&;{# 'ODIfy=>!%%V52];C ;i+joD T kȏK=w d#HǐiCP|r9OWή5zt 6 p@Jؽo2ݣ}T,jA4?PK̄aF[)+! settings.xmlZ[s:~?"wMρIRZ ɜ {jdG!Mc=1]i/߷+2g/4Gy]׼3\ίIfD&ywzV/&|b!t"&砷L0鵌Jl+\hI1_YR2%\J :pk(\e㸠CeIV4.SI&΄fIh Ƈ2$mY4"v6/my.]T(h@U||*@H3DN6eS_q#$<5yR, )6avkl_|QCe4 DxSPM4TJѤJEiʂ1 >nT>[ODwLL{v %ml0ʷ^Pc06{[k~撩Q"*Fr[ s3 f3vHK# r|HBfrlqVO8-ʴsQlѬ1;,S =SVP]^h( q{ ߌ SDaVo^].B"wv @8tr^*^izenv"KpOCND'\Vo<$\p,D)Vď |8ef}iRڡVDPLqP%T?@% X" O30/na'Y!j81JW[6:C ĉpOkZ3d9 L0CW$bu2% X>095A@^ {-h]"z5grNmb˭6\aӞя 9 l !|R4Uu*ܘϦP ;1Ŧ\(+S;,1 ?@ڈpX-[/0GEjÿuY~i@'#&ܛ8.[18WV!aJ{LԦ ݕ$|u7 _[Q?ozȞ;CPK[)+!PKFUH O styles.xml]ݒpTc0=[$L^o d0@nwU%'ɑ@Cm-sΑ}Ht6$ Ht7FGh}7ݒ*'n#j1t!w]-Jt-N[Ghj/xW o9WV)~M-Z6+~M.̩j"MX#ѠCDJi~2"ڴɥ^kC:KMkdRw)jU]v%NO ~ݘkx4W>w7w⫶[D7Lfg>*ltK0jO]e"@xⷢU'ʼnժ{('۪I= 3J Z۲k&8& Y5OP0;v^ ŤRu~ĄPtnr ˛J 27c/L"r@fÿ~Fp$UA(%CA#_KV2 **$9k$ M$@UP5zlNM ( obBW|L)>ьZ bqఏWhf;I:A& 7.qa60+UĔUD {8`" p"xGo[)|, ),&HcolH|!ڳZ{w ɪiGmf8b/Ba#%Ϡ:B u |L* po F]I)J [3[`0L < N%jT$}Bf8-FaQ) w)I'84A4k!/"Ѡ2x֦d˙aָ}HI֋|r0Ab.6s/y 1+Bq popX!}<0x2E݉Yða"ĕ<38bZEpR;='Mt&YWTk뱖by9Z$2Ŕ- "5HGJ.ݔT^$fĖL#vQ呸a]~`Q┑<1qlPtnYt6D@+D*) V7/|%m…bTV~ ߗaܢ2Ld̖syq}I(e7S[v&3ϗ/(ܣǴa6RRMK.%ʆZ>/ pQAnËB^  !k-(`=e 0=-h-/Wbb%|["km|j lwpGd/̤¸fA.Ϻx'>m 2"5aď5")["Y[2XO h|B|v[k9 MfV[&'Bu&&MռM-S4<#Bqjx$Z]#;pEe?>'$ SenM$If|8fk7q 4k.|K{)YR<U3OY#|0d Dso&4x40 L(TC[BAsxuKGRr>&{F[l(hz,5HQtX>]Xs)W.&C7&@2Kbeq$EXGk8I͇֬HC$%)L'tЊT]JI\Qꑐ@&iS3D%l07G^6m)ady$ږ+VǤ0r1rL7RPK̄aFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:38:25.21Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK̄aFjҠ">META-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK̄aF^2 ''mimetypePK̄aFMConfigurations2/floater/PK̄aF'Configurations2/accelerator/current.xmlPK̄aFConfigurations2/images/Bitmaps/PK̄aFConfigurations2/progressbar/PK̄aFQConfigurations2/menubar/PK̄aFConfigurations2/popupmenu/PK̄aFConfigurations2/statusbar/PK̄aFConfigurations2/toolbar/PK̄aF-Configurations2/toolpanel/PK̄aF8 eThumbnails/thumbnail.pngPKFtUY  content.xmlPK̄aF[)+! settings.xmlPKFUH O  :styles.xmlPK̄aFh manifest.rdfPK̄aFtEmeta.xmlPK̄aFjҠ">i#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/bold.odt0000644000000000000000000002421112645626062017122 0ustar rootrootPKaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKaFConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaFConfigurations2/toolpanel/PKaF3Thumbnails/thumbnail.pngPNG  IHDRzAIDATx P@ф-zoa.Y$\Eu]_p郢>(胢>(胢>(胢>(,ܿpw?W}_͏~xGclq[X籒fnհ?O?:x}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P>3N{IENDB`PKaF content.xmln6} CznE?P@HmAKM"USzcIJ,oDZiKvř! Gt2(YZo vi}YoV_ypSo@"l!hں,(/ _oACHE{G8s6Z(|bʑs6gX6Xʤf7lc{Ceփ.NߗNp9ʶ`>5ݰ{#/s!j1PS-}tjOötEv/wgc vLf4F?.k)߫Ty oS{g)VU>vGdwYw`/8 &AiZ* `js©{v0g\2; 41 S{ۉweM\s]vF<_^aFNi"SƷO!dH ˤ"k1<*yn: {:VoKI,IŇ{ՌldaPUB |iafyDuƼi?p7czlTlVfqy)oQ#dJX?D|9Ҳt4-`[DF\@޲> XZeޟTCj3h0Z0Cg2% ˸ml n*$60.63TEԆe66v% MϪq#j2b87% ̼l*r#j2wM2Z2s`h4 hb4Ƃ1A`FP,F#h$4K[4FN,F#h$4 h b41AC`FT.mƅ5#7DW85 :--'; ZKv@+O9,ʸ]e +Oe(O=Tƕ=tW͊DeXyDGa}2?8G5^4j>١oU!"L^]V&ߘvXuRPTln#Wy So=b)piV-p=bxd]r덏'+YszV/'||13 &ZFePNGW5aO$,pm[| ZfnUmEײq\Vk4.=IV6.'O\S::ܛzFc0ٗydGL$i3bTP-13,ټ^r˿OvРڽFIt%v[T7C!B~Rf؄i#T|URI/GEؘQ&R^ˀNn`؄ɷ5`NXAC_DY2D:4{Tv`,0Iv`1ltheGU~&c2cMEܳ|&h#) pz5mߗm.Z;Q(;_`<.8زip.gtJIs~NRtA"3i^-۪Vvx7suQ6f >up B;* ‚X 0 rDE7#f;q0p7Fi/J|!p[N&C:DץWtALq 5~uiIa3XwekG 4@ E(ҁ{/'Lܬ!-8#3_J4y;Jr~%ʖ)u ;(@cCk<[q!u-l;+Z 'FjF H8$NiEZ+c^ I T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:52:11.03Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKaF^2 ''mimetypePKaFMConfigurations2/floater/PKaF'Configurations2/accelerator/current.xmlPKaFConfigurations2/images/Bitmaps/PKaFConfigurations2/progressbar/PKaFQConfigurations2/menubar/PKaFConfigurations2/popupmenu/PKaFConfigurations2/statusbar/PKaFConfigurations2/toolbar/PKaF-Configurations2/toolpanel/PKaF3eThumbnails/thumbnail.pngPKaF»B1p content.xmlPKaF6:=(+! settings.xmlPKaF Ɇ .styles.xmlPKaFh >manifest.rdfPKaFfQV}meta.xmlPKaFjҠ">"META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/footnote.odt0000644000000000000000000002513312645626062020043 0ustar rootrootPKPaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKPaFConfigurations2/floater/PKPaF'Configurations2/accelerator/current.xmlPKPKPaFConfigurations2/images/Bitmaps/PKPaFConfigurations2/progressbar/PKPaFConfigurations2/menubar/PKPaFConfigurations2/popupmenu/PKPaFConfigurations2/statusbar/PKPaFConfigurations2/toolbar/PKPaFConfigurations2/toolpanel/PKPaFKThumbnails/thumbnail.pngPNG  IHDRzAIDATxъP@ф "ZF{ܤAyoOKE}PAE}PAE}PAE}PAy{4-Q[8Ǹ߯g bd(胢>(胢>(胢>(sѧ˿IENDB`PKPaF content.xmln6} Cz|k/ lC@o Zmb)R8){=$"'-%]X 9߈7o:ő -3y'l>ܼ/˯xxso`&m3 \.] " X̥7!f;ym :?Wj! ΥlRE$Lmg*}ᎇésH̽^q% F.XViV*aXCz=6aB"HA(]̍p#%f]}Z, hzSMą[n<ztcp ]&w!Z @@Ҡ8x8yZLovW?1G|4FL >0g\7([q<{!qܥuݲLNrx6ώ 7{(+ R^A]!I89lA=vʻs@-(ߑ` 69<N!.!F-|fa916t:HKr\7usQ>s1?r31Gpǩ%&{⫳yJ,P uaz: >!E6%!IA+'JwBFH%H-Eݤz(Ńs+ZָP(5pܯmrN,:l"!{|Tש|%,5etxzp]а ɹԘ{P~ngPKtvPKPaF settings.xmlZ[s:~?"K$t )- fN߄`5#Yِ!=1]i/߷+2g/4Gy.C.7{g3@3 As }F˥n7^d)Y i&& 7˚og73eƋIbX|@5F%L PPU췪U]o&SVV?V򿽳&ߘ6vuVsڍG*/V &fĬxzvy]r>Lqbxh7.kW|n^oT儏#\ N)&Q)ѓm >3&cs][W2Cx/ڪ6kP.il+w_}~(/u_|_ޫS'ϓLfqh ƅ/eeD'$i;"TaQ05i,3z-v6Rz.]T{o4MOA@` *Pb"˾5XO ^096A@=^ {-h]"z5grNmb˭6\aӞ<%r|`ChU 1cMᕡ\﫭GvcMTչ0QVvXbRL遴.-wL[4d{^a">h e`so␃lyƼ&JㄎogO@B S{f6h%᫋-89PmڊG?TOCeYZPK$,2!PKPaF styles.xml]_8OAmslnRd}_yr>ɵ$˖d!0%BGR[Ryz8N|>%.}Ř~d]waj$>I8|$(q򘺏$¡zYW)k*ΘeҦ”${f̲mSa 6. 1\PWF Spnрˡ5͆M0.Β5wSt|WRYq4(E&Ԙ]o02#9#O]td:Dߧ/}Qޒ؏Os|T(m!-qokٷXbwk]Ze4ೆagꦂ;jv1HY4OP`;UEu{3B>T? SM)Ww"1/$ra7H޽7o:'.Q`{9e{AA~ٯ$PGԼG?}"S!}pd'ɱ.H5H~L 1@rP oK*V ("_P?})cu}hd 92Fw7mD1LY-$JYĠ=>&+䑭'85vO}s0rJBLae0`!F!qcEb; ՞2?񹇬yj=`U<~2hDrňN6'Q~mRB=L8+ ac`ӑ OǶ}Kn ɈA1B QBH?윝`6B*%-Io SXcZv~q&l4w?7C6tP%i"B9̔ dχ&;Ɯ:s҇œ@k}&[@#@bcak?~C6nB0K7C G2<2XE]6c`q8ڕps>d}NX7~ޅEΨ\ ~g0EdUa9!6LJ^݆$@ r68M:1V:JP~82R銞hX!^_xJOM'V4%C=~۫u,Q )Lvlh4gX{-;#17d / hK'R6L1.`W*jT#?$(@{ L>C[k~%qӀl; `#$b2҅U&(lw Rfp7$nTK8y/!Ie.GALycE;Yys23ϪxO}#ғQ8fY3iEhJb6癿oΟmh gUxz]b?ظT.X4gD|8笝tMۖ?Vu#z2K#+d¿Y}ʅyP2e׫4,[ߣO~YE͑(jKp| ^C<)rl /P#zglr7(tWI4ݔZo%% C$6jCSFy^!=̘3@&e6 ''XVdYbϘy!Ey^C/f&f5((e ;+' T=Zi=(--SJ[z1KsBάfw̎=عT g1KO&S JҜpvK?tCR ғYڞCR4'ӎYQiPs$=똙'3 JМpvK[fL=cz(SJSL]&g^4՗I=gŴ)Ku{Y,SrfA.sj hCo.WmuIFw3G먲.U;\T-,a*6ʾtT=7]< \ *x`-wBbpppe#6XqВm":}# H>`ۅk6S/k"W] ktpYZ,uP R f : UWCjrn`yc6q^R 0p55%D*R fHH-Xӛ˂EKrH-\ۅk ZT(D6RhY&1!ѱ^ySx'8.0=\C5kP!Ţgo(ŐWi siiK^)^-69 `[54X2H֤%XKu/a̯FI}X+_W Lm^> W_@ptA N:mR ncNpt(\gαcsk/Ci~wp#Or˯2XDU 8E#a',|kUnz?Y`tb4SҨdLc?= u)Ǎp݀6Xt ЉkS-FWy[p/qj" hJJuP.r݀6t ٤urE}[I"RDoH م`dW-ۑS~sv27|M+RD+< vo, w4>"6&'%WpGQaD=LdHvGu2%e4?tcf0O]N5wG 'TM"$,d2E0*˞ &f]S>eP8ʱƮ*\S-MZ 6yq?cv\\.9C#ִD\n1̜SUA zy66wCB 7;w1vj8ŤVُ Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:58:33.60Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKPaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKPaF^2 ''mimetypePKPaFMConfigurations2/floater/PKPaF'Configurations2/accelerator/current.xmlPKPaFConfigurations2/images/Bitmaps/PKPaFConfigurations2/progressbar/PKPaFQConfigurations2/menubar/PKPaFConfigurations2/popupmenu/PKPaFConfigurations2/statusbar/PKPaFConfigurations2/toolbar/PKPaF-Configurations2/toolpanel/PKPaFKeThumbnails/thumbnail.pngPKPaFtv content.xmlPKPaF$,2! settings.xmlPKPaF} styles.xmlPKPaFh manifest.rdfPKPaF09O meta.xmlPKPaFjҠ">p$META-INF/manifest.xmlPKp%pandoc-1.16.0.2~dfsg/tests/odt/odt/endnote.odt0000644000000000000000000002530612645626062017644 0ustar rootrootPKшaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKшaFConfigurations2/floater/PKшaF'Configurations2/accelerator/current.xmlPKPKшaFConfigurations2/images/Bitmaps/PKшaFConfigurations2/menubar/PKшaFConfigurations2/progressbar/PKшaFConfigurations2/popupmenu/PKшaFConfigurations2/toolbar/PKшaFConfigurations2/statusbar/PKшaFConfigurations2/toolpanel/PKшaF Thumbnails/thumbnail.pngPNG  IHDRzAIDATxA @@фe[}TZi i-#WCWF v?͗]}k7)l&?N-;A"t}19ݽ"˭xlʠȋQT.Ru;m7)JЧr ^E/)Yr'Dm@%KA؎͘L>BrC<47}I-RB}= k?0u9I##3ޓW(=v[r,n4gя2^*Nwj"I-LKIB,Z~cOVkl%9%|DJH?4)Oi%)Ke?1Q"2[7z[fbAӯkF674}GH63UˮMT[t)oUi]cs֧m̵/3"vsJGRa\M&M|VekCX]_ HĊ0=*{G_ >[?~DzL{㮺X 3la 3ǣnGet_v?_z(||[U.7)U*ol7y͵o^?%n 9[}[Hej^Ѻ?6[eB#\Y_/SS$r'Hn~UxogQkzvQ!cЎP0A4*tteK\=K R̒!, ܶUqek(5r?wÍj(zm O#HZPO]+*@̸?R 1{H*EeM;T[]y(5AaaK?5rD@a8`e(a fM?|Qj5EPM4PJJEiȂ61aCs{ .{TZ'n{&S&ZT=Hg62P r^P#0&[k~lqr/(tXDAFr;- 2fO.4s81KG B?5Sc*VyFn2@"ħNA(b; %: Bh8l7(j ߌ S)(íN (;(]yf8i3p$*p.UtlGPCgQd6#ztWvQxH-0@dXR,*pB32DCBOB2A.R_h,tHb-bg0.tУ> ߾bM?[:[pZI p0ć:)JHrNSF8B*=J<5̪tiSa[E=sfUڏѦ0sTx֜Z]E(%Ql~{.47Mo3xwiS{9_{}`YwzN_pC ׫ 㢱E<. (nl oWeW(]0?ca i_*/&Qi nUR um{+ܛZMLR+^-/8]|N8,TrlƖGG4N̛(Ў2]fbTɺ}_ ЭG7?O}dqSn s Ay|Aa-$Rf FM!coXGQxA-gCZ(Z+y(S9SF)Zn%d|kJKU)d )yƭ%w ;e~dBiVMdžKK,(HCPT :c*XQ-cc$[H%E~6C7tV[T'#)LF 3 sv6'Y'2Ty (,Ix ~&;q? h|u`?Oެo8E,Y$ʖ3qIIxi{l}ୡŜ$6s҇B%Gk}*[%@+@cɇޢuk sg%t !Y> Y'5GN-e@<î*9ǺƣO;dzNwndrZ1jr1^!Zl1/}e3%xX5mј3`4fćvltSTƑNl_Ɯn_j– ( P oz?0766򒃥J\Ue ~wg醵/P !T;ty-h ^H\<<`vɾpĊlQZasvmC-<6Vt h Qɇlham<ݏ_33 XmGc4{ė/L"F-]/񚞨8UeNY[-1)X&Mm!&a=tҪANϺhXo_y۫E0gd9nGy+yQn)S?uS ع3zSڌ̹BR-l 3pփ2H kQ;˃}!֫L-Q4.B[sT:൜yBu?`nTp\/JY y ;7^'),GN7}*T?a iHS|ZQF]XxtZ^qB=rHxkSJ, v5MK,Bf?w2 N:|UDaSs[$vW]2H?&cX*YblIq@N&D8tL(blö8))מ,4п |M. KB֩%׺2PAy(XǒO|l9v9gk -麑\^?ert}-4̝7Kő o`Ëzl4e[1:ħ!%[/3 +У#:clhj7(J ݔZx'd hJO#3tR ,=<ҭ0E.|bo!HXY:xUR6l R!W |_5[a4l'Jp67s ɱT zN&}6Դ{UvzsմJ)iZi*zϏᕩy z.(E 5=2M JEӂptM]ݞ=ЧCRҴ$]+Ӵ;ѧCRѴ ]ӓ+HBEϣ镩y<5鹠T-G״c_={χ*jI8De֞J ^ԠښsV[B=Ydcp.Ԫk*7 -ropvP9ips*^5>Abr8LL"W\BTS4TF-'jrJB5v9\\\-=kxZbVQ{k)e' EY=vY He05f ^.\ө|Y9JH-\1 '9UZ ՠ0[!rՐZF װ7689TCjẻXz#wMlwI5X&.7Ё%κ.R br ҿ*%κ.R rz€!J-^,`` z1)Vy)6VQڥS !9TvPMO խR$=3DU+X`N ֭R5i ` !KW("0B^aKV)k|jnEu#l(wÒ }~6 7{u/\? g_@p\ g_@p\ Iu@p\ȕp0\? gh߶|t5~a4u荻D^'Wu*wwХEl]0\#'#=X U8h{~b0Ҩd ņ^7)u+R)m^6@ǦMxՒ^Տss iS7+)hbZ" h̵:P!rހ\`Eȫ j<ˣ,1bfy~'y$wѫ.k)sD"KD#N,QdBikϧޚH .ˬ,{hKPb)sC)w&Ř)ɊӘ]s1I+v5|D?(ԫeUF?nNל V^q1e4z1^qqwv0>nN6gIc]hUT*&qA']_N760Zeňj7n~av[f3p[鬸K8B|.6!Lvv&E'>'ZfOV9s lay QQP\جeᔓZ*wՙ*6ܛ=o .! 吣dT_TǬv*9Eی(cP%PKpf PKшaFh manifest.rdf͓n0 Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:06:33.87Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKшaFRE1META-INF/manifest.xmln @z=Lt@"TߏDJmtad=`;[d/eU}Wۮ6V!P1.T,z, :(-TZʩh_ K4X*jm Of[̩kdmVR8a>%s3b]hLJ:L0a˛Z7na-R` P7D𨹚l@w=&^FKSGw(}7O0sr%(p/3pOH|U?${rٹXBQCzƒw'[FŎ327֖Bu]Okݡ++TN3( jX}JXQ=4w]5خJC6X|||{+ 3zcuaJE4+G٢CRKuv6rWW7Ix:p9WX"@$t+ LQk`iA6TW0;N4hׄL?!MK/L1nM|x;k]ldh<<=wect认L0wEPeY]4A~ ()0IN 7Qtg,טq'E{KN{Rx_fG|ZB%k*L͌9Q3|Ld~}(%pm1p]τ~qD?$7="\*57K4vˣqe $`W*N7CV$/FRL>Q+&Ks[oWj{}җy?/v}]5ڦ4OZ?rzL;oq^)"~C!\GvO[âC8GtJy*$L:fya}*g,f̱΁iZPYAgk6ߗA{I`rGGGk PKDP PKqF settings.xmlr8}"VcJ2%pc$oYJr ۲!0VVnuK}/!Cή O aC\szQrLBT}%aTDt&B"Xc*UUyLrZ=t5#ѐ\Jb1MO_bu q6 ]IIq b2bR鬘 'EcMpr7W yw*iޜ,^]d5$ /_|0i_ĞbB`9%nH~4<} S3ǧ!Ɍڬ\0 1ߍ eR ܦx畋ǺH>W>T)9dXm6;8ŕ6;3 Vla~*̛VPM[%ZŽ0 6P< w8>21 *Y ߚϬa1Kްti8ַV ="JZdn,y; ?o}D]o9t{r3JFE3@P>"/ߕ'^StZ GF+85NG`^v^nНU~ii&Q1e5G/$m PXb/NKFdڞr` @OPԎ7sF+|imq)ݏ`*+mm{P9B)JGl*g"x}}Â= I,.+iY<5z_!e)Zuh{tHtIS#iY $}_sh*hZ6@>:ؘz 5"zwi V* yHxAEgdY7aJrN'ex@dw 2 c$u 1: γ3661SpbL ~&X%6U">'udi0gntj]n1Z?%{j^S-AX h϶]nb(D?~ Q."c_m[XM-tN]7cӆKpY'ܣ)Ǻenɋkw/PK"z'PKqF styles.xml]ݒSP>T€ `MR٪=8k,ثk6 [EY0.ΒշwSt|WR8nlTecx^jLP7>#9#O]td: DO/}Q=S5& !PP6\{8})%vE[XUF>k&~n*c:ifgi1E cJׁ>(U.cSpF5ptǛ֟z릴V{0/, bnh鴟(\2z9e;A1 s(TH#j>ǾBGI)\>TX}h?^ԅ~F K9=¤kCJŊ E$ꇸKR>e9Z?8?veA!-c|fCĩy@IEHHLѣ1Y!lL8}2Vwb D$B.qsEb ՞2?񹇬4zЙ+ylte3l8N&RB=L8+ ac`ӑ Еm d=L['#) @at f)s$iA#(em}q&da;q +fIudP(4点rAAPxXPW~UgA(͹hMQH`.Z4y`+67( 4 i8,a`)|ːvYӱhwY Jq+d}N羲wafT].k& ,YUXN ?nÏsP~k68M:1T:JP~82S銞hXW!Ş]xJOM'V4%S= ~͉S *F1,1`&رl>'iJ*{-;'1ċ %ǖi7b\iT"r|3G|EeX$z2_ m= KQUwT'&V9}@l$b2҅U&Ej`;ap.K@A$5Q;ۃcKT;lګn?.^4VnB([sTzk9󊇪&~\kV .܀K;KR3 :i>qOпey\㡜W)NuKA*ܫWa>:b%f9W~~r򧟪nWOfidWVaEo:Tr~lŹ)`; (_e{Y";9є(mQg[l*Uyu\AcnQC~bC6OZCOJhuyI$YkVxƢN@f}R[au 93[yQӓAj>+?Lɏ;^Hig夁gCK۝ZJK˔=K -=꘥bg~v3;ffk\R*愳[阥'%biN8:ei?ӡLٳ ғYڞӡLXni,iPsEz13Of:;9얶2?L3 b}lHAS/+ !kzGS(S.Օ5(IXpJYodz[R*GXNh @Ze*6. SyhU֥j|}Łt;L&uTٗ;\FTK4T@1A5C%Ö;@!r1fwJZFE w8VNr^)$r۲},b,rwR"#d(0Uxpfe \\+!pn.K \TAj,T=V/ŧG.rՐZkܟhXspp=mtM"W]krpMS \vK\u]͂eEKrH-\ۅk ZP\wm/xM#G]- bB #cѽ<8x'8.0=\R@5kP!eҳ7CXb˹4XRH ִ%XKu//]Y`^y-_{kɥA̯FI}oX+W Lm^> W_@ptA N:mR ncNpt(\gαcs5~ˡ4@st郻@^'W,u*wЅM0\GG s8翰 c؅BOߛFF%Nd6@ $7t :YS0suڼb5@'MxNՒՏn9[_)D敔Lu;P-\m^I" hNG!*DQM($)NL >^A0wod8v+, o1>Cpf8tNrnQu3[ur%G4?tcfȗ3m黦 =w$K}uYC*w0J~) {mR85#ˌYa05ILP5 "F%_go'Fb.Na!Pm1iىٜc9 Martin Linnemann2015-03-01T17:26:12.312015-06-09T16:15:06.50Martin LinnemannPT14M39S4OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKqFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKqF^2 ''mimetypePKqFMConfigurations2/floater/PKqF'Configurations2/accelerator/current.xmlPKqFConfigurations2/images/Bitmaps/PKqFConfigurations2/menubar/PKqFMConfigurations2/progressbar/PKqFConfigurations2/popupmenu/PKqFConfigurations2/toolbar/PKqFConfigurations2/statusbar/PKqF-Configurations2/toolpanel/PKqFNcbeThumbnails/thumbnail.pngPKqFDP lcontent.xmlPKqF"z' ( settings.xmlPKqF<3 e ?styles.xmlPKqFh manifest.rdfPKqFYmeta.xmlPKqFjҠ"> #META-INF/manifest.xmlPKpq$pandoc-1.16.0.2~dfsg/tests/odt/odt/strikeout.odt0000644000000000000000000002452612645626062020244 0ustar rootrootPKÆaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKÆaFConfigurations2/floater/PKÆaF'Configurations2/accelerator/current.xmlPKPKÆaFConfigurations2/images/Bitmaps/PKÆaFConfigurations2/menubar/PKÆaFConfigurations2/progressbar/PKÆaFConfigurations2/popupmenu/PKÆaFConfigurations2/toolbar/PKÆaFConfigurations2/statusbar/PKÆaFConfigurations2/toolpanel/PKÆaFvhThumbnails/thumbnail.pngPNG  IHDRzAIDATxj0@ _vPBc:'`<IE}]p 郢>(胢>(胢>(胢>(cY :j굷qh;8k2NyjdO8<\Ff>3}x<: ⸄}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}P>giӁIENDB`PKÆaF content.xmln6} Ck.8^P@Hn@KM E";yvE}>IEI)FI"|yGpF`qzw}f _>f8{LuFlΑ bP\zsbz/]"%˪-:+[Hj}ū:WH{Q)aFpMf{]hl{.Xu&ܑ3rSKT5>em%*I􀪸]WxU1މ_HnJWP<̅(ڗ=J0uޟsSW?w""q35(i`7rƷjf_%B8]] ߮. ,<ݗG܍K0MWIf C5DDIy[3wѓVY  {nd'Τ&ģ1,a6R2*hF#&Zhc4b1AKXFJ0F#h+hXFJ0F#h%Zh-c4b1A+\LK5OOj?fp&}l[lW+_XNP4Rom%ܸrqԀUVzBm\EzBOq52ԆU2gj*zaE6"E>NQWNS\aոQWS\+a*ո̌ae2Gp3)\F,t?E+lj?aC!XF.t?:e2GhHpKT,=(o1;|Sa΂ODHѝͷ2HH2!gOnJIV7h̭`6I{M=|e?PKŽvPKÆaF settings.xmlZ[s:~?"wm΁IRZ ɜ {jdG!Mc=1]i/߷+2g/4Gy]׼3\ίIfD.>M7hF^L8B/DLAo)" `kB1=Vp!>cB-eKwm?5ju{VQ^qAc[~yyY\,P+\$ZvNgBGӃrIh ƇR$mY4 "v:/my.]T(h@U|| +H1H3!N6eS_r#$<5yR, )6avkl_|QCf4 DxSPM4TJѤJEiʂ1 >nT>[ODwLL{v %ml0ʷ^Pc06{[k^~ls(XDEMgq9-A $\%Nu9O >$!39Ajl'Ze9(hMF٘ @)sN+sF` x/4ۉ8=oƆvd0p7Fi/.J|!pY;N;L s \ic9G4=27;%P8Y!'Y͉^"ݓ}]x+s7F .Y8+ 2q|)dal+XI"VTZ([8(B*˒IM lƅ'j Zk5%۫-H!RD85ij{u@I&+|Rl,tRל w/ՂPt.pi=} J39Le`R6Vpc0iO|md6_>)buCngSxe(Wjk?‰ØbSUu.LTӟz mD@ , -'ϣ"_,4lMrp-O˜D`lD+T0?%Ic&jSA`QrV ]Ge=]dO՝uhPKГ*,!PKÆaF styles.xml]ݒSP>T-{Rcoƾe+ &g ?EyL%Ax['C<@p`%m-6 2H^-B8Y|v8LDTp'tZn?1Ib ֡>(U.Wp}5pt)۟O}d)jx/@R^ >;PEs~4>hBAu[IP!` %E4s#R6Hc]5 jz#2b ,Hן6^W_TȟPLҿ(x9~4SƘí{3o1J/&wBs>eU7l LYZMg,B"bF.t|5g1ZIU &,Lc2nH9:Z':>2OS B6V&-PJ1Ɇ$oMFh gEaB6yl: |!࿏F|?4 <1H1FHx$N]qfb0CDQe{$$%ɒ !x kL0Rۉ3o|M%G1}f~IĆJ:MXdP$4点rAAP߄Y΂Qs/КD_a֑d]hVl,,`oo& WHf wHH@XFX5]}e$*k9=v%G;Y߅)֍s_ٻUKI7x*,'ߟI+IJc$4A QR'>c3!JR fF8[s cr_ !7A4At_RkACQr0Ch ߠ7gۜ;հe5J ŀbsek$fcFlEcD)FeJE-"ʗ>sWT$h'!ԓɧbhamh|q:b%fr IC lK{S #K9;wR cүDa[E!,HVĢ@fNhRYや!bߜyQAl_h2%Rx"%IUgφv:eiJK˔=K -=옥bg~v3:ffi\R*愳[혥%biN8:ei ˡLٳ YڙCR4'ғYUiP{$=혙SKJМpvKۃNzh FPZN1>I?u,XېI=5)}K-uGg{Y,8[*goh:aKJ AH ;\fT%aa*ʾtTpvP8{$*QphjxIw(&p1&wT#k0h"kzed.YqNJc-BK"-h*"ι"|W+ %2B2 oT]\u%ekU C*H-Tjh9#u",^;< p,\#k/myjH-\7 ׃jk2PFH-\㛅kbM4p9PH-XˆEKpH-\ۅk ZT(D6RhYUWGALȼaydx<2G^-r 78.0=\+{9j饡CE㫟 QbUߋ!o,`K!%X`M. ֽR>te[l {! ktieqKƗ^0%iXadt2zf>^30{0\}EwͿ ;_; JI7 E:pmǎ,^.yFelj>A"7q FtpW]5X9ߗU.y4,0_N4*p"Z [ټ1 %Ț:ֽmsܨp6~t Ρek~Sn@WR;@ryMkNǭ#\7-;Btd -CT JQD2r;3{oxYύN!SpUY&bR}ڏF#đ``p#PuÈgҏw譓+)@="5WHi+Ϧ7y3wG #l9^54Iv)PF~Ngj3̻f&I ʡ&I C]OI>r4wQs3蹘 Rإ`Hq,q[ =); s 3g'/UxЂbA>툃]'nOj8ŤV hه Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:54:07.06Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKÆaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKÆaF^2 ''mimetypePKÆaFMConfigurations2/floater/PKÆaF'Configurations2/accelerator/current.xmlPKÆaFConfigurations2/images/Bitmaps/PKÆaFConfigurations2/menubar/PKÆaFMConfigurations2/progressbar/PKÆaFConfigurations2/popupmenu/PKÆaFConfigurations2/toolbar/PKÆaFConfigurations2/statusbar/PKÆaF-Configurations2/toolpanel/PKÆaFvheThumbnails/thumbnail.pngPKÆaFŽv content.xmlPKÆaFГ*,! settings.xmlPKÆaF Ɇ styles.xmlPKÆaFh manifest.rdfPKÆaF-aJmeta.xmlPKÆaFjҠ">k#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/tableWithCaption.odt0000644000000000000000000002457712645626062021462 0ustar rootrootPKҊaF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPKҊaFConfigurations2/floater/PKҊaF'Configurations2/accelerator/current.xmlPKPKҊaFConfigurations2/images/Bitmaps/PKҊaFConfigurations2/progressbar/PKҊaFConfigurations2/menubar/PKҊaFConfigurations2/popupmenu/PKҊaFConfigurations2/statusbar/PKҊaFConfigurations2/toolbar/PKҊaFConfigurations2/toolpanel/PKҊaF =UȧThumbnails/thumbnail.pngPNG  IHDRzAnIDATxN@@ђ \f'-Mcy{_W郢>(胢>(胢>(胢>(#}{g{2tbOr9i}!eәgS|ű|r*f٪e71\}lgOm:ӵpKly)8ZɺËAwX9gS`yn ;O\{ozvS^8?|dOz w>N~7s?vp}Oa󥿵 s;ڀ>v|pf1W"U3ϗ?c"e!_\zZ@a؟?nYdrO)胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢>(胢;LIENDB`PKҊaF content.xmlXn6+-C m5"E,ۂ6},ˎl+n5||3䈾h p%o`G ʸ_Hnlbe&LI#& ۸2UpJI-KUrѩ+X]܎l;V,كљU`EQ37وdPx\~)!UU s2&f (&3d456Ks6%YSнȪY{WrGwmxvz/ڱ9=9"Zy߹vK*y{ݎWJ5T]@ؠx8:4[pvΨ`* q#LwB=c d{- 0?N4ʍ2%aJ Ҷfln yйβN(ҹ q%Kջp=\j X[/ ܭ WInP4,UPudɺ51̰%3 ɀ 3 Hc³q?P9bGxR!9'&…=CGDj1wd5-d*ṉ)4]$c÷ ϰ%X#Sߗg4zD_$w #-)u鳓}Yii?NSs0jfݷOI; `jp3F ,9n9\q4S7"]$ҿCQQѕ1buஓ$6eQrk0\kW[H_/zӏӫ0|нKMmڂf~8^*@T t"`fc8fydYn0 I%mAE_/5| ?xR;4D-GeG;?5j0~'Xܕ6v2se'@Ǎ<9&i#Nku=?NPK?PKҊaF settings.xml]s8~Eכq׆Iґ NHƐ&oƉ,$9[ِ`R h`j%,GDȐɧJ0! JC9Rz%LBT}%aXDt&R"Xc*UUyLrZ=t5#ѐ\Jr9MO'.E98r8o􄜙ir^ǥDsZ^a;l5kW% Y} I&RѼ ]_/U1$Sh"XAB\j'B5KOf|y+o3Dd;3~c@٨\%Ry*i S BÀ^"D%[Ks+dX!'ʨ7\tNJ^D\,׭Ó`hF @C[a0އG d#AB9j ENZj( Xqo+^g)Ent]ݡ;lfJ-z Sk針͠CyԿ 7@rZZsTkiLg͋t !@Z̷s6AY!o9gdAfk1 E v!̯#zJA%?5La?D R3JVMZ6_9ۺGkz6GqaGM?g5!'KҭVFm?=, ~n5Pr֝J4ϜVXjGӉ[y9dQs] UE0bY=!k05wKL&0QgD=P=섄(Q|XmN(}lք=}Ĥ&pmTwf{d) *\NR>3d] գC,&۫ xXÙ zRfc3P8J̇`&}Ӟ~L0Y]PVXe*Ju@QрcO@?1ŝ?ƒbhnslP1Ci!tb, Џ'6^BGgl: c;贏N*GHhDs\"3 yOC2Ĭ0O%F%2 K x; 2 c$u 1: γ=161SbL ~&D6U"'uϲôES~/7E78J]5?S%AXLmA.=Q,?+]0EŲٶZP/"f1}o*)% &r.GbfS.u˞ݒ~=+o)_PKqR'PKҊaF styles.xml]ݒSP>T€ `MR٪=8k,-a,y fcjgtqv/& >FkS$8B*=JpeM9*Mm*xdѼyϜYRm*x4~"{AlD(0`(Mvߎ$]l6b~l҈sGu 3kLQ1^uHf=ic P=qi0BicUvʀtϟJ_HMb{0ig6~dn*S6ifoℤȢyEx:2JeZVhn?x^l^7\Zeb^H c;~'hٴ(^ȱz9eF;I siT(#j>(FGIQ^!T XMCl?^HBCL?"ek’5JH qQ~s~&>B2 ݅Ԝidb&!F~ 6I(ol SGZKUVRlg aW$ PXi-# V^cҕ-6F e#$(EthC # 0(JVHv1O1MGFƶ}Ԧ=t6d ! $cdv}0M 1CwCޘ?`PoMLSp>q ,NK͹`\~$%E>|97~2h, }b &Wߪu$0jpX  (\[} Y8,a`)B˘uѲ  g[e;DZ藝y'p2ͺzz9r)^0f^{lU!gJ68') gi"d̉_ڱmshw%+v.cAwcC_!17H"e0<2 @ c:h(J~(1 U4`ֱ,F)0Yرز}N(egX{7'q7 /hK'J7L1.eU"r|3G|EgHIv B= m= ̣֗M#NL:s6Iee =^'̊S@--ژl]`g& m)&a=t͖UwIzECz/\,p}r9zslXYmr '-Gpdt?w?~rڜD͹BR-} ]0pփ1H @$vURT;lګ6@(k7!W9R:ᵜyCuhVk(D\-칁&bg3tӾ}^T#. We{9mmE$Q7D`Uxg]j:XzTVܨu,a)43θଝ4t̝Kȓ|.ܳ4,lvh5e$9S9y`[:\7o\("[8P4΋'wr"eV)> Zj' T=Z픥йZZYZNnQ,N .;y13{`R1 ^,=L .)K -})KH=KK-=阥ݩ~9T)K -=혥=}V;{gIҳy23ٹT -'3씩GX=SKKLORu9*)ֱTmJyMz 3=,!:gplf8–Vzp7l;s4T9ZGs*vjq`y9L r:sG b9a`*^K٠ޠPa9\\%\-#k|bV+}hyZ mYWYqO]~Z)Gm0Sxpfe \B+!p.TAj_-T;'ãjH-\5O qr9TCjẻZ1CmtI5Z.?ҁ%..R jr ҿ*%..R z~€!JˮI#c@Lʼaydt<2GG έ$l-MK-Lw~$p+PA5;7TrH`|!Z [1 Z[)kBʗ0~M`+X` ֭ R5i `݊ Ax? K7,@o ts/th OX: ~\g'?)WH'@@:}. رܻs0}`8_]"/݈] :Q;;R*.;8 g%9߫F%A0t :YS0seڼb5@'MxNՒՏn9;_4)E.敔MM;P#Bm^I" hNG!*EQC(&gOEܤ^ANPw7lSHL1ULq8(<tpqefJJ+0iax}S/͡3mI1{oȆ>'벆0.)0IԜ/qgqy`@j4jT ~bA7}-^b.Ii!ÉT'l1iى؞c9g Martin Linnemann2015-03-01T17:26:12.312015-03-01T18:22:37.29Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PKҊaFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PKҊaF^2 ''mimetypePKҊaFMConfigurations2/floater/PKҊaF'Configurations2/accelerator/current.xmlPKҊaFConfigurations2/images/Bitmaps/PKҊaFConfigurations2/progressbar/PKҊaFQConfigurations2/menubar/PKҊaFConfigurations2/popupmenu/PKҊaFConfigurations2/statusbar/PKҊaFConfigurations2/toolbar/PKҊaF-Configurations2/toolpanel/PKҊaF =UȧeThumbnails/thumbnail.pngPKҊaF? Bcontent.xmlPKҊaFqR'  settings.xmlPKҊaFa 9 styles.xmlPKҊaFh 3manifest.rdfPKҊaF!brmeta.xmlPKҊaFjҠ">#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/odt/odt/listBlocks.odt0000644000000000000000000002450512645626062020321 0ustar rootrootPK6aF^2 ''mimetypeapplication/vnd.oasis.opendocument.textPK6aFConfigurations2/floater/PK6aF'Configurations2/accelerator/current.xmlPKPK6aFConfigurations2/images/Bitmaps/PK6aFConfigurations2/progressbar/PK6aFConfigurations2/menubar/PK6aFConfigurations2/popupmenu/PK6aFConfigurations2/statusbar/PK6aFConfigurations2/toolbar/PK6aFConfigurations2/toolpanel/PK6aFDݮThumbnails/thumbnail.pngPNG  IHDRzAuIDATxъ0@Q_v"{&]]yTGIcn~_ޚ>(胢>(胢>(胢>(胢ʒ>v[v֯V:܏q;v>[wVəN_~i-۽ݐ0gi}@C%M#)=l8k_F޵;\rjYdi}4lOO28ֱ>FY>g;L7gdf:/||2g_Linq*9Bzˈ%qGL||?׷??(S>ΪoGn :;0ݜ>X<+57g>)E}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PAE}PA |VWIENDB`PK6aF content.xmln6} Az:~v-hPJqrSzcII-m"$9C79 Ы׏ e+{l > PY߼"a| `\w̖zveh$!AْK8Zj/=쮌>﬌V$Ώ ;!Yѳ(1Wdyݏ]B7pXxj6*=܌yCwej|ҶR֐VN aS"6'Ro\8w}#'̽[1jFUG)J*ߦ.BP>*`0uz|O`5󌓨,in >2 _&pyz:7fɥ0ctA1 >dJ'tQĄ5c>r63 (5=qs{SFy"SۦHe!8IAe[bYxy@(@N|n e+%:Ef!y_ō=EkK(L^X'њ53Ew9l`,r(#.mE,lEq_ |% [|#HVOq$:xީLl@ W}?0+ 2l(HلԅDG 2رL>AMKwCnI9./{>`vwvevv 2y @D&71Xiq6l6e>3IV!aEovasq)n$7]B>QEW3pgi:A?乇3,f%gccY uh?̟vȝNqI=2cë%si ̴l·u(ư&dRd.c#y=.GcX}lcSjXd.YqM.GcX>]^J0&.h#XFJ0F#h%Zh-c4b1A+\F`4nb1A+XFZ0F#h!Zhc4rF09!Uf(LEۅ!z\nqPgupʁQVr[X q =ոPVSX_@{L{-ڰ:Em\e:EOq5^ԆU^VFm\eFOq5tԆUtVGƫ15?~XF.t?:eN2G`C-Z]?fF0e2Gp3)\F,t?EEwĚOtO3ƇW|: `(NZY=Jxq d7|bםlYWMq;5Ch]Clv5Ϯf`:OFe3yj ASwļQ5ku蒣 9ZP "f/`[1l5޻~->bf1< DY$T;8ޠ{hqQy؅ +V%C[0p848xG';6PKQpPK6aF settings.xmlZ[s:~?"wBB/$t )- fN߄`5#Yِ`zXҮەrigP./3\.izNAc0>yd@$i7"TЀ15]i,wy#I >Uv*{izaOч;/U oxH3Don6cS_q#$<5yT, )6evkl_|Q#e4 Ex3PM4RJtJEiɂ.1aF7x[ TUGn;&S&:T=H61P r[/s t5?p((tDi,Q&`\Lf.'fzD[^05UN2n[f4&l̎ BA|BO? * œX0.`;GQ[P`fbm'8Lc :}c&(tdAǕ6TJӗ.s\B E]~ru؂%}9څ2G}!i c`!Jv ~ž7{H ?̗Mƶ$bMer]( ?(X:0Oa\xbsHƀ|q { VÉQڲс,%N!NxڐֆWp@$[a9"˗!,I O}ͩ ~RM-5Iw@׷9T&uj[nu7 ӽ~\זY@fe@ ᣢ'Y7ƌ6re/VC 9L(6PUDYeIh8F b0mѐ2x")(RK:1!$yI. ߾V@B S;fh%ዋ-89Rmڊ{?]顾_?PKm(+!PK6aF styles.xml]ݒSPJra n3=[$L^o [3ri*ϒG'#ɲ/ I;H:ݏOp4 уa[#c#Az0~ޑ2O|L]G='>y}68ϼ{H+”g̲t”wO-̘ei?A۶”l*/I[44&FYPSDuvc$=χZ+<  qigж 啇NZeq#Wxk Ƽoؗe7([k0 ?dӶ/ʻg*/ ܲ'LLՙsT玪 r `69wT*7ݠ 7,L@&o twh WXz \k'_)WH/@@z?. رܽsн9_] /܈^ 8Q;3B*U.W= cؕ oE\ K'2-x =R-m_SۦZ Martin Linnemann2015-03-01T17:26:12.312015-03-01T17:41:45.06Martin LinnemannPT10M3S2OpenOffice/4.0.1$Win32 OpenOffice.org_project/401m5$Build-9714PK6aFMETA-INF/manifest.xmln }zP& `ID`G*ɶtZlNGx fbSh$siR@U4Qr%i;I~5XyPpFtbъ8b/ Nt5dm):TL0üʛƴ)\ŵPZ t 1a“z pT v^}HQ{/ofOIoD =ӫut0xzu~PKjҠ">PK6aF^2 ''mimetypePK6aFMConfigurations2/floater/PK6aF'Configurations2/accelerator/current.xmlPK6aFConfigurations2/images/Bitmaps/PK6aFConfigurations2/progressbar/PK6aFQConfigurations2/menubar/PK6aFConfigurations2/popupmenu/PK6aFConfigurations2/statusbar/PK6aFConfigurations2/toolbar/PK6aF-Configurations2/toolpanel/PK6aFDݮeThumbnails/thumbnail.pngPK6aFQp Icontent.xmlPK6aFm(+! settings.xmlPK6aFz݋ ' 5styles.xmlPK6aFh manifest.rdfPK6aF)d7meta.xmlPK6aFjҠ">Z#META-INF/manifest.xmlPKp$pandoc-1.16.0.2~dfsg/tests/textile-reader.native0000644000000000000000000002774112645626061020256 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc",Space,Str "Textile",Space,Str "Reader.",Space,Str "Part",Space,Str "of",Space,Str "it",Space,Str "comes",LineBreak,Str "from",Space,Str "John",Space,Str "Gruber's",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,HorizontalRule ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embeded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embeded",Space,Str "link"] ("http://www.example.com","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Strong [Str "emphasis"]] ,Header 4 ("level-4",[],[]) [Str "Level",Space,Str "4"] ,Header 5 ("level-5",[],[]) [Str "Level",Space,Str "5"] ,Header 6 ("level-6",[],[]) [Str "Level",Space,Str "6"] ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here's",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "Line",Space,Str "breaks",Space,Str "are",Space,Str "preserved",Space,Str "in",Space,Str "textile,",Space,Str "so",Space,Str "you",Space,Str "can",Space,Str "not",Space,Str "wrap",Space,Str "your",Space,Str "very",LineBreak,Str "long",Space,Str "paragraph",Space,Str "with",Space,Str "your",Space,Str "favourite",Space,Str "text",Space,Str "editor",Space,Str "and",Space,Str "have",Space,Str "it",Space,Str "rendered",LineBreak,Str "with",Space,Str "no",Space,Str "break."] ,Para [Str "Here's",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet."] ,BulletList [[Plain [Str "criminey."]]] ,Para [Str "There",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "paragraph",Space,Str "break",Space,Str "between",Space,Str "here"] ,Para [Str "and",Space,Str "here."] ,Para [Str "pandoc",Space,Str "converts",Space,Str "textile."] ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "famous",Space,Str "quote",Space,Str "from",Space,Str "somebody.",Space,Str "He",Space,Str "had",Space,Str "a",Space,Str "lot",Space,Str "of",Space,Str "things",Space,Str "to",LineBreak,Str "say,",Space,Str "so",Space,Str "the",Space,Str "text",Space,Str "is",Space,Str "really",Space,Str "really",Space,Str "long",Space,Str "and",Space,Str "spans",Space,Str "on",Space,Str "multiple",Space,Str "lines."]] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) " ---- (should be four hyphens)\n\n sub status {\n print \"working\";\n }\n\n this code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\n These should not be escaped: \\$ \\\\ \\> \\[ \\{" ,CodeBlock ("",[],[]) "Code block with .bc\n continued\n @",Str ",",Space,Code ("",[],[]) "@",Str "."] ,Header 1 ("notextile",[],[]) [Str "Notextile"] ,Para [Str "A",Space,Str "block",Space,Str "of",Space,Str "text",Space,Str "can",Space,Str "be",Space,Str "protected",Space,Str "with",Space,Str "notextile",Space,Str ":"] ,Para [Str "\nNo *bold* and\n* no bullet\n"] ,Para [Str "and",Space,Str "inlines",Space,Str "can",Space,Str "be",Space,Str "protected",Space,Str "with",Space,Str "double *equals (=)* markup."] ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "With",Space,Str "line",Space,Str "breaks:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1",LineBreak,Str "newline"]] ,[Plain [Str "asterisk",Space,Str "2"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Plain [Str "ui",Space,Str "1"] ,BulletList [[Plain [Str "ui",Space,Str "1.1"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "oi",Space,Str "1.1.1"]] ,[Plain [Str "oi",Space,Str "1.1.2"]]]] ,[Plain [Str "ui",Space,Str "1.2"]]]] ,[Plain [Str "ui",Space,Str "2"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "oi",Space,Str "2.1"] ,BulletList [[Plain [Str "ui",Space,Str "2.1.1"]] ,[Plain [Str "ui",Space,Str "2.1.2"]]]]]]] ,Header 2 ("issue-1500",[],[]) [Str "Issue",Space,Str "#1500"] ,BulletList [[Plain [Str "one"]] ,[Plain [Str "two",LineBreak,Str "->",Space,Str "and",Space,Str "more"]]] ,Header 2 ("issue-1513",[],[]) [Str "Issue",Space,Str "#1513"] ,Para [Str "List:"] ,BulletList [[Plain [Str "one"]] ,[Plain [Str "two"]]] ,Header 2 ("definition-list",[],[]) [Str "Definition",Space,Str "List"] ,DefinitionList [([Str "coffee"], [[Plain [Str "Hot",Space,Str "and",Space,Str "black"]]]) ,([Str "tea"], [[Plain [Str "Also",Space,Str "hot,",Space,Str "but",Space,Str "a",Space,Str "little",Space,Str "less",Space,Str "black"]]]) ,([Str "milk"], [[Para [Str "Nourishing",Space,Str "beverage",Space,Str "for",Space,Str "baby",Space,Str "cows."] ,Para [Str "Cold",Space,Str "drink",Space,Str "that",Space,Str "goes",Space,Str "great",Space,Str "with",Space,Str "cookies."]]]) ,([Str "beer"], [[Plain [Str "fresh",Space,Str "and",Space,Str "bitter"]]])] ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",Space,Str "this"],Str ".",LineBreak,Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",Space,Strong [Str "is",Space,Str "this"],Str ".",LineBreak,Str "Hyphenated-words-are-ok,",Space,Str "as",Space,Str "well",Space,Str "as",Space,Str "strange_underscore_notation.",LineBreak,Str "A",Space,Link ("",[],[]) [Strong [Str "strong",Space,Str "link"]] ("http://www.foobar.com",""),Str "."] ,Para [Emph [Strong [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]],LineBreak,Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word",Space,Str "and",Space,Emph [Strong [Str "that",Space,Str "one"]],Str ".",LineBreak,Strikeout [Str "This",Space,Str "is",Space,Str "strikeout",Space,Str "and",Space,Strong [Str "strong"]]] ,Para [Str "Superscripts:",Space,Str "a",Superscript [Str "bc"],Str "d",Space,Str "a",Space,Superscript [Strong [Str "hello"]],Space,Str "a",Superscript [Str "hello",Space,Str "there"],Str ".",LineBreak,Str "Subscripts:",Space,Subscript [Str "here"],Space,Str "H",Space,Subscript [Str "2"],Str "O,",Space,Str "H",Space,Subscript [Str "23"],Str "O,",Space,Str "H",Space,Subscript [Str "many",Space,Str "of",Space,Str "them"],Str "O."] ,Para [Str "Dashes",Space,Str ":",Space,Str "How",Space,Str "cool",Space,Str "--",Space,Str "automatic",Space,Str "dashes."] ,Para [Str "Elipses",Space,Str ":",Space,Str "He",Space,Str "thought",Space,Str "and",Space,Str "thought",Space,Str "...",Space,Str "and",Space,Str "then",Space,Str "thought",Space,Str "some",Space,Str "more."] ,Para [Str "Quotes",Space,Str "and",Space,Str "apostrophes",Space,Str ":",Space,Str "\"I'd",Space,Str "like",Space,Str "to",Space,Str "thank",Space,Str "you\"",Space,Str "for",Space,Str "example."] ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "url"] ("http://www.url.com","")] ,Para [Link ("",[],[]) [Str "Email",Space,Str "link"] ("mailto:nobody@nowhere.net","")] ,Para [Str "Automatic",Space,Str "linking",Space,Str "to",Space,Link ("",[],[]) [Str "http://www.example.com"] ("http://www.example.com",""),Str "."] ,Para [Link ("",[],[]) [Str "Example"] ("http://www.example.com/",""),Str ":",Space,Str "Example",Space,Str "of",Space,Str "a",Space,Str "link",Space,Str "followed",Space,Str "by",Space,Str "a",Space,Str "colon."] ,Para [Str "A",Space,Str "link",Link ("",[],[]) [Str "with",Space,Str "brackets"] ("http://www.example.com",""),Str "and",Space,Str "no",Space,Str "spaces."] ,Header 1 ("tables",[],[]) [Str "Tables"] ,Para [Str "Textile",Space,Str "allows",Space,Str "tables",Space,Str "with",Space,Str "and",Space,Str "without",Space,Str "headers",Space,Str ":"] ,Header 2 ("without-headers",[],[]) [Str "Without",Space,Str "headers"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "name"]] ,[Plain [Str "age"]] ,[Plain [Str "sex"]]] ,[[Plain [Str "joan"]] ,[Plain [Str "24"]] ,[Plain [Str "f"]]] ,[[Plain [Str "archie"]] ,[Plain [Str "29"]] ,[Plain [Str "m"]]] ,[[Plain [Str "bella"]] ,[Plain [Str "45"]] ,[Plain [Str "f"]]]] ,Para [Str "and",Space,Str "some",Space,Str "text",Space,Str "following",Space,Str "..."] ,Header 2 ("with-headers",[],[]) [Str "With",Space,Str "headers"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "name"]] ,[Plain [Str "age"]] ,[Plain [Str "sex"]]] [[[Plain [Str "joan"]] ,[Plain [Str "24"]] ,[Plain [Str "f"]]] ,[[Plain [Str "archie"]] ,[Plain [Str "29"]] ,[Plain [Str "m"]]] ,[[Plain [Str "bella"]] ,[Plain [Str "45"]] ,[Plain [Str "f"]]]] ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "Textile",Space,Str "inline",Space,Str "image",Space,Str "syntax,",Space,Str "like",LineBreak,Str "here",Space,Image ("",[],[]) [Str "this is the alt text"] ("this_is_an_image.png","this is the alt text"),LineBreak,Str "and",Space,Str "here",Space,Image ("",[],[]) [Str ""] ("this_is_an_image.png",""),Str "."] ,Header 1 ("attributes",[],[]) [Str "Attributes"] ,Header 2 ("ident",["bar","foo"],[("style","color:red"),("lang","en")]) [Str "HTML",Space,Str "and",Space,Str "CSS",Space,Str "attributes",Space,Str "are",Space,Str "parsed",Space,Str "in",Space,Str "headers."] ,Para [Str "as",Space,Str "well",Space,Str "as",Space,Strong [Span ("",["foo"],[]) [Str "inline",Space,Str "attributes"]],Space,Str "of",Space,Span ("",[],[("style","color:red")]) [Str "all",Space,Str "kind"]] ,Para [Str "and",Space,Str "paragraph",Space,Str "attributes,",Space,Str "and",Space,Str "table",Space,Str "attributes."] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [] [[[Plain [Str "name"]] ,[Plain [Str "age"]] ,[Plain [Str "sex"]]] ,[[Plain [Str "joan"]] ,[Plain [Str "24"]] ,[Plain [Str "f"]]]] ,Header 1 ("entities",[],[]) [Str "Entities"] ,Para [Str "*",LineBreak,Str "&"] ,Header 1 ("raw-html",[],[]) [Str "Raw",Space,Str "HTML"] ,Para [Str "However,",Space,RawInline (Format "html") "",Space,Str "raw",Space,Str "HTML",Space,Str "inlines",Space,RawInline (Format "html") "",Space,Str "are",Space,Str "accepted,",Space,Str "as",Space,Str "well",Space,Str "as",Space,Str ":"] ,RawBlock (Format "html") "
              " ,Para [Str "any",Space,Strong [Str "Raw",Space,Str "HTML",Space,Str "Block"],Space,Str "with",Space,Str "bold"] ,RawBlock (Format "html") "
              " ,Para [Str "Html",Space,Str "blocks",Space,Str "can"] ,RawBlock (Format "html") "
              " ,Para [Str "interrupt",Space,Str "paragraphs"] ,RawBlock (Format "html") "
              " ,Para [Str "as",Space,Str "well."] ,Para [Str "Can",Space,Str "you",Space,Str "prove",Space,Str "that",Space,Str "2",Space,Str "<",Space,Str "3",Space,Str "?"] ,Header 1 ("acronyms-and-marks",[],[]) [Str "Acronyms",Space,Str "and",Space,Str "marks"] ,Para [Str "PBS (Public Broadcasting System)"] ,Para [Str "Hi\8482"] ,Para [Str "Hi",Space,Str "\8482"] ,Para [Str "\174",Space,Str "Hi\174"] ,Para [Str "Hi\169\&2008",Space,Str "\169",Space,Str "2008"] ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "A",Space,Str "note.",Note [Para [Str "The",Space,Str "note",LineBreak,Str "is",Space,Str "here!"]],Space,Str "Another",Space,Str "note",Note [Para [Str "Other",Space,Str "note."]],Str "."] ,Header 1 ("comment-blocks",[],[]) [Str "Comment",Space,Str "blocks"] ,Para [Str "not",Space,Str "a",Space,Str "comment."]] pandoc-1.16.0.2~dfsg/tests/insert0000644000000000000000000000001712645626061015342 0ustar rootrootSTUFF INSERTED pandoc-1.16.0.2~dfsg/tests/txt2tags.native0000644000000000000000000012775712645626061017130 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "author"]]),("date",MetaInlines [Str "date"]),("includeconf",MetaString "rules.conf"),("title",MetaInlines [Str "Txt2tags",Space,Str "Markup",Space,Str "Rules"])]}) [Para [Str "This",Space,Str "document",Space,Str "describes",Space,Str "all",Space,Str "the",Space,Str "details",Space,Str "about",Space,Str "each",Space,Str "txt2tags",Space,Str "mark.",SoftBreak,Str "The",Space,Str "target",Space,Str "audience",Space,Str "are",Space,Strong [Str "experienced"],Space,Str "users.",Space,Str "You",Space,Str "may",Space,Str "find",Space,Str "it",SoftBreak,Str "useful",Space,Str "if",Space,Str "you",Space,Str "want",Space,Str "to",Space,Str "master",Space,Str "the",Space,Str "marks",Space,Str "or",Space,Str "solve",Space,Str "a",Space,Str "specific",Space,Str "problem",SoftBreak,Str "about",Space,Str "a",Space,Str "mark."] ,Para [Str "If",Space,Str "you",Space,Str "are",Space,Str "new",Space,Str "to",Space,Str "txt2tags",Space,Str "or",Space,Str "just",Space,Str "want",Space,Str "to",Space,Str "know",Space,Str "which",Space,Str "are",Space,Str "the",SoftBreak,Str "available",Space,Str "marks,",Space,Str "please",Space,Str "read",Space,Str "the",Space,Link ("",[],[]) [Str "Markup",Space,Str "Demo"] ("MARKUPDEMO",""),Str "."] ,Para [Str "Note",Space,Str "1:",Space,Str "This",Space,Str "document",Space,Str "is",Space,Str "generated",Space,Str "directly",Space,Str "from",Space,Str "the",Space,Str "txt2tags",SoftBreak,Str "test-suite.",Space,Str "All",Space,Str "the",Space,Str "rules",Space,Str "mentioned",Space,Str "here",Space,Str "are",Space,Str "100%",Space,Str "in",Space,Str "sync",Space,Str "with",Space,Str "the",SoftBreak,Str "current",Space,Str "program",Space,Str "code."] ,Para [Str "Note",Space,Str "2:",Space,Str "A",Space,Str "good",Space,Str "practice",Space,Str "is",Space,Str "to",Space,Str "consult",Space,Link ("",[],[]) [Str "the",Space,Str "sources"] ("rules.t2t",""),Space,Str "when",SoftBreak,Str "reading,",Space,Str "to",Space,Str "see",Space,Str "how",Space,Str "the",Space,Str "texts",Space,Str "were",Space,Str "made."] ,Para [Str "Table",Space,Str "of",Space,Str "Contents:"] ,HorizontalRule ,Header 1 ("paragraph",[],[]) [Str "Paragraph"] ,Para [Str "A",Space,Str "paragraph",Space,Str "is",Space,Str "composed",Space,Str "by",Space,Str "one",Space,Str "or",Space,Str "more",Space,Str "lines.",SoftBreak,Str "A",Space,Str "blank",Space,Str "line",Space,Str "(or",Space,Str "a",Space,Str "table,",Space,Str "or",Space,Str "a",Space,Str "list)",Space,Str "ends",Space,Str "the",SoftBreak,Str "current",Space,Str "paragraph."] ,Para [Str "Leading",Space,Str "and",Space,Str "trailing",Space,Str "spaces",Space,Str "are",Space,Str "ignored."] ,Para [Str "A",Space,Str "comment",Space,Str "line",Space,Str "can",Space,Str "be",Space,Str "placed",Space,Str "inside",Space,Str "a",Space,Str "paragraph.",SoftBreak,Str "It",Space,Str "will",Space,Str "not",Space,Str "affect",Space,Str "it."] ,Para [Str "The",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "file",Space,Str "(EOF)",Space,Str "closes",Space,Str "the",SoftBreak,Str "currently",Space,Str "open",Space,Str "paragraph."] ,Header 1 ("comment",[],[]) [Str "Comment"] ,Para [Str "%",Space,Str "not",Space,Str "on",Space,Str "the",Space,Str "line",Space,Str "beginning",Space,Str "(at",Space,Str "column",Space,Str "2)"] ,Para [Str "some",Space,Str "text",Space,Str "%",Space,Str "half",Space,Str "line",Space,Str "comments",Space,Str "are",Space,Str "not",Space,Str "allowed"] ,Header 1 ("line",[],[]) [Str "Line"] ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,HorizontalRule ,Para [Strikeout [Str "-----"],SoftBreak,Strikeout [Str "-------",Space,Str "--------"]] ,Para [Strikeout [Str "-------+--------"]] ,Para [Str "(",Space,Strikeout [Str "----------------"],Space,Str ")"] ,Header 1 ("inline",[],[]) [Str "Inline"] ,Para [Str "i)",Space,Strong [Str "b"],Space,Emph [Str "i"],Space,Emph [Str "u"],Space,Strikeout [Str "s"],Space,Code ("",[],[]) "m",Space,Str "r",Space,RawInline (Format "html") "t",SoftBreak,Str "i)",Space,Strong [Str "bo"],Space,Emph [Str "it"],Space,Emph [Str "un"],Space,Strikeout [Str "st"],Space,Code ("",[],[]) "mo",Space,Str "ra",Space,RawInline (Format "html") "tg",SoftBreak,Str "i)",Space,Strong [Str "bold"],Space,Emph [Str "ital"],Space,Emph [Str "undr"],Space,Strikeout [Str "strk"],Space,Code ("",[],[]) "mono",Space,Str "raw",Space,RawInline (Format "html") "tggd",SoftBreak,Str "i)",Space,Strong [Str "bo",Space,Str "ld"],Space,Emph [Str "it",Space,Str "al"],Space,Emph [Str "un",Space,Str "dr"],Space,Strikeout [Str "st",Space,Str "rk"],Space,Code ("",[],[]) "mo no",Space,Str "r",Space,Str "aw",Space,RawInline (Format "html") "tg gd",SoftBreak,Str "i)",Space,Strong [Str "bo",Space,Str "*",Space,Str "ld"],Space,Emph [Str "it",Space,Str "/",Space,Str "al"],Space,Emph [Str "un",Space,Str "_",Space,Str "dr"],Space,Strikeout [Str "st",Space,Str "-",Space,Str "rk"],Space,Code ("",[],[]) "mo ` no",Space,Str "r",Space,Str "\"",Space,Str "aw",Space,RawInline (Format "html") "tg ' gd",SoftBreak,Str "i)",Space,Strong [Str "bo",Space,Str "**ld"],Space,Emph [Str "it",Space,Str "//al"],Space,Emph [Str "un",Space,Str "__dr"],Space,Strikeout [Str "st",Space,Str "--rk"],Space,Code ("",[],[]) "mo ``no",Space,Str "r",Space,Str "\"\"aw",Space,RawInline (Format "html") "tg ''gd",SoftBreak,Str "i)",Space,Strong [Str "bo",Space,Str "**",Space,Str "ld"],Space,Emph [Str "it",Space,Str "//",Space,Str "al"],Space,Emph [Str "un",Space,Str "__",Space,Str "dr"],Space,Strikeout [Str "st",Space,Str "--",Space,Str "rk"],Space,Code ("",[],[]) "mo `` no",Space,Str "r",Space,Str "\"\"",Space,Str "aw",Space,RawInline (Format "html") "tg '' gd",SoftBreak,Str "i)",Space,Strong [Str "**bold**"],Space,Emph [Str "//ital//"],Space,Emph [Str "__undr__"],Space,Strikeout [Str "--strk--"],Space,Code ("",[],[]) "``mono``",Space,Str "\"\"raw\"\"",Space,RawInline (Format "html") "''tggd''",SoftBreak,Str "i)",Space,Strong [Str "*bold*"],Space,Emph [Str "/ital/"],Space,Emph [Str "_undr_"],Space,Strikeout [Str "-strk-"],Space,Code ("",[],[]) "`mono`",Space,Str "\"raw\"",Space,RawInline (Format "html") "'tggd'"] ,Para [Str "i)",Space,Strong [Str "*"],Space,Emph [Str "/"],Space,Emph [Str "_"],Space,Strikeout [Str "-"],Space,Code ("",[],[]) "`",Space,Str "\"",Space,RawInline (Format "html") "'",SoftBreak,Str "i)",Space,Strong [Str "**"],Space,Emph [Str "//"],Space,Emph [Str "__"],Space,Strikeout [Str "--"],Space,Code ("",[],[]) "``",Space,Str "\"\"",Space,RawInline (Format "html") "''",SoftBreak,Str "i)",Space,Strong [Str "***"],Space,Emph [Str "///"],Space,Emph [Str "___"],Space,Strikeout [Str "---"],Space,Code ("",[],[]) "```",Space,Str "\"\"\"",Space,RawInline (Format "html") "'''",SoftBreak,Str "i)",Space,Strong [Str "****"],Space,Emph [Str "////"],Space,Emph [Str "____"],Space,Strikeout [Str "----"],Space,Code ("",[],[]) "````",Space,Str "\"\"\"\"",Space,RawInline (Format "html") "''''",SoftBreak,Str "i)",Space,Strong [Str "*****"],Space,Emph [Str "/////"],Space,Emph [Str "_____"],Space,Strikeout [Str "-----"],Space,Code ("",[],[]) "`````",Space,Str "\"\"\"\"\"",Space,RawInline (Format "html") "'''''",SoftBreak,Str "i)",Space,Strong [Str "******"],Space,Emph [Str "//////"],Space,Emph [Str "______"],Space,Strikeout [Str "------"],Space,Code ("",[],[]) "``````",Space,Str "\"\"\"\"\"\"",Space,RawInline (Format "html") "''''''"] ,Para [Str "i)",Space,Str "****",Space,Str "////",Space,Str "____",Space,Str "----",Space,Str "````",Space,Str "\"\"\"\"",Space,Str "''''",SoftBreak,Str "i)",Space,Str "**",Space,Str "**",Space,Str "//",Space,Str "//",Space,Str "__",Space,Str "__",Space,Str "--",Space,Str "--",Space,Str "``",Space,Str "``",Space,Str "\"\"",Space,Str "\"\"",Space,Str "''",Space,Str "''"] ,Para [Str "i)",Space,Str "**",Space,Str "bold**",Space,Str "//",Space,Str "ital//",Space,Str "__",Space,Str "undr__",Space,Str "--",Space,Str "strk--",Space,Str "``",Space,Str "mono``",Space,Str "\"\"",Space,Str "raw\"\"",Space,Str "''",Space,Str "tggd''",SoftBreak,Str "i)",Space,Str "**bold",Space,Str "**",Space,Str "//ital",Space,Str "//",Space,Str "__undr",Space,Str "__",Space,Str "--strk",Space,Str "--",Space,Str "``mono",Space,Str "``",Space,Str "\"\"raw",Space,Str "\"\"",Space,Str "''tggd",Space,Str "''",SoftBreak,Str "i)",Space,Str "**",Space,Str "bold",Space,Str "**",Space,Str "//",Space,Str "ital",Space,Str "//",Space,Str "__",Space,Str "undr",Space,Str "__",Space,Str "--",Space,Str "strk",Space,Str "--",Space,Str "``",Space,Str "mono",Space,Str "``",Space,Str "\"\"",Space,Str "raw",Space,Str "\"\"",Space,Str "''",Space,Str "tggd",Space,Str "''"] ,Header 1 ("link",[],[]) [Str "Link"] ,Para [Link ("",[],[]) [Str "mailto:user@domain.com"] ("user@domain.com",""),SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com"] ("user@domain.com",""),Str ".",SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com"] ("user@domain.com",""),Str ".",Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "mailto:user@domain.com"] ("user@domain.com",""),Str ".",Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "label"] ("user@domain.com",""),SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla"] ("user@domain.com?subject=bla",""),SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla"] ("user@domain.com?subject=bla",""),Str ".",SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla"] ("user@domain.com?subject=bla",""),Str ",",SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla&cc=otheruser@domain.com"] ("user@domain.com?subject=bla&cc=otheruser@domain.com",""),SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla&cc=otheruser@domain.com"] ("user@domain.com?subject=bla&cc=otheruser@domain.com",""),Str ".",SoftBreak,Link ("",[],[]) [Str "mailto:user@domain.com?subject=bla&cc=otheruser@domain.com"] ("user@domain.com?subject=bla&cc=otheruser@domain.com",""),Str ",",SoftBreak,Link ("",[],[]) [Str "label"] ("user@domain.com?subject=bla&cc=otheruser@domain.com",""),Str ".",SoftBreak,Link ("",[],[]) [Str "label"] ("user@domain.com?subject=bla&cc=otheruser@domain.com.",""),Str ".",SoftBreak,Link ("",[],[]) [Str "http://www.domain.com"] ("http://www.domain.com",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/"] ("http://www.domain.com/dir/",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir///"] ("http://www.domain.com/dir///",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com."] ("http://www.domain.com.",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com,"] ("http://www.domain.com,",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com."] ("http://www.domain.com.",""),Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "http://www.domain.com,"] ("http://www.domain.com,",""),Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/."] ("http://www.domain.com/dir/.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com."] ("http://www.domain.com.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com/dir/."] ("http://www.domain.com/dir/.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html."] ("http://www.domain.com/dir/index.html.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html,"] ("http://www.domain.com/dir/index.html,",""),Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/#anchor"] ("http://www.domain.com/dir/#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html#anchor"] ("http://www.domain.com/dir/index.html#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html#anchor."] ("http://www.domain.com/dir/index.html#anchor.",""),SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/#anchor."] ("http://www.domain.com/dir/#anchor.",""),Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html#anchor."] ("http://www.domain.com/dir/index.html#anchor.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com/dir/#anchor."] ("http://www.domain.com/dir/#anchor.",""),Space,Str "any",Space,Str "text.",SoftBreak,Str "any",Space,Str "text:",Space,Link ("",[],[]) [Str "http://www.domain.com/dir/index.html#anchor."] ("http://www.domain.com/dir/index.html#anchor.",""),Space,Str "any",Space,Str "text.",SoftBreak,Link ("",[],[]) [Str "http://domain.com?a=a@a.a&b=a+b+c."] ("http://domain.com?a=a@a.a&b=a+b+c.",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com?a=a@a.a&b=a+b+c,"] ("http://domain.com?a=a@a.a&b=a+b+c,",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com/bla.cgi?a=a@a.a&b=a+b+c."] ("http://domain.com/bla.cgi?a=a@a.a&b=a+b+c.",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@."] ("http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@.",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com?a=a@a.a&b=a+b+c.#anchor"] ("http://domain.com?a=a@a.a&b=a+b+c.#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor"] ("http://domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@.#anchor"] ("http://domain.com/bla.cgi?a=a@a.a&b=a+b+c@.#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://user:password@domain.com/bla.html."] ("http://user:password@domain.com/bla.html.",""),SoftBreak,Link ("",[],[]) [Str "http://user:password@domain.com/dir/."] ("http://user:password@domain.com/dir/.",""),SoftBreak,Link ("",[],[]) [Str "http://user:password@domain.com."] ("http://user:password@domain.com.",""),SoftBreak,Link ("",[],[]) [Str "http://user:@domain.com."] ("http://user:@domain.com.",""),SoftBreak,Link ("",[],[]) [Str "http://user@domain.com."] ("http://user@domain.com.",""),SoftBreak,Link ("",[],[]) [Str "http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor"] ("http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor",""),SoftBreak,Link ("",[],[]) [Str "http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c@#anchor"] ("http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c@#anchor",""),SoftBreak,Link ("",[],[]) [Str "label"] ("www.domain.com",""),SoftBreak,Str "[",Space,Str "label",Space,Link ("",[],[]) [Str "www.domain.com"] ("www.domain.com",""),Str "]",SoftBreak,Link ("",[],[]) [Str "label",Space] ("www.domain.com",""),SoftBreak,Link ("",[],[]) [Str "anchor",Space] ("http://www.domain.com/dir/index.html#anchor.",""),SoftBreak,Link ("",[],[]) [Str "login",Space] ("http://user:password@domain.com/bla.html",""),SoftBreak,Link ("",[],[]) [Str "form",Space] ("http://www.domain.com/bla.cgi?a=a@a.a&b=a+b+c.",""),SoftBreak,Link ("",[],[]) [Str "form",Space,Str "&",Space,Str "anchor"] ("http://www.domain.com/bla.cgi?a=a@a.a&b=a+b+c.#anchor",""),SoftBreak,Link ("",[],[]) [Str "login",Space,Str "&",Space,Str "form",Space] ("http://user:password@domain.com/bla.cgi?a=a@a.a&b=a+b+c.",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "up",Space] ("..",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "file",Space] ("bla.html",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "anchor",Space] ("#anchor",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "file/anchor"] ("bla.html#anchor",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "file/anchor"] ("bla.html#anchor.",""),SoftBreak,Link ("",[],[]) [Str "local",Space,Str "link",Space,Str "img",Space] ("abc.gif",""),SoftBreak,Link ("",[],[]) [Str "www.fake.com"] ("www.domain.com",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm"] ("http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-"] ("http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-",""),SoftBreak,Link ("",[],[]) [Str "http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_"] ("http://domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_",""),Str "-1%.",SoftBreak,Link ("",[],[]) [Str "http://foo._user-9:pass!#$%&*()+word@domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_"] ("http://foo._user-9:pass!#$%&*()+word@domain.com:8080/~user/_st-r@a=n$g,e/index%20new.htm?a=/%22&b=+.@*_-#anchor_",""),Str "-1%.",SoftBreak,Link ("",[],[]) [Str "http://L1.com"] ("http://L1.com",""),Space,Str "!",Space,Link ("",[],[]) [Str "mailto:L2@www.com"] ("L2@www.com",""),Space,Str "!",Space,Link ("",[],[]) [Str "L3"] ("www.com",""),Space,Str "!",Space,Link ("",[],[]) [Str "L4"] ("w@ww.com",""),Space,Str "!",Space,Link ("",[],[]) [Str "www.L5.com"] ("www.L5.com",""),SoftBreak,Link ("",[],[]) [Str "www.domain.com"] ("www.domain.com",""),SoftBreak,Link ("",[],[]) [Str "www2.domain.com"] ("www2.domain.com",""),SoftBreak,Link ("",[],[]) [Str "ftp.domain.com"] ("ftp.domain.com",""),SoftBreak,Link ("",[],[]) [Str "WWW.DOMAIN.COM"] ("WWW.DOMAIN.COM",""),SoftBreak,Link ("",[],[]) [Str "FTP.DOMAIN.COM"] ("FTP.DOMAIN.COM",""),SoftBreak,Link ("",[],[]) [Str "label"] ("www.domain.com",""),SoftBreak,Link ("",[],[]) [Str "label"] ("ftp.domain.com",""),SoftBreak,Link ("",[],[]) [Str "label"] ("WWW.DOMAIN.COM",""),SoftBreak,Link ("",[],[]) [Str "label"] ("FTP.DOMAIN.COM",""),SoftBreak,Str "[label",Space,Link ("",[],[]) [Str "www.domain.com"] ("www.domain.com",""),Space,Str "]",SoftBreak,Str "[label]",Space,Link ("",[],[]) [Str "www.domain.com"] ("www.domain.com",""),Str "]"] ,Header 1 ("image",[],[]) [Str "Image"] ,Para [Image ("",[],[]) [] ("img.png","")] ,Para [Link ("",[],[]) [Image ("",[],[]) [] ("img.png","")] ("http://txt2tags.org","")] ,Para [Image ("",[],[]) [] ("img.png",""),Space,Str "Image",Space,Str "at",Space,Str "the",Space,Str "line",Space,Str "beginning."] ,Para [Str "Image",Space,Str "in",Space,Str "the",Space,Str "middle",Space,Image ("",[],[]) [] ("img.png",""),Space,Str "of",Space,Str "the",Space,Str "line."] ,Para [Str "Image",Space,Str "at",Space,Str "the",Space,Str "line",Space,Str "end.",Space,Image ("",[],[]) [] ("img.png","")] ,Para [Image ("",[],[]) [] ("img.png",""),SoftBreak,Image ("",[],[]) [] ("img.png",""),SoftBreak,Image ("",[],[]) [] ("img.png","")] ,Para [Image ("",[],[]) [] ("img.png",""),Image ("",[],[]) [] ("img.png","")] ,Para [Str "Images",Space,Image ("",[],[]) [] ("img.png",""),Space,Str "mixed",Space,Image ("",[],[]) [] ("img.png",""),Space,Str "with",Space,Image ("",[],[]) [] ("img.png",""),Space,Str "text."] ,Para [Str "Images",Space,Str "glued",Space,Str "together:",Space,Image ("",[],[]) [] ("img.png",""),Image ("",[],[]) [] ("img.png",""),Image ("",[],[]) [] ("img.png",""),Str "."] ,Para [Str "[img.png",Space,Str "]"] ,Para [Str "[",Space,Str "img.png]"] ,Para [Str "[",Space,Str "img.png",Space,Str "]"] ,Header 1 ("numtitle",[],[]) [Str "Numbered",Space,Str "Title"] ,Header 1 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "1"] ,Header 2 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "2"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 4 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "4"] ,Header 5 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "5"] ,Header 1 ("lab_el-1",[],[]) [Str "Title",Space,Str "Level",Space,Str "1"] ,Header 2 ("lab_el-2",[],[]) [Str "Title",Space,Str "Level",Space,Str "2"] ,Header 3 ("lab_el-3",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 4 ("lab_el-4",[],[]) [Str "Title",Space,Str "Level",Space,Str "4"] ,Header 5 ("lab_el-5",[],[]) [Str "Title",Space,Str "Level",Space,Str "5"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("lab_el-9",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Para [Str "+Not",Space,Str "Title"] ,Para [Str "++Not",Space,Str "Title+"] ,Para [Str "+++Not",Space,Str "Title++++",SoftBreak,Str "++++++Not",Space,Str "Title",Space,Str "6++++++"] ,Para [Str "+++++++Not",Space,Str "Title",Space,Str "7+++++++",SoftBreak,Str "+Not",Space,Str "Title+",Space,Str "[label1]",SoftBreak,Str "+Not",Space,Str "Title+[",Space,Str "label",Space,Str "]",SoftBreak,Str "+Not",Space,Str "Title+[la/bel]"] ,Header 1 ("title",[],[]) [Str "Title"] ,Header 1 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "1"] ,Header 2 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "2"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 4 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "4"] ,Header 5 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "5"] ,Header 1 ("lab_el-1",[],[]) [Str "Title",Space,Str "Level",Space,Str "1"] ,Header 2 ("lab_el-2",[],[]) [Str "Title",Space,Str "Level",Space,Str "2"] ,Header 3 ("lab_el-3",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 4 ("lab_el-4",[],[]) [Str "Title",Space,Str "Level",Space,Str "4"] ,Header 5 ("lab_el-5",[],[]) [Str "Title",Space,Str "Level",Space,Str "5"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Header 3 ("lab_el-9",[],[]) [Str "Title",Space,Str "Level",Space,Str "3"] ,Para [Str "=Not",Space,Str "Title"] ,Para [Str "==Not",Space,Str "Title="] ,Para [Str "===Not",Space,Str "Title====",SoftBreak,Str "======Not",Space,Str "Title",Space,Str "6======"] ,Para [Str "=======Not",Space,Str "Title",Space,Str "7=======",SoftBreak,Str "=Not",Space,Str "Title=",Space,Str "[label1]",SoftBreak,Str "=Not",Space,Str "Title=[",Space,Str "label",Space,Str "]",SoftBreak,Str "=Not",Space,Str "Title=[la/bel]"] ,Header 1 ("quote",[],[]) [Str "Quote"] ,BlockQuote [Para [Str "To",Space,Str "quote",Space,Str "a",Space,Str "paragraph,",Space,Str "just",Space,Str "prefix",Space,Str "it",Space,Str "by",Space,Str "a",Space,Str "TAB",SoftBreak,Str "character.",Space,Str "All",Space,Str "the",Space,Str "lines",Space,Str "of",Space,Str "the",Space,Str "paragraph",Space,Str "must",SoftBreak,Str "begin",Space,Str "with",Space,Str "a",Space,Str "TAB."]] ,Para [Str "Any",Space,Str "non-tabbed",Space,Str "line",Space,Str "closes",Space,Str "the",Space,Str "quote",Space,Str "block."] ,BlockQuote [Para [Str "The",Space,Str "number",Space,Str "of",Space,Str "leading",Space,Str "TABs",Space,Str "identifies",Space,Str "the",Space,Str "quote",SoftBreak,Str "block",Space,Str "depth.",Space,Str "This",Space,Str "is",Space,Str "quote",Space,Str "level",Space,Str "1."] ,BlockQuote [Para [Str "With",Space,Str "two",Space,Str "TABs,",Space,Str "we",Space,Str "are",Space,Str "on",Space,Str "the",Space,Str "quote",SoftBreak,Str "level",Space,Str "2."] ,BlockQuote [Para [Str "The",Space,Str "more",Space,Str "TABs,",Space,Str "more",Space,Str "deep",Space,Str "is",SoftBreak,Str "the",Space,Str "quote",Space,Str "level."] ,BlockQuote [Para [Str "There",Space,Str "isn't",Space,Str "a",Space,Str "limit."]]]]] ,BlockQuote [BlockQuote [BlockQuote [BlockQuote [Para [Str "This",Space,Str "quote",Space,Str "starts",Space,Str "at",SoftBreak,Str "level",Space,Str "4."]] ,Para [Str "Then",Space,Str "its",Space,Str "depth",Space,Str "is",Space,Str "decreased."]] ,Para [Str "Counting",Space,Str "down,",Space,Str "one",Space,Str "by",Space,Str "one."]] ,Para [Str "Until",Space,Str "the",Space,Str "level",Space,Str "1."]] ,BlockQuote [BlockQuote [BlockQuote [Para [Str "Unlike",Space,Str "lists,",Space,Str "any",Space,Str "quote",Space,Str "block",Space,Str "is",SoftBreak,Str "independent,",Space,Str "not",Space,Str "part",Space,Str "of",Space,Str "a",Space,Str "tree."]]] ,Para [Str "The",Space,Str "TAB",Space,Str "count",Space,Str "don't",Space,Str "need",Space,Str "to",Space,Str "be",Space,Str "incremental",SoftBreak,Str "by",Space,Str "one."] ,BlockQuote [BlockQuote [BlockQuote [Para [Str "The",Space,Str "nesting",Space,Str "don't",Space,Str "need",SoftBreak,Str "to",Space,Str "follow",Space,Str "any",Space,Str "rule."]]] ,Para [Str "Quotes",Space,Str "can",Space,Str "be",Space,Str "opened",Space,Str "and",Space,Str "closed",SoftBreak,Str "in",Space,Str "any",Space,Str "way."] ,BlockQuote [BlockQuote [BlockQuote [Para [Str "You",Space,Str "choose."]]]]]] ,BlockQuote [Para [Str "Some",Space,Str "targets",Space,Str "(as",Space,Str "sgml)",Space,Str "don't",Space,Str "support",Space,Str "the",SoftBreak,Str "nesting",Space,Str "of",Space,Str "quotes.",Space,Str "There",Space,Str "is",Space,Str "only",Space,Str "one",Space,Str "quote",SoftBreak,Str "level."] ,BlockQuote [Para [Str "In",Space,Str "this",Space,Str "case,",Space,Str "no",Space,Str "matter",Space,Str "how",Space,Str "much",SoftBreak,Str "TABs",Space,Str "are",Space,Str "used",Space,Str "to",Space,Str "define",Space,Str "the",Space,Str "quote",SoftBreak,Str "block,",Space,Str "it",Space,Str "always",Space,Str "will",Space,Str "be",Space,Str "level",Space,Str "1."]]] ,BlockQuote [Para [Str "Spaces",Space,Str "AFTER",Space,Str "the",Space,Str "TAB",Space,Str "character",Space,Str "are",Space,Str "allowed.",SoftBreak,Str "But",Space,Str "be",Space,Str "careful,",Space,Str "it",Space,Str "can",Space,Str "be",Space,Str "confusing."]] ,Para [Str "Spaces",Space,Str "BEFORE",Space,Str "the",Space,Str "TAB",Space,Str "character",SoftBreak,Str "invalidate",Space,Str "the",Space,Str "mark.",Space,Str "It's",Space,Str "not",Space,Str "quote."] ,BlockQuote [Para [Str "Paragraph",Space,Str "breaks",Space,Str "inside",Space,Str "a",Space,Str "quote",Space,Str "aren't",SoftBreak,Str "possible."] ,Para [Str "This",Space,Str "sample",Space,Str "are",Space,Str "two",Space,Str "separated",Space,Str "quoted",SoftBreak,Str "paragraphs,",Space,Str "not",Space,Str "a",Space,Str "quote",Space,Str "block",Space,Str "with",SoftBreak,Str "two",Space,Str "paragraphs",Space,Str "inside."]] ,BlockQuote [Para [Str "The",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "file",Space,Str "(EOF)",Space,Str "closes",Space,Str "the",SoftBreak,Str "currently",Space,Str "open",Space,Str "quote",Space,Str "block."]] ,Header 1 ("raw",[],[]) [Str "Raw"] ,Para [Str "A raw line.\n"] ,Para [Str " Another raw line, with leading spaces.\n"] ,Para [Str "A raw area delimited\n by lines with marks.\n"] ,Para [Str "Trailing spaces and TABs after the area marks\nare allowed, but not encouraged nor documented.\n"] ,Para [Str "\"\"\"Not",Space,Str "a",Space,Str "raw",Space,Str "line,",Space,Str "need",Space,Str "one",Space,Str "space",Space,Str "after",Space,Str "mark."] ,Para [Str "\"\"\"",SoftBreak,Str "Not",Space,Str "a",Space,Str "raw",Space,Str "area.",SoftBreak,Str "The",Space,Str "marks",Space,Str "must",Space,Str "be",Space,Str "at",Space,Str "the",Space,Str "line",Space,Str "beginning,",SoftBreak,Str "no",Space,Str "leading",Space,Str "spaces.",SoftBreak,Str "\"\"\""] ,Para [Str "The end of the file (EOF) closes\nthe currently open raw area.\n"] ,Header 1 ("verbatim",[],[]) [Str "Verbatim"] ,CodeBlock ("",[],[]) "A verbatim line.\n" ,CodeBlock ("",[],[]) " Another verbatim line, with leading spaces.\n" ,CodeBlock ("",[],[]) "A verbatim area delimited\n by lines with marks.\n" ,CodeBlock ("",[],[]) "Trailing spaces and TABs after the area marks\nare allowed, but not encouraged nor documented.\n" ,Para [Str "```Not",Space,Str "a",Space,Str "verbatim",Space,Str "line,",Space,Str "need",Space,Str "one",Space,Str "space",Space,Str "after",Space,Str "mark."] ,Para [Str "```",SoftBreak,Str "Not",Space,Str "a",Space,Str "verbatim",Space,Str "area.",SoftBreak,Str "The",Space,Str "marks",Space,Str "must",Space,Str "be",Space,Str "at",Space,Str "the",Space,Str "line",Space,Str "beginning,",SoftBreak,Str "no",Space,Str "leading",Space,Str "spaces.",SoftBreak,Str "```"] ,CodeBlock ("",[],[]) "The end of the file (EOF) closes\nthe currently open verbatim area.\n" ,Header 1 ("deflist",[],[]) [Str "Definition",Space,Str "List"] ,DefinitionList [([Str "Definition",Space,Str "list"], [[Plain [Str "A",Space,Str "list",Space,Str "with",Space,Str "terms"]]]) ,([Str "Start",Space,Str "term",Space,Str "with",Space,Str "colon"], [[Plain [Str "And",Space,Str "its",Space,Str "definition",Space,Str "follows"]]])] ,Header 1 ("numlist",[],[]) [Str "Numbered",Space,Str "List"] ,Para [Str "See",Space,Link ("",[],[]) [Str "List"] ("#list",""),Str ",",Space,Str "the",Space,Str "same",Space,Str "rules",Space,Str "apply."] ,Header 1 ("list",[],[]) [Str "List"] ,BulletList [[Plain [Str "Use",Space,Str "the",Space,Str "hyphen",Space,Str "to",Space,Str "prefix",Space,Str "list",Space,Str "items."]] ,[Plain [Str "There",Space,Str "must",Space,Str "be",Space,Str "one",Space,Str "space",Space,Str "after",Space,Str "the",Space,Str "hyphen."]] ,[Plain [Str "The",Space,Str "list",Space,Str "is",Space,Str "closed",Space,Str "by",Space,Str "two",Space,Str "consecutive",Space,Str "blank",Space,Str "lines."]]] ,BulletList [[Plain [Str "The",Space,Str "list",Space,Str "can",Space,Str "be",Space,Str "indented",Space,Str "on",Space,Str "the",Space,Str "source",Space,Str "document."]] ,[Plain [Str "You",Space,Str "can",Space,Str "use",Space,Str "any",Space,Str "number",Space,Str "of",Space,Str "spaces."]] ,[Plain [Str "The",Space,Str "result",Space,Str "will",Space,Str "be",Space,Str "the",Space,Str "same."]]] ,BulletList [[Para [Str "Let",Space,Str "one",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "the",Space,Str "list",Space,Str "items."]] ,[Para [Str "It",Space,Str "will",Space,Str "be",Space,Str "maintained",Space,Str "on",Space,Str "the",Space,Str "conversion."]] ,[Para [Str "Some",Space,Str "targets",Space,Str "don't",Space,Str "support",Space,Str "this",Space,Str "behavior."]] ,[Para [Str "This",Space,Str "one",Space,Str "was",Space,Str "separated",Space,Str "by",Space,Str "a",Space,Str "line",Space,Str "with",Space,Str "blanks.",SoftBreak,Str "You",Space,Str "can",Space,Str "also",Space,Str "put",Space,Str "a",Space,Str "blank",Space,Str "line",Space,Str "inside"] ,Para [Str "the",Space,Str "item",Space,Str "contents",Space,Str "and",Space,Str "it",Space,Str "will",Space,Str "be",Space,Str "preserved."]]] ,Para [Str "-This",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "list",Space,Str "(no",Space,Str "space)"] ,Para [Str "-",Space,Str "This",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "list",Space,Str "(more",Space,Str "than",Space,Str "one",Space,Str "space)"] ,Para [Str "-",Space,Str "This",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "list",Space,Str "(a",Space,Str "TAB",Space,Str "instead",Space,Str "the",Space,Str "space)"] ,BulletList [[BulletList [[Plain [Str "This",Space,Str "is",Space,Str "a",Space,Str "list"]]]] ,[OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "This",Space,Str "is",Space,Str "a",Space,Str "list"]]]] ,[DefinitionList [([Str "This",Space,Str "is",Space,Str "a",Space,Str "list"], [[]])]]] ,BulletList [[Plain [Str "This",Space,Str "is",Space,Str "the",Space,Str "\"mother\"",Space,Str "list",Space,Str "first",Space,Str "item."]] ,[Plain [Str "Here",Space,Str "is",Space,Str "the",Space,Str "second,",Space,Str "but",Space,Str "inside",Space,Str "this",Space,Str "item,"] ,BulletList [[Plain [Str "there",Space,Str "is",Space,Str "a",Space,Str "sublist,",Space,Str "with",Space,Str "its",Space,Str "own",Space,Str "items."]] ,[Plain [Str "Note",Space,Str "that",Space,Str "the",Space,Str "items",Space,Str "of",Space,Str "the",Space,Str "same",Space,Str "sublist"]] ,[Plain [Str "must",Space,Str "have",Space,Str "the",Space,Str "same",Space,Str "indentation."] ,BulletList [[Plain [Str "And",Space,Str "this",Space,Str "can",Space,Str "go",Space,Str "on,",Space,Str "opening",Space,Str "sublists."] ,BulletList [[Plain [Str "Just",Space,Str "add",Space,Str "leading",Space,Str "spaces",Space,Str "before",Space,Str "the"]] ,[Plain [Str "hyphen",Space,Str "and",Space,Str "sublists",Space,Str "will",Space,Str "be",Space,Str "opened."]] ,[Plain [Str "The",Space,Str "two",Space,Str "blank",Space,Str "lines",Space,Str "closes",Space,Str "them",Space,Str "all."]]]]]]]]] ,BulletList [[Plain [Str "When",Space,Str "nesting",Space,Str "lists,",Space,Str "the",Space,Str "additional",Space,Str "spaces",Space,Str "are",Space,Str "free."]] ,[Plain [Str "You",Space,Str "can",Space,Str "add",Space,Str "just",Space,Str "one,"] ,BulletList [[Plain [Str "or",Space,Str "many."] ,BulletList [[Plain [Str "What",Space,Str "matters",Space,Str "is",Space,Str "to",Space,Str "put",Space,Str "more",Space,Str "than",Space,Str "the",Space,Str "previous."]] ,[Plain [Str "But",Space,Str "remember",Space,Str "that",Space,Str "the",Space,Str "other",Space,Str "items",Space,Str "of",Space,Str "the",Space,Str "same",Space,Str "list"]] ,[Plain [Str "must",Space,Str "use",Space,Str "the",Space,Str "same",Space,Str "indentation."]]]]]]] ,BulletList [[Plain [Str "There",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "depth",Space,Str "limit,"] ,BulletList [[Plain [Str "you",Space,Str "can",Space,Str "go",Space,Str "deeper",Space,Str "and",Space,Str "deeper."] ,BulletList [[Plain [Str "But",Space,Str "some",Space,Str "targets",Space,Str "may",Space,Str "have",Space,Str "restrictions."] ,BulletList [[Plain [Str "The",Space,Str "LaTeX",Space,Str "maximum",Space,Str "is",Space,Str "here,",Space,Str "4",Space,Str "levels."]]]]]]]]] ,BulletList [[Plain [Str "Reverse",Space,Str "nesting",Space,Str "doesn't",Space,Str "work."]] ,[Plain [Str "Because",Space,Str "a",Space,Str "sublist",Space,Str "*must*",Space,Str "have",Space,Str "a",Space,Str "mother",Space,Str "list."]] ,[Plain [Str "It's",Space,Str "the",Space,Str "list",Space,Str "concept,",Space,Str "not",Space,Str "a",Space,Str "txt2tags",Space,Str "limitation."]] ,[Plain [Str "All",Space,Str "this",Space,Str "sublists",Space,Str "will",Space,Str "be",Space,Str "bumped",Space,Str "to",Space,Str "mother",Space,Str "lists."]] ,[Plain [Str "At",Space,Str "level",Space,Str "1,",Space,Str "like",Space,Str "this",Space,Str "one."]]] ,BulletList [[Plain [Str "Level",Space,Str "1"] ,BulletList [[Plain [Str "Level",Space,Str "2"] ,BulletList [[Plain [Str "Level",Space,Str "3"] ,BulletList [[Plain [Str "Level",Space,Str "4"]]]] ,[Plain [Str "Level",Space,Str "3",Space,Str "--",Space,Str "(closed",Space,Str "Level",Space,Str "4)"]]]] ,[Plain [Str "Level",Space,Str "2",Space,Str "--",Space,Str "(closed",Space,Str "Level",Space,Str "3)"]]]] ,[Plain [Str "Level",Space,Str "1",Space,Str "--",Space,Str "(closed",Space,Str "Level",Space,Str "2)"]]] ,BulletList [[Plain [Str "Level",Space,Str "1"] ,BulletList [[Plain [Str "Level",Space,Str "2"] ,BulletList [[Plain [Str "Level",Space,Str "3"] ,BulletList [[Plain [Str "Level",Space,Str "4"]]]]]]]] ,[Plain [Str "Level",Space,Str "1",Space,Str "--",Space,Str "(closed",Space,Str "Level",Space,Str "4,",Space,Str "Level",Space,Str "3",Space,Str "and",Space,Str "Level",Space,Str "2)"]]] ,BulletList [[Para [Str "Level",Space,Str "1"] ,BulletList [[Para [Str "Level",Space,Str "2",Space,Str "--",Space,Str "blank",Space,Str "BEFORE",Space,Str "and",Space,Str "AFTER",Space,Str "(in)"] ,BulletList [[Plain [Str "Level",Space,Str "3"]]]]]]] ,BulletList [[Plain [Str "Level",Space,Str "4"]]] ,BulletList [[Para [Str "Level",Space,Str "3"]] ,[Para [Str "Level",Space,Str "2",Space,Str "--",Space,Str "blank",Space,Str "BEFORE",Space,Str "and",Space,Str "AFTER",Space,Str "(out)"]] ,[Para [Str "Level",Space,Str "1"] ,BulletList [[Para [Str "Level",Space,Str "2",Space,Str "--",Space,Str "blank",Space,Str "BEFORE",Space,Str "(spaces)",Space,Str "and",Space,Str "AFTER",Space,Str "(TAB)"] ,BulletList [[Plain [Str "Level",Space,Str "3"]]]]]]] ,BulletList [[Plain [Str "Level",Space,Str "1"] ,BulletList [[Plain [Str "Level",Space,Str "2"] ,BulletList [[Plain [Str "Level",Space,Str "3"] ,BulletList [[Plain [Str "Level",Space,Str "4"]] ,[Plain [Str "Level",Space,Str "3.5",Space,Str "???"]]]] ,[Plain [Str "Level",Space,Str "3"]] ,[Plain [Str "Level",Space,Str "2.5",Space,Str "???"]]]] ,[Plain [Str "Level",Space,Str "2"]] ,[Plain [Str "Level",Space,Str "1.5",Space,Str "???"]]]] ,[Plain [Str "Level",Space,Str "1"]]] ,BulletList [[Plain [Str "This",Space,Str "list",Space,Str "is",Space,Str "closed",Space,Str "by",Space,Str "a",Space,Str "line",Space,Str "with",Space,Str "spaces",Space,Str "and",Space,Str "other",Space,Str "with",Space,Str "TABs"]]] ,BulletList [[Plain [Str "This",Space,Str "list",Space,Str "is",Space,Str "NOT",Space,Str "closed",Space,Str "by",Space,Str "two",Space,Str "comment",Space,Str "lines"]]] ,BulletList [[Plain [Str "This",Space,Str "list",Space,Str "is",Space,Str "closed",Space,Str "by",Space,Str "a",Space,Str "line",Space,Str "with",Space,Str "spaces",Space,Str "and",Space,Str "TAB,"]] ,[Plain [Str "then",Space,Str "a",Space,Str "comment",Space,Str "line,",Space,Str "then",Space,Str "an",Space,Str "empty",Space,Str "line."]]] ,BulletList [[Plain [Str "Level",Space,Str "1"] ,BulletList [[Plain [Str "Level",Space,Str "2"] ,BulletList [[Plain [Str "Level",Space,Str "3"]]] ,Plain [Str "-",SoftBreak,Str "Level",Space,Str "2"]]] ,Plain [Str "-",SoftBreak,Str "Level",Space,Str "1"]]] ,Para [Str "-"] ,BulletList [[Plain [Str "Empty",Space,Str "item",Space,Str "with",Space,Str "trailing",Space,Str "spaces."]]] ,Para [Str "-"] ,BulletList [[Plain [Str "Empty",Space,Str "item",Space,Str "with",Space,Str "trailing",Space,Str "TAB."]]] ,Para [Str "-"] ,BulletList [[Plain [Str "If",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "file",Space,Str "(EOF)",Space,Str "is",Space,Str "hit,"] ,BulletList [[Plain [Str "all",Space,Str "the",Space,Str "currently",Space,Str "opened",Space,Str "list",Space,Str "are",Space,Str "closed,"] ,BulletList [[Plain [Str "just",Space,Str "like",Space,Str "when",Space,Str "using",Space,Str "the",Space,Str "two",Space,Str "blank",Space,Str "lines."]]]]]]] ,Header 1 ("table",[],[]) [Str "Table"] ,Table [] [AlignRight] [0.0] [] [[[Plain [Str "Cell",Space,Str "1"]]]] ,Table [] [AlignCenter,AlignCenter,AlignRight] [0.0,0.0,0.0] [] [[[Plain [Str "Cell",Space,Str "1"]] ,[Plain [Str "Cell",Space,Str "2"]] ,[Plain [Str "Cell",Space,Str "3"]]]] ,Table [] [AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0] [] [[[Plain [Str "Cell",Space,Str "1"]] ,[Plain [Str "Cell",Space,Str "2"]] ,[Plain [Str "Cell",Space,Str "3"]]]] ,Para [Str "||",Space,Str "Cell",Space,Str "1",Space,Str "|",Space,Str "Cell",Space,Str "2",Space,Str "|",Space,Str "Cell",Space,Str "3",Space,Str "|"] ,Table [] [AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0] [] [[[Plain [Str "Cell",Space,Str "1"]] ,[Plain [Str "Cell",Space,Str "2"]] ,[Plain [Str "Cell",Space,Str "3"]]]] ,Table [] [AlignDefault,AlignCenter,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "Heading"]] ,[Plain [Str "Heading"]] ,[Plain [Str "Heading"]]] [[[Plain [Str "<-"]] ,[Plain [Str "--"]] ,[Plain [Str "->"]]] ,[[Plain [Str "--"]] ,[Plain [Str "--"]] ,[Plain [Str "--"]]] ,[[Plain [Str "->"]] ,[Plain [Str "--"]] ,[Plain [Str "<-"]]]] ,Table [] [AlignDefault,AlignDefault,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0] [[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3+4"]] ,[]] [[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[Plain [Str "4"]]] ,[[Plain [Str "1+2+3"]] ,[Plain [Str "4"]] ,[] ,[]] ,[[Plain [Str "1"]] ,[Plain [Str "2+3"]] ,[Plain [Str "4"]] ,[]] ,[[Plain [Str "1+2+3+4"]] ,[] ,[] ,[]]] ,Table [] [AlignCenter,AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0] [] [[[Plain [Str "0"]] ,[Plain [Str "1"]] ,[Plain [Str "2"]] ,[]] ,[[Plain [Str "4"]] ,[Plain [Str "5"]] ,[] ,[Plain [Str "7"]]] ,[[Plain [Str "8"]] ,[] ,[Plain [Str "A"]] ,[Plain [Str "B"]]] ,[[] ,[Plain [Str "D"]] ,[Plain [Str "E"]] ,[Plain [Str "F"]]]] ,Table [] [AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0,0.0] [] [[[Plain [Str "1"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[] ,[] ,[]] ,[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[] ,[]] ,[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[Plain [Str "4"]] ,[]] ,[[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[Plain [Str "4"]] ,[Plain [Str "5"]]]] ,Table [] [AlignDefault,AlignCenter,AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0,0.0] [] [[[Plain [Str "Jan"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "Fev"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "Mar"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "Apr"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "May"]] ,[] ,[] ,[] ,[]] ,[[Plain [Str "20%"]] ,[Plain [Str "40%"]] ,[Plain [Str "60%"]] ,[Plain [Str "80%"]] ,[Plain [Str "100%"]]]] ,Table [] [AlignCenter,AlignDefault,AlignDefault,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0,0.0] [] [[[] ,[] ,[Plain [Str "/"]] ,[] ,[]] ,[[] ,[Plain [Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/"]] ,[] ,[] ,[]] ,[[Plain [Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/",Space,Str "/"]] ,[] ,[] ,[] ,[]] ,[[] ,[Plain [Str "o"]] ,[] ,[Plain [Str "o"]] ,[]] ,[[] ,[] ,[Plain [Str "."]] ,[] ,[]] ,[[] ,[Plain [Str "=",Space,Str "=",Space,Str "=",Space,Str "="]] ,[] ,[] ,[]]] ,Table [] [AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0] [] [[[Plain [Str "01"]] ,[Plain [Str "02"]] ,[] ,[] ,[Plain [Str "05"]] ,[] ,[Plain [Str "07"]] ,[]] ,[[] ,[] ,[Plain [Str "11"]] ,[] ,[Plain [Str "13"]] ,[] ,[] ,[Plain [Str "16"]]] ,[[Plain [Str "17"]] ,[] ,[Plain [Str "19"]] ,[Plain [Str "20"]] ,[] ,[] ,[Plain [Str "23"]] ,[]] ,[[Plain [Str "25"]] ,[Plain [Str "26"]] ,[] ,[] ,[Plain [Str "29"]] ,[Plain [Str "30"]] ,[] ,[Plain [Str "32"]]] ,[[] ,[] ,[Plain [Str "35"]] ,[] ,[Plain [Str "37"]] ,[] ,[Plain [Str "39"]] ,[Plain [Str "40"]]]] ,Table [] [AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter,AlignCenter] [0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0] [] [[[Plain [Str "0"]] ,[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]] ,[Plain [Str "7"]] ,[Plain [Str "8"]] ,[Plain [Str "9"]] ,[Plain [Str "A"]] ,[Plain [Str "B"]] ,[Plain [Str "C"]] ,[Plain [Str "D"]] ,[Plain [Str "E"]] ,[Plain [Str "F"]] ,[Plain [Str "0"]] ,[Plain [Str "1"]] ,[Plain [Str "2"]] ,[Plain [Str "3"]] ,[Plain [Str "4"]] ,[Plain [Str "5"]] ,[Plain [Str "6"]] ,[Plain [Str "7"]] ,[Plain [Str "8"]] ,[Plain [Str "9"]] ,[Plain [Str "A"]] ,[Plain [Str "B"]] ,[Plain [Str "C"]] ,[Plain [Str "D"]] ,[Plain [Str "E"]] ,[Plain [Str "F"]]]] ,Table [] [AlignCenter] [0.0] [] [[[]] ,[[]] ,[[]]] ,Para [Str "|this|is|not|a|table|"] ,Para [Str "|this|",Space,Str "is|",Space,Str "not|",Space,Str "a|",Space,Str "table|"] ,Para [Str "|this",Space,Str "|is",Space,Str "|not",Space,Str "|a",Space,Str "|table",Space,Str "|"] ,Para [Str "|",Space,Str "this\t|",Space,Str "is\t|",Space,Str "not\t|",Space,Str "a\t|",Space,Str "table\t|"] ,HorizontalRule ,Para [Str "The",Space,Str "End."]] pandoc-1.16.0.2~dfsg/tests/writer.haddock0000644000000000000000000002314612645626061016756 0ustar rootrootThis is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. ______________________________________________________________________________ = Headers #headers# == Level 2 with an #level-2-with-an-embedded-link# === Level 3 with /emphasis/ #level-3-with-emphasis# ==== Level 4 #level-4# ===== Level 5 #level-5# = Level 1 #level-1# == Level 2 with /emphasis/ #level-2-with-emphasis# === Level 3 #level-3# with no blank line == Level 2 #level-2# with no blank line ______________________________________________________________________________ = Paragraphs #paragraphs# Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break here. ______________________________________________________________________________ = Block Quotes #block-quotes# E-mail style: This is a block quote. It is pretty short. Code in a block quote: > sub status { > print "working"; > } A list: 1. item one 2. item two Nested block quotes: nested nested This should not be a block quote: 2 > 1. And a following paragraph. ______________________________________________________________________________ = Code Blocks #code-blocks# Code: > ---- (should be four hyphens) > > sub status { > print "working"; > } > > this code block is indented by one tab And: > this code block is indented by two tabs > > These should not be escaped: \$ \\ \> \[ \{ ______________________________________________________________________________ = Lists #lists# == Unordered #unordered# Asterisks tight: - asterisk 1 - asterisk 2 - asterisk 3 Asterisks loose: - asterisk 1 - asterisk 2 - asterisk 3 Pluses tight: - Plus 1 - Plus 2 - Plus 3 Pluses loose: - Plus 1 - Plus 2 - Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 == Ordered #ordered# Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. 2. Item 2. 3. Item 3. == Nested #nested# - Tab - Tab - Tab Here’s another: 1. First 2. Second: - Fee - Fie - Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: - Fee - Fie - Foe 3. Third == Tabs and spaces #tabs-and-spaces# - this is a list item indented with tabs - this is a list item indented with spaces - this is an example list item indented with tabs - this is an example list item indented with spaces == Fancy list markers #fancy-list-markers# (2) begins with 2 (3) and now 3 with a continuation 4. sublist with roman numerals, starting with 4 5. more items (1) a subsublist (2) a subsublist Nesting: 1. Upper Alpha 1. Upper Roman. (6) Decimal start with 6 3) Lower alpha with paren Autonumbering: 1. Autonumber. 2. More. 1. Nested. Should not be a list item: M.A. 2007 B. Williams ______________________________________________________________________________ = Definition Lists #definition-lists# Tight using spaces: [apple] red fruit [orange] orange fruit [banana] yellow fruit Tight using tabs: [apple] red fruit [orange] orange fruit [banana] yellow fruit Loose: [apple] red fruit [orange] orange fruit [banana] yellow fruit Multiple blocks with italics: [/apple/] red fruit contains seeds, crisp, pleasant to taste [/orange/] orange fruit > { orange code block } orange block quote Multiple definitions, tight: [apple] red fruit computer [orange] orange fruit bank Multiple definitions, loose: [apple] red fruit computer [orange] orange fruit bank Blank line after term, indented marker, alternate markers: [apple] red fruit computer [orange] orange fruit 1. sublist 2. sublist = HTML Blocks #html-blocks# Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is /emphasized/ And this is __strong__ Here’s a simple block: foo This should be a code block, though: >
              > foo >
              As should this: >
              foo
              Now, nested: foo This should just be an HTML comment: Multiline: Code block: > Just plain comment, with trailing spaces on the line: Code: >
              Hr’s: ______________________________________________________________________________ = Inline Markup #inline-markup# This is /emphasized/, and so /is this/. This is __strong__, and so __is this__. An //. __/This is strong and em./__ So is __/this/__ word. __/This is strong and em./__ So is __/this/__ word. This is code: @>@, @$@, @\\@, @\\$@, @\@. ~~This is /strikeout/.~~ Superscripts: abcd a/hello/ ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ______________________________________________________________________________ = Smart quotes, ellipses, dashes #smart-quotes-ellipses-dashes# “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘@code@’ and a “”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ______________________________________________________________________________ = LaTeX #latex# - - 2 + 2 = 4 - /x/ ∈ /y/ - /α/ ∧ /ω/ - 223 - /p/-Tree - Here’s some display math: $$\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)-f(x)}{h}$$ - Here’s one that has a line break in it: /α/ + /ω/ × /x/2. These shouldn’t be math: - To get the famous equation, write @$e = mc^2$@. - $22,000 is a /lot/ of money. So is $34,000. (It worked if “lot” is emphasized.) - Shoes ($20) and socks ($5). - Escaped @$@: $73 /this should be emphasized/ 23$. Here’s a LaTeX table: ______________________________________________________________________________ = Special Characters #special-characters# Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 \< 5. 6 > 5. Backslash: \\ Backtick: \` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - ______________________________________________________________________________ = Links #links# == Explicit #explicit# Just a . . . . < Empty>. == Reference #reference# Foo . Foo . Foo . With . by itself should be a link. Indented . Indented . Indented . This should [not][] be a link. > [not]: /url Foo . Foo . == With ampersands #with-ampersands# Here’s a . Here’s a link with an amersand in the link text: . Here’s an . Here’s an . == Autolinks #autolinks# With an ampersand: - In a list? - - It should. An e-mail address: Blockquoted: Auto-links should not occur here: @\@ > or here: ______________________________________________________________________________ = Images #images# From “Voyage dans la Lune” by Georges Melies (1902): <> Here is a movie <> icon. ______________________________________________________________________________ = Footnotes #footnotes# Here is a footnote reference,<#notes [1]> and another.<#notes [2]> This should /not/ be a footnote reference, because it contains a space.[^my note] Here is an inline note.<#notes [3]> Notes can go in quotes.<#notes [4]> 1. And in list items.<#notes [5]> This paragraph should not be part of the note, as it is not indented. #notes# 1. Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. 2. Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). > { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. 3. This is /easier/ to type. Inline notes may contain and @]@ verbatim characters, as well as [bracketed text]. 4. In quote. 5. In list. pandoc-1.16.0.2~dfsg/tests/mediawiki-reader.wiki0000644000000000000000000001130112645626061020201 0ustar rootroot= header = == header level two == ===header level 3=== ====header ''level'' four==== ===== header level 5 ===== ====== header level 6 ====== ======= not a header ======== == not a header == == emph and strong == ''emph'' '''strong''' '''''strong and emph''''' '''''emph inside'' strong''' '''strong with ''emph''''' '''''strong inside''' emph'' == horizontal rule == top ---- bottom ---- == nowiki == ''not emph'' == strikeout == This is ''struck out'' == entities == hi & low hi & low Gödel ̉પ == comments == inline comment between blocks == linebreaks == hi
              there hi
              there == : indents == hi : there bud hi :: there bud == p tags == hi there

              bud

              another

              == raw html == hi ''there''. inserted
              hi ''there''
              == sup, sub, del == H2O base''exponent'' hello == inline code == *→* typed >>= == code blocks ==
              case xs of
                   (_:_) -> reverse xs
                   []    -> ['*']
              
              case xs of (_:_) -> reverse xs [] -> ['*'] widgets.each do |w| print w.price end == block quotes == Regular paragraph
              This is a block quote. With two paragraphs.
              Nother paragraph. == external links == [http://google.com ''Google'' search engine] http://pandoc.org [http://google.com] [http://yahoo.com] [mailto:info@example.org email me] == internal links == [[Help]] [[Help|the help page]] [[Help]]ers [[Help]]ers [[Help:Contents|]] [[#My anchor]] [[Page#with anchor|and text]] == images == [[File:example.jpg|caption]] [[File:example.jpg|border|the ''caption'' with [http://google.com external link]]] [[File:example.jpg|frameless|border|30x40px|caption]] [[File:example.jpg|frameless|border|30px|caption]] [[File:example.jpg|page=4|30px|border|caption]] [[File:example.jpg]] [[Archivo:example_es.jpg]] == lists == * Start each line * with an asterisk (*). ** More asterisks gives deeper *** and deeper levels. * Line breaks
              don't break levels. *** But jumping levels creates empty space. Any other start ends the list. ** two * one # Start each line # with a number sign (#). ## More number signs gives deeper ### and deeper ### levels. # Line breaks
              don't break levels. ### But jumping levels creates empty space. # Blank lines # end the list and start another. Any other start also ends the list. ;item 1 : definition 1 ;item 2 : definition 2-1 : definition 2-2 # one # two #* two point one #* two point two # three #; three item one #: three def one # four #: four def one #: this looks like a continuation #: and is often used #: instead
              of
              # {{{template |author=John |title=My Book }}} ## five sub 1 ### five sub 1 sub 1 ## five sub 2
              1. list item ''emph''
                1. list item B1
                2. list item B2
                continuing list item A1
              2. list item A2
                #abc #def #ghi
              1. Amsterdam
              2. Rotterdam
              3. The Hague
              == math == Here is some x=\frac{y^\pi}{z}. With spaces: x=\frac{y^\pi}{z} . == preformatted blocks == Start each line with a space. Text is '''preformatted''' and ''markups'' '''''can''''' be done. hell yeah Start with a space in the first column, (before the ). Then your block format will be maintained. This is good for copying in code blocks: def function(): """documentation string""" if True: print True else: print False Not
              preformatted Don't need a blank line around a preformatted block. == templates == {{Welcome}} {{Foo:Bar}} {{Thankyou|all your effort|Me}} Written {{{date}}} by {{{name}}}. == tables == {| |- |Orange |Apple |- |Bread |Pie |- |Butter |Ice cream |} {| |+Food complements !Orange !Apple |- |Bread |Pie |- !Butter |Ice cream |} {| |+Food complements !Orange !Apple |- |Bread and cheese |Pie # apple # carrot |} {| | Orange || Apple || more |- | Bread || Pie || more |- | Butter || Ice cream || and more |} {|width=50% ! align="left" width="50%"| Left ! align="right"|Right ! align="center"|Center |- | left || 15.00 || centered |- | more || 2.0 || more |} {| |- |Orange |Apple |- |Bread | {| !fruit !topping |- |apple |ice cream |} |- |Butter |Ice cream |} {| |Orange |}Paragraph after the table. == notes == My note!This. URL note.http://docs.python.org/library/functions.html#range pandoc-1.16.0.2~dfsg/tests/s5-fragment.html0000644000000000000000000000034112645626061017131 0ustar rootroot

              First slide

              • first bullet
              • second bullet

              Math

              • $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$
              pandoc-1.16.0.2~dfsg/tests/tables.native0000644000000000000000000001111412645626061016575 0ustar rootroot[Para [Str "Simple",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] [AlignRight,AlignLeft,AlignCenter,AlignDefault] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignRight,AlignLeft,AlignCenter,AlignDefault] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "indented",Space,Str "two",Space,Str "spaces:"] ,Table [Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] [AlignRight,AlignLeft,AlignCenter,AlignDefault] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [Str "Here's",Space,Str "the",Space,Str "caption.",SoftBreak,Str "It",Space,Str "may",Space,Str "span",Space,Str "multiple",Space,Str "lines."] [AlignCenter,AlignLeft,AlignRight,AlignLeft] [0.15,0.1375,0.1625,0.3375] [[Plain [Str "Centered",SoftBreak,Str "Header"]] ,[Plain [Str "Left",SoftBreak,Str "Aligned"]] ,[Plain [Str "Right",SoftBreak,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",SoftBreak,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignCenter,AlignLeft,AlignRight,AlignLeft] [0.15,0.1375,0.1625,0.3375] [[Plain [Str "Centered",SoftBreak,Str "Header"]] ,[Plain [Str "Left",SoftBreak,Str "Aligned"]] ,[Plain [Str "Right",SoftBreak,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",SoftBreak,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]] ,Para [Str "Table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignRight,AlignLeft,AlignCenter,AlignRight] [0.0,0.0,0.0,0.0] [[] ,[] ,[] ,[]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignCenter,AlignLeft,AlignRight,AlignDefault] [0.15,0.1375,0.1625,0.3375] [[] ,[] ,[] ,[]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",SoftBreak,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]]] pandoc-1.16.0.2~dfsg/tests/lhs-test.native0000644000000000000000000000250312645626061017070 0ustar rootroot[Header 1 ("lhs-test",[],[]) [Str "lhs",Space,Str "test"] ,Para [Code ("",[],[]) "unsplit",Space,Str "is",Space,Str "an",Space,Str "arrow",Space,Str "that",Space,Str "takes",Space,Str "a",Space,Str "pair",Space,Str "of",Space,Str "values",Space,Str "and",Space,Str "combines",Space,Str "them",Space,Str "to",SoftBreak,Str "return",Space,Str "a",Space,Str "single",Space,Str "value:"] ,CodeBlock ("",["sourceCode","literate","haskell"],[]) "unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d\nunsplit = arr . uncurry\n -- arr (\\op (x,y) -> x `op` y)" ,Para [Code ("",[],[]) "(***)",Space,Str "combines",Space,Str "two",Space,Str "arrows",Space,Str "into",Space,Str "a",Space,Str "new",Space,Str "arrow",Space,Str "by",Space,Str "running",Space,Str "the",Space,Str "two",Space,Str "arrows",Space,Str "on",Space,Str "a",SoftBreak,Str "pair",Space,Str "of",Space,Str "values",Space,Str "(one",Space,Str "arrow",Space,Str "on",Space,Str "the",Space,Str "first",Space,Str "item",Space,Str "of",Space,Str "the",Space,Str "pair",Space,Str "and",Space,Str "one",Space,Str "arrow",Space,Str "on",Space,Str "the",SoftBreak,Str "second",Space,Str "item",Space,Str "of",Space,Str "the",Space,Str "pair)."] ,CodeBlock ("",[],[]) "f *** g = first f >>> second g" ,Para [Str "Block",Space,Str "quote:"] ,BlockQuote [Para [Str "foo",Space,Str "bar"]]] pandoc-1.16.0.2~dfsg/tests/s5.native0000644000000000000000000000110412645626061015650 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "Sam",Space,Str "Smith"],MetaInlines [Str "Jen",Space,Str "Jones"]]),("date",MetaInlines [Str "July",Space,Str "15,",Space,Str "2006"]),("title",MetaInlines [Str "My",Space,Str "S5",Space,Str "Document"])]}) [Header 1 ("first-slide",[],[]) [Str "First",Space,Str "slide"] ,BulletList [[Plain [Str "first",Space,Str "bullet"]] ,[Plain [Str "second",Space,Str "bullet"]]] ,Header 1 ("math",[],[]) [Str "Math"] ,BulletList [[Plain [Math InlineMath "\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)-f(x)}{h}"]]]] pandoc-1.16.0.2~dfsg/tests/textile-reader.textile0000644000000000000000000000770412645626061020443 0ustar rootrootThis is a set of tests for pandoc Textile Reader. Part of it comes from John Gruber's markdown test suite. ----- h1. Headers h2. Level 2 with an "embeded link":http://www.example.com h3. Level 3 with *emphasis* h4. Level 4 h5. Level 5 h6. Level 6 h1. Paragraphs Here's a regular paragraph. Line breaks are preserved in textile, so you can not wrap your very long paragraph with your favourite text editor and have it rendered with no break. Here's one with a bullet. * criminey. There should be a paragraph break between here and here. pandoc converts textile. h1. Block Quotes bq. This is a famous quote from somebody. He had a lot of things to say, so the text is really really long and spans on multiple lines. And a following paragraph. h1. Code Blocks Code:
                  ---- (should be four hyphens)
              
                  sub status {
                      print "working";
                  }
              
              	this code block is indented by one tab
              
              And:
              		this code block is indented by two tabs
              
                  These should not be escaped:  \$ \\ \> \[ \{
              
              bc. Code block with .bc continued @@, @. h1. Notextile A block of text can be protected with notextile : No *bold* and * no bullet and inlines can be protected with ==double *equals (=)* markup==. h1. Lists h2. Unordered Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 With line breaks: * asterisk 1 newline * asterisk 2 h2. Ordered Tight: # First # Second # Third h2. Nested * ui 1 ** ui 1.1 ### oi 1.1.1 ### oi 1.1.2 ** ui 1.2 * ui 2 ## oi 2.1 *** ui 2.1.1 *** ui 2.1.2 h2. Issue #1500 * one * two -> and more h2. Issue #1513 List: * one * two h2. Definition List - coffee := Hot and black - tea := Also hot, but a little less black - milk := Nourishing beverage for baby cows. Cold drink that goes great with cookies.=: - beer := fresh and bitter h1. Inline Markup This is _emphasized_, and so __is this__. This is *strong*, and so **is this**. Hyphenated-words-are-ok, as well as strange_underscore_notation. A "*strong link*":http://www.foobar.com. _*This is strong and em.*_ So is *_this_* word and __**that one**__. -This is strikeout and *strong*- Superscripts: a[^bc^]d a ^*hello*^ a[^hello there^]. Subscripts: ~here~ H[ ~2~]O, H[ ~23~]O, H[ ~many of them~]O. Dashes : How cool -- automatic dashes. Elipses : He thought and thought ... and then thought some more. Quotes and apostrophes : "I'd like to thank you" for example. h1. Links h2. Explicit Just a "url":http://www.url.com "Email link":mailto:nobody@nowhere.net Automatic linking to "$":http://www.example.com. "Example":http://www.example.com/: Example of a link followed by a colon. A link["with brackets":http://www.example.com]and no spaces. h1. Tables Textile allows tables with and without headers : h2. Without headers | name | age | sex | | joan | 24 | f | | archie | 29 | m | | bella | 45 | f | and some text following ... h2. With headers |_. name |_. age |_. sex | | joan | 24 | f | | archie | 29 | m | | bella | 45 | f | h1. Images Textile inline image syntax, like here !this_is_an_image.png(this is the alt text)! and here !this_is_an_image.png!. h1. Attributes h2[en]{color:red}(foo bar #ident). HTML and CSS attributes are parsed in headers. as well as *(foo)inline attributes* of %{color:red} all kind% p{color:green}. and paragraph attributes, and table attributes. table{foo:bar}. | name | age | sex | | joan | 24 | f | h1. Entities * & h1. Raw HTML However, raw HTML inlines are accepted, as well as :
              any *Raw HTML Block* with bold
              Html blocks can
              interrupt paragraphs
              as well. Can you prove that 2 < 3 ? h1. Acronyms and marks PBS(Public Broadcasting System) Hi(tm) Hi (TM) (r) Hi(r) Hi(c)2008 (C) 2008 h1. Footnotes A note.[1] Another note[2]. fn1. The note is here! fn2. Other note. h1. Comment blocks ###. my comment is here. not a comment. pandoc-1.16.0.2~dfsg/tests/lhs-test.markdown+lhs0000644000000000000000000000073712645626061020215 0ustar rootrootlhs test ======== `unsplit` is an arrow that takes a pair of values and combines them to return a single value: > unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d > unsplit = arr . uncurry > -- arr (\op (x,y) -> x `op` y) `(***)` combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). f *** g = first f >>> second g Block quote: > foo bar pandoc-1.16.0.2~dfsg/tests/lhs-test.html0000644000000000000000000000664412645626061016560 0ustar rootroot

              lhs test

              unsplit is an arrow that takes a pair of values and combines them to return a single value:

              unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
              unsplit = arr . uncurry
                        -- arr (\op (x,y) -> x `op` y)

              (***) combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair).

              f *** g = first f >>> second g

              Block quote:

              foo bar

              pandoc-1.16.0.2~dfsg/tests/tables.texinfo0000644000000000000000000000425512645626061016773 0ustar rootroot@node Top @top Top Simple table with caption: @float @multitable {Right} {Left} {Center} {Default} @headitem Right @tab Left @tab Center @tab Default @item 12 @tab 12 @tab 12 @tab 12 @item 123 @tab 123 @tab 123 @tab 123 @item 1 @tab 1 @tab 1 @tab 1 @end multitable @caption{Demonstration of simple table syntax.} @end float Simple table without caption: @multitable {Right} {Left} {Center} {Default} @headitem Right @tab Left @tab Center @tab Default @item 12 @tab 12 @tab 12 @tab 12 @item 123 @tab 123 @tab 123 @tab 123 @item 1 @tab 1 @tab 1 @tab 1 @end multitable Simple table indented two spaces: @float @multitable {Right} {Left} {Center} {Default} @headitem Right @tab Left @tab Center @tab Default @item 12 @tab 12 @tab 12 @tab 12 @item 123 @tab 123 @tab 123 @tab 123 @item 1 @tab 1 @tab 1 @tab 1 @end multitable @caption{Demonstration of simple table syntax.} @end float Multiline table with caption: @float @multitable @columnfractions 0.15 0.14 0.16 0.34 @headitem Centered Header @tab Left Aligned @tab Right Aligned @tab Default aligned @item First @tab row @tab 12.0 @tab Example of a row that spans multiple lines. @item Second @tab row @tab 5.0 @tab Here's another one. Note the blank line between rows. @end multitable @caption{Here's the caption. It may span multiple lines.} @end float Multiline table without caption: @multitable @columnfractions 0.15 0.14 0.16 0.34 @headitem Centered Header @tab Left Aligned @tab Right Aligned @tab Default aligned @item First @tab row @tab 12.0 @tab Example of a row that spans multiple lines. @item Second @tab row @tab 5.0 @tab Here's another one. Note the blank line between rows. @end multitable Table without column headers: @multitable {123} {123} {123} {123} @item 12 @tab 12 @tab 12 @tab 12 @item 123 @tab 123 @tab 123 @tab 123 @item 1 @tab 1 @tab 1 @tab 1 @end multitable Multiline table without column headers: @multitable @columnfractions 0.15 0.14 0.16 0.34 @item First @tab row @tab 12.0 @tab Example of a row that spans multiple lines. @item Second @tab row @tab 5.0 @tab Here's another one. Note the blank line between rows. @end multitable pandoc-1.16.0.2~dfsg/tests/haddock-reader.native0000644000000000000000000001044212645626061020163 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Para [Str "This",Space,Str "file",Space,Str "tests",Space,Str "the",Space,Str "Pandoc",Space,Str "reader",Space,Str "for",Space,Str "Haddock.",SoftBreak,Str "We've",Space,Str "borrowed",Space,Str "examples",Space,Str "from",Space,Str "Haddock's",Space,Str "documentation:",Space,Link ("",[],[]) [Str "http://www.haskell.org/haddock/doc/html/ch03s08.html"] ("http://www.haskell.org/haddock/doc/html/ch03s08.html","http://www.haskell.org/haddock/doc/html/ch03s08.html"),Str "."] ,Para [Str "The",Space,Str "following",Space,Str "characters",Space,Str "have",Space,Str "special",Space,Str "meanings",Space,Str "in",Space,Str "Haddock,",Space,Str "/,",Space,Str "',",Space,Str "`,",Space,Str "\",",Space,Str "@,",Space,Str "<,",Space,Str "so",Space,Str "they",Space,Str "must",Space,Str "be",Space,Str "escaped."] ,Para [Str "*",Space,Str "This",Space,Str "is",Space,Str "a",Space,Str "paragraph,",Space,Str "not",Space,Str "a",Space,Str "list",Space,Str "item.",SoftBreak,Str ">",Space,Str "This",Space,Str "sentence",Space,Str "is",Space,Str "not",Space,Str "code.",SoftBreak,Str ">>>",Space,Str "This",Space,Str "is",Space,Str "not",Space,Str "an",Space,Str "example."] ,Para [Str "The",Space,Str "references",Space,Str "\955,",Space,Str "\955",Space,Str "and",Space,Str "\955",Space,Str "all",Space,Str "represent",Space,Str "the",Space,Str "lower-case",Space,Str "letter",Space,Str "lambda."] ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "code",Space,Str "block:"] ,CodeBlock ("",[],[]) "map :: (a -> b) -> [a] -> [b]\nmap _ [] = []\nmap f (x:xs) = f x : map f xs" ,Para [Str "This",Space,Str "is",Space,Str "another",Space,Str "code",Space,Str "block:"] ,Para [Code ("",[],[]) "f x = x + x.",LineBreak,Code ("",[],[]) "The @...@ code block ",Emph [Code ("",[],[]) "interprets markup normally"],Code ("",[],[]) ".",Code ("",["haskell","module"],[]) "Module.Foo",Code ("",[],[]) "",LineBreak,Code ("",[],[]) "\"Hello World\""] ,Para [Str "Haddock",Space,Str "supports",Space,Str "REPL",Space,Str "examples:"] ,Para [Code ("",["prompt"],[]) ">>>",Space,Code ("",["haskell","expr"],[]) "fib 10",LineBreak,Code ("",["result"],[]) "55"] ,Para [Code ("",["prompt"],[]) ">>>",Space,Code ("",["haskell","expr"],[]) "putStrLn \"foo\\nbar\"",LineBreak,Code ("",["result"],[]) "foo",LineBreak,Code ("",["result"],[]) "bar"] ,Para [Str "That",Space,Str "was",Space,Emph [Str "really",Space,Str "cool"],Str "!",SoftBreak,Str "I",Space,Str "had",Space,Str "no",Space,Str "idea",Space,Code ("",[],[]) "fib 10 = 55",Str "."] ,Para [Str "This",Space,Str "module",Space,Str "defines",Space,Str "the",Space,Str "type",Space,Code ("",["haskell","identifier"],[]) "T",Str ".",SoftBreak,Str "The",Space,Str "identifier",Space,Code ("",["haskell","identifier"],[]) "M.T",Space,Str "is",Space,Str "not",Space,Str "in",Space,Str "scope",SoftBreak,Str "I",Space,Str "don't",Space,Str "have",Space,Str "to",Space,Str "escape",Space,Str "my",Space,Str "apostrophes;",Space,Str "great,",Space,Str "isn't",Space,Str "it?",SoftBreak,Str "This",Space,Str "is",Space,Str "a",Space,Str "reference",Space,Str "to",Space,Str "the",Space,Code ("",["haskell","module"],[]) "Foo",Space,Str "module."] ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "bulleted",Space,Str "list:"] ,BulletList [[Para [Str "first",Space,Str "item"]] ,[Para [Str "second",Space,Str "item"]]] ,Para [Str "This",Space,Str "is",Space,Str "an",Space,Str "enumerated",Space,Str "list:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Para [Str "first",Space,Str "item"]] ,[Para [Str "second",Space,Str "item"]]] ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "definition",Space,Str "list:"] ,DefinitionList [([Code ("",[],[]) "foo"], [[Para [Str "The",Space,Str "description",Space,Str "of",Space,Code ("",[],[]) "foo",Str "."]]]) ,([Code ("",[],[]) "bar"], [[Para [Str "The",Space,Str "description",Space,Str "of",Space,Code ("",[],[]) "bar",Str "."]]])] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "link:",Space,Link ("",[],[]) [Str "http://haskell.org"] ("http://haskell.org","http://haskell.org")] ,Para [Link ("",[],[]) [Str "Haskell"] ("http://haskell.org","http://haskell.org"),Space,Str "is",Space,Str "a",Space,Str "fun",Space,Str "language!"] ,Para [Link ("",[],[]) [Str "Click",Space,Str "Here!"] ("http://example.com","http://example.com")]] pandoc-1.16.0.2~dfsg/tests/media/0000755000000000000000000000000012645626061015174 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/media/rId26.jpg0000644000000000000000000000246412645626061016572 0ustar rootrootJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((221!1Q"Aaq#$23Bb ?"Ku-}_:\{ i˧\ z%0Z|E Ei%T!ϠeI=: ÕHlWҳgh2O /1 qeHxvN joHEd|fI!brq1JeôJUU="Dj#lM;9_5 񬁹0>PI$:h>RB>X) ]?xSGب姥yuQr'Tv#mqU[_ZlWS0Ɍ:ǹA:s;H }|U<0SMDnLf :qM1UTZNX$Ùi]cGZFQjUPߣvMAYyM憵bIOd W.*j^2hj-= s6CU pq\(mI4a"DN9zÂf"hpe#;Ol~A~PY C?TAu~'l59m4N{~)knz󂭎$L.dPH79` ;jOv!D;>gml Z:b3v''>[mdC򖞦hxFf lzc;$W}6nƉu 0ƨnIm'ԤyH*('adeKU+*Ȋ ԖI;gu` =ƨ,74  (~f8ז d:7:*N1\i[ )Tq=S2q s]kp٘+\'7OsA))ir_p! 92TET,r$AVtXnB$:"z ~O}pandoc-1.16.0.2~dfsg/tests/media/rId27.jpg0000644000000000000000000000246412645626061016573 0ustar rootrootJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((221!1Q"Aaq#$23Bb ?"Ku-}_:\{ i˧\ z%0Z|E Ei%T!ϠeI=: ÕHlWҳgh2O /1 qeHxvN joHEd|fI!brq1JeôJUU="Dj#lM;9_5 񬁹0>PI$:h>RB>X) ]?xSGب姥yuQr'Tv#mqU[_ZlWS0Ɍ:ǹA:s;H }|U<0SMDnLf :qM1UTZNX$Ùi]cGZFQjUPߣvMAYyM憵bIOd W.*j^2hj-= s6CU pq\(mI4a"DN9zÂf"hpe#;Ol~A~PY C?TAu~'l59m4N{~)knz󂭎$L.dPH79` ;jOv!D;>gml Z:b3v''>[mdC򖞦hxFf lzc;$W}6nƉu 0ƨnIm'ԤyH*('adeKU+*Ȋ ԖI;gu` =ƨ,74  (~f8ז d:7:*N1\i[ )Tq=S2q s]kp٘+\'7OsA))ir_p! 92TET,r$AVtXnB$:"z ~O}pandoc-1.16.0.2~dfsg/tests/media/rId25.jpg0000644000000000000000000000246412645626061016571 0ustar rootrootJFIFxxC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((221!1Q"Aaq#$23Bb ?"Ku-}_:\{ i˧\ z%0Z|E Ei%T!ϠeI=: ÕHlWҳgh2O /1 qeHxvN joHEd|fI!brq1JeôJUU="Dj#lM;9_5 񬁹0>PI$:h>RB>X) ]?xSGب姥yuQr'Tv#mqU[_ZlWS0Ɍ:ǹA:s;H }|U<0SMDnLf :qM1UTZNX$Ùi]cGZFQjUPߣvMAYyM憵bIOd W.*j^2hj-= s6CU pq\(mI4a"DN9zÂf"hpe#;Ol~A~PY C?TAu~'l59m4N{~)knz󂭎$L.dPH79` ;jOv!D;>gml Z:b3v''>[mdC򖞦hxFf lzc;$W}6nƉu 0ƨnIm'ԤyH*('adeKU+*Ȋ ԖI;gu` =ƨ,74  (~f8ז d:7:*N1\i[ )Tq=S2q s]kp٘+\'7OsA))ir_p! 92TET,r$AVtXnB$:"z ~O}pandoc-1.16.0.2~dfsg/tests/tables.docbook0000644000000000000000000001653612645626061016744 0ustar rootroot Simple table with caption: Demonstration of simple table syntax. Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
              Simple table without caption: Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Demonstration of simple table syntax. Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
              Multiline table with caption: Here's the caption. It may span multiple lines. Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.
              Multiline table without caption: Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. Table without column headers: 12 12 12 12 123 123 123 123 1 1 1 1 Multiline table without column headers: First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. pandoc-1.16.0.2~dfsg/tests/writer.texinfo0000644000000000000000000003463112645626061017036 0ustar rootroot\input texinfo @documentencoding UTF-8 @macro textstrikeout{text} ~~\text\~~ @end macro @macro textsubscript{text} @iftex @textsubscript{\text\} @end iftex @ifnottex _@{\text\@} @end ifnottex @end macro @macro textsuperscript{text} @iftex @textsuperscript{\text\} @end iftex @ifnottex ^@{\text\@} @end ifnottex @end macro @ifnottex @paragraphindent 0 @end ifnottex @titlepage @title Pandoc Test Suite @author John MacFarlane @author Anonymous July 17, 2006 @end titlepage @node Top @top Pandoc Test Suite This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @menu * Headers:: * Level 1:: * Paragraphs:: * Block Quotes:: * Code Blocks:: * Lists:: * Definition Lists:: * HTML Blocks:: * Inline Markup:: * Smart quotes ellipses dashes:: * LaTeX:: * Special Characters:: * Links:: * Images:: * Footnotes:: @end menu @node Headers @chapter Headers @anchor{#headers} @menu * Level 2 with an embedded link:: @end menu @node Level 2 with an embedded link @section Level 2 with an @uref{/url,embedded link} @anchor{#level-2-with-an-embedded-link} @menu * Level 3 with emphasis:: @end menu @node Level 3 with emphasis @subsection Level 3 with @emph{emphasis} @anchor{#level-3-with-emphasis} @menu * Level 4:: @end menu @node Level 4 @subsubsection Level 4 @anchor{#level-4} Level 5 @node Level 1 @chapter Level 1 @anchor{#level-1} @menu * Level 2 with emphasis:: * Level 2:: @end menu @node Level 2 with emphasis @section Level 2 with @emph{emphasis} @anchor{#level-2-with-emphasis} @menu * Level 3:: @end menu @node Level 3 @subsection Level 3 @anchor{#level-3} with no blank line @node Level 2 @section Level 2 @anchor{#level-2} with no blank line @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Paragraphs @chapter Paragraphs @anchor{#paragraphs} Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break@* here. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Block Quotes @chapter Block Quotes @anchor{#block-quotes} E-mail style: @quotation This is a block quote. It is pretty short. @end quotation @quotation Code in a block quote: @verbatim sub status { print "working"; } @end verbatim A list: @enumerate @item item one @item item two @end enumerate Nested block quotes: @quotation nested @end quotation @quotation nested @end quotation @end quotation This should not be a block quote: 2 > 1. And a following paragraph. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Code Blocks @chapter Code Blocks @anchor{#code-blocks} Code: @verbatim ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab @end verbatim And: @verbatim this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ @end verbatim @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Lists @chapter Lists @anchor{#lists} @menu * Unordered:: * Ordered:: * Nested:: * Tabs and spaces:: * Fancy list markers:: @end menu @node Unordered @section Unordered @anchor{#unordered} Asterisks tight: @itemize @item asterisk 1 @item asterisk 2 @item asterisk 3 @end itemize Asterisks loose: @itemize @item asterisk 1 @item asterisk 2 @item asterisk 3 @end itemize Pluses tight: @itemize @item Plus 1 @item Plus 2 @item Plus 3 @end itemize Pluses loose: @itemize @item Plus 1 @item Plus 2 @item Plus 3 @end itemize Minuses tight: @itemize @item Minus 1 @item Minus 2 @item Minus 3 @end itemize Minuses loose: @itemize @item Minus 1 @item Minus 2 @item Minus 3 @end itemize @node Ordered @section Ordered @anchor{#ordered} Tight: @enumerate @item First @item Second @item Third @end enumerate and: @enumerate @item One @item Two @item Three @end enumerate Loose using tabs: @enumerate @item First @item Second @item Third @end enumerate and using spaces: @enumerate @item One @item Two @item Three @end enumerate Multiple paragraphs: @enumerate @item Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. @item Item 2. @item Item 3. @end enumerate @node Nested @section Nested @anchor{#nested} @itemize @item Tab @itemize @item Tab @itemize @item Tab @end itemize @end itemize @end itemize Here's another: @enumerate @item First @item Second: @itemize @item Fee @item Fie @item Foe @end itemize @item Third @end enumerate Same thing but with paragraphs: @enumerate @item First @item Second: @itemize @item Fee @item Fie @item Foe @end itemize @item Third @end enumerate @node Tabs and spaces @section Tabs and spaces @anchor{#tabs-and-spaces} @itemize @item this is a list item indented with tabs @item this is a list item indented with spaces @itemize @item this is an example list item indented with tabs @item this is an example list item indented with spaces @end itemize @end itemize @node Fancy list markers @section Fancy list markers @anchor{#fancy-list-markers} @enumerate 2 @item begins with 2 @item and now 3 with a continuation @enumerate 4 @item sublist with roman numerals, starting with 4 @item more items @enumerate A @item a subsublist @item a subsublist @end enumerate @end enumerate @end enumerate Nesting: @enumerate A @item Upper Alpha @enumerate @item Upper Roman. @enumerate 6 @item Decimal start with 6 @enumerate c @item Lower alpha with paren @end enumerate @end enumerate @end enumerate @end enumerate Autonumbering: @enumerate @item Autonumber. @item More. @enumerate @item Nested. @end enumerate @end enumerate Should not be a list item: M.A.@ 2007 B. Williams @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Definition Lists @chapter Definition Lists @anchor{#definition-lists} Tight using spaces: @table @asis @item apple red fruit @item orange orange fruit @item banana yellow fruit @end table Tight using tabs: @table @asis @item apple red fruit @item orange orange fruit @item banana yellow fruit @end table Loose: @table @asis @item apple red fruit @item orange orange fruit @item banana yellow fruit @end table Multiple blocks with italics: @table @asis @item @emph{apple} red fruit contains seeds, crisp, pleasant to taste @item @emph{orange} orange fruit @verbatim { orange code block } @end verbatim @quotation orange block quote @end quotation @end table Multiple definitions, tight: @table @asis @item apple red fruit computer @item orange orange fruit bank @end table Multiple definitions, loose: @table @asis @item apple red fruit computer @item orange orange fruit bank @end table Blank line after term, indented marker, alternate markers: @table @asis @item apple red fruit computer @item orange orange fruit @enumerate @item sublist @item sublist @end enumerate @end table @node HTML Blocks @chapter HTML Blocks @anchor{#html-blocks} Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is @emph{emphasized} And this is @strong{strong} Here's a simple block: foo This should be a code block, though: @verbatim
              foo
              @end verbatim As should this: @verbatim
              foo
              @end verbatim Now, nested: foo This should just be an HTML comment: Multiline: Code block: @verbatim @end verbatim Just plain comment, with trailing spaces on the line: Code: @verbatim
              @end verbatim Hr's: @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Inline Markup @chapter Inline Markup @anchor{#inline-markup} This is @emph{emphasized}, and so @emph{is this}. This is @strong{strong}, and so @strong{is this}. An @emph{@uref{/url,emphasized link}}. @strong{@emph{This is strong and em.}} So is @strong{@emph{this}} word. @strong{@emph{This is strong and em.}} So is @strong{@emph{this}} word. This is code: @code{>}, @code{$}, @code{\}, @code{\$}, @code{}. @textstrikeout{This is @emph{strikeout}.} Superscripts: a@textsuperscript{bc}d a@textsuperscript{@emph{hello}} a@textsuperscript{hello@ there}. Subscripts: H@textsubscript{2}O, H@textsubscript{23}O, H@textsubscript{many@ of@ them}O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Smart quotes ellipses dashes @chapter Smart quotes, ellipses, dashes @anchor{#smart-quotes-ellipses-dashes} ``Hello,'' said the spider. ```Shelob' is my name.'' `A', `B', and `C' are letters. `Oak,' `elm,' and `beech' are names of trees. So is `pine.' `He said, ``I want to go.''' Were you alive in the 70's? Here is some quoted `@code{code}' and a ``@uref{http://example.com/?foo=1&bar=2,quoted link}''. Some dashes: one---two --- three---four --- five. Dashes between numbers: 5--7, 255--66, 1987--1999. Ellipses@dots{}and@dots{}and@dots{}. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node LaTeX @chapter LaTeX @anchor{#latex} @itemize @item @tex \cite[22-23]{smith.1899} @end tex @item @math{2+2=4} @item @math{x \in y} @item @math{\alpha \wedge \omega} @item @math{223} @item @math{p}-Tree @item Here's some display math: @math{\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}} @item Here's one that has a line break in it: @math{\alpha + \omega \times x^2}. @end itemize These shouldn't be math: @itemize @item To get the famous equation, write @code{$e = mc^2$}. @item $22,000 is a @emph{lot} of money. So is $34,000. (It worked if ``lot'' is emphasized.) @item Shoes ($20) and socks ($5). @item Escaped @code{$}: $73 @emph{this should be emphasized} 23$. @end itemize Here's a LaTeX table: @tex \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} @end tex @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Special Characters @chapter Special Characters @anchor{#special-characters} Here is some unicode: @itemize @item I hat: Î @item o umlaut: ö @item section: § @item set membership: ∈ @item copyright: © @end itemize AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: @{ Right brace: @} Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Links @chapter Links @anchor{#links} @menu * Explicit:: * Reference:: * With ampersands:: * Autolinks:: @end menu @node Explicit @section Explicit @anchor{#explicit} Just a @uref{/url/,URL}. @uref{/url/,URL and title}. @uref{/url/,URL and title}. @uref{/url/,URL and title}. @uref{/url/,URL and title} @uref{/url/,URL and title} @uref{/url/with_underscore,with_underscore} @uref{mailto:nobody@@nowhere.net,Email link} @uref{,Empty}. @node Reference @section Reference @anchor{#reference} Foo @uref{/url/,bar}. Foo @uref{/url/,bar}. Foo @uref{/url/,bar}. With @uref{/url/,embedded [brackets]}. @uref{/url/,b} by itself should be a link. Indented @uref{/url,once}. Indented @uref{/url,twice}. Indented @uref{/url,thrice}. This should [not][] be a link. @verbatim [not]: /url @end verbatim Foo @uref{/url/,bar}. Foo @uref{/url/,biz}. @node With ampersands @section With ampersands @anchor{#with-ampersands} Here's a @uref{http://example.com/?foo=1&bar=2,link with an ampersand in the URL}. Here's a link with an amersand in the link text: @uref{http://att.com/,AT&T}. Here's an @uref{/script?foo=1&bar=2,inline link}. Here's an @uref{/script?foo=1&bar=2,inline link in pointy braces}. @node Autolinks @section Autolinks @anchor{#autolinks} With an ampersand: @url{http://example.com/?foo=1&bar=2} @itemize @item In a list? @item @url{http://example.com/} @item It should. @end itemize An e-mail address: @uref{mailto:nobody@@nowhere.net,nobody@@nowhere.net} @quotation Blockquoted: @url{http://example.com/} @end quotation Auto-links should not occur here: @code{} @verbatim or here: @end verbatim @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Images @chapter Images @anchor{#images} From ``Voyage dans la Lune'' by Georges Melies (1902): @float @image{lalune,,,lalune,jpg} @caption{lalune} @end float Here is a movie @image{movie,,,movie,jpg} icon. @iftex @bigskip@hrule@bigskip @end iftex @ifnottex ------------------------------------------------------------------------ @end ifnottex @node Footnotes @chapter Footnotes @anchor{#footnotes} Here is a footnote reference,@footnote{Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.} and another.@footnote{Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). @verbatim { } @end verbatim If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.} This should @emph{not} be a footnote reference, because it contains a space.[^my note] Here is an inline note.@footnote{This is @emph{easier} to type. Inline notes may contain @uref{http://google.com,links} and @code{]} verbatim characters, as well as [bracketed text].} @quotation Notes can go in quotes.@footnote{In quote.} @end quotation @enumerate @item And in list items.@footnote{In list.} @end enumerate This paragraph should not be part of the note, as it is not indented. @bye pandoc-1.16.0.2~dfsg/tests/twiki-reader.twiki0000644000000000000000000000606612645626062017566 0ustar rootroot---+ header ---++ header level two ---+++ header level 3 ---++++ header _level_ four ---+++++ header level 5 ---++++++ header level 6 ---+++++++ not a header --++ not a header ---+ emph and strong _emph_ *strong* __strong and emph__ *emph inside strong* *strong with emph* _strong inside emph_ ---+ horizontal rule top --- bottom --- ---+ nop _not emph_ ---+ entities hi & low hi & low Gödel ̉પ ---+ comments inline comment between blocks ---+ linebreaks hi%BR%there hi%BR% there ---+ inline code *→* =typed= >>= ---+ code blocks case xs of (_:_) -> reverse xs [] -> ['*'] case xs of (_:_) -> reverse xs [] -> ['*'] ---+ block quotes Regular paragraph
              This is a block quote. With two paragraphs.
              Nother paragraph. ---+ external links [[http://google.com][Google search engine]] http://pandoc.org [[http://google.com]] [[http://yahoo.com]] [[mailto:info@example.org][email me]] !http://google.com http://google.com http://google.com !info@example.org info@example.org info@example.org ---+ lists * Start each line * with an asterisk (*). * More asterisks gives deeper * and deeper levels. * Line breaks%BR%don't break levels. * Continuations are also possible * and do not break the list flow * Level one Any other start ends the list. 1. Start each line 1. with a number (1.). 1. More number signs gives deeper 1. and deeper 1. levels. 1. Line breaks%BR%don't break levels. 1. Blank lines 1. end the list and start another. Any other start also ends the list. $ item 1: definition 1 $ item 2: definition 2-1 definition 2-2 $ item _3_: definition _3_ 1. one 1. two * two point one * two point two 1. three $ three item one: three def one 1. four $ four def one: this is a continuation 1. five 1. five sub 1 1. five sub 1 sub 1 1. five sub 2 1. other I. list I. styles 1. are i. also i. possible 1. all a. the a. different a. styles 1. are A. implemented A. and A. supported ---+ tables |Orange|Apple| |Bread|Pie| |Butter|Ice cream| |*Orange*|*Apple*| |Bread|Pie| |*Butter*|Ice cream| |*Orange*|*Apple*| |Bread%BR%%BR%and cheese|Pie%BR%%BR%*apple* and carrot| | Orange | Apple | more | | Bread | Pie | more | | Butter | Ice cream | and more | ---+ macros %TEST% %TEST{}% %TEST{content with spaces}% %TEST{"content with spaces"}% %TEST{"content with spaces" ARG1="test"}% %TEST{content with spaces ARG1=test}% %TEST{ARG1=test content with spaces}% %TEST{ARG1=test ARG2=test2}% %TEST{ARG1="test" ARG2="test2"}% %TEST{ARG1="test" ARG2="test2" multiline does also work}% pandoc-1.16.0.2~dfsg/tests/writer.man0000644000000000000000000002447712645626061016144 0ustar rootroot.TH "Pandoc Test Suite" "" "July 17, 2006" "" "" .hy .PP This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. .PP * * * * * .SH Headers .SS Level 2 with an embedded link (/url) .SS Level 3 with \f[I]emphasis\f[] .SS Level 4 .SS Level 5 .SH Level 1 .SS Level 2 with \f[I]emphasis\f[] .SS Level 3 .PP with no blank line .SS Level 2 .PP with no blank line .PP * * * * * .SH Paragraphs .PP Here's a regular paragraph. .PP In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard\-wrapped line in the middle of a paragraph looked like a list item. .PP Here's one with a bullet. * criminey. .PP There should be a hard line break .PD 0 .P .PD here. .PP * * * * * .SH Block Quotes .PP E\-mail style: .RS .PP This is a block quote. It is pretty short. .RE .RS .PP Code in a block quote: .IP .nf \f[C] sub\ status\ { \ \ \ \ print\ "working"; } \f[] .fi .PP A list: .IP "1." 3 item one .IP "2." 3 item two .PP Nested block quotes: .RS .PP nested .RE .RS .PP nested .RE .RE .PP This should not be a block quote: 2 > 1. .PP And a following paragraph. .PP * * * * * .SH Code Blocks .PP Code: .IP .nf \f[C] \-\-\-\-\ (should\ be\ four\ hyphens) sub\ status\ { \ \ \ \ print\ "working"; } this\ code\ block\ is\ indented\ by\ one\ tab \f[] .fi .PP And: .IP .nf \f[C] \ \ \ \ this\ code\ block\ is\ indented\ by\ two\ tabs These\ should\ not\ be\ escaped:\ \ \\$\ \\\\\ \\>\ \\[\ \\{ \f[] .fi .PP * * * * * .SH Lists .SS Unordered .PP Asterisks tight: .IP \[bu] 2 asterisk 1 .IP \[bu] 2 asterisk 2 .IP \[bu] 2 asterisk 3 .PP Asterisks loose: .IP \[bu] 2 asterisk 1 .IP \[bu] 2 asterisk 2 .IP \[bu] 2 asterisk 3 .PP Pluses tight: .IP \[bu] 2 Plus 1 .IP \[bu] 2 Plus 2 .IP \[bu] 2 Plus 3 .PP Pluses loose: .IP \[bu] 2 Plus 1 .IP \[bu] 2 Plus 2 .IP \[bu] 2 Plus 3 .PP Minuses tight: .IP \[bu] 2 Minus 1 .IP \[bu] 2 Minus 2 .IP \[bu] 2 Minus 3 .PP Minuses loose: .IP \[bu] 2 Minus 1 .IP \[bu] 2 Minus 2 .IP \[bu] 2 Minus 3 .SS Ordered .PP Tight: .IP "1." 3 First .IP "2." 3 Second .IP "3." 3 Third .PP and: .IP "1." 3 One .IP "2." 3 Two .IP "3." 3 Three .PP Loose using tabs: .IP "1." 3 First .IP "2." 3 Second .IP "3." 3 Third .PP and using spaces: .IP "1." 3 One .IP "2." 3 Two .IP "3." 3 Three .PP Multiple paragraphs: .IP "1." 3 Item 1, graf one. .RS 4 .PP Item 1. graf two. The quick brown fox jumped over the lazy dog's back. .RE .IP "2." 3 Item 2. .IP "3." 3 Item 3. .SS Nested .IP \[bu] 2 Tab .RS 2 .IP \[bu] 2 Tab .RS 2 .IP \[bu] 2 Tab .RE .RE .PP Here's another: .IP "1." 3 First .IP "2." 3 Second: .RS 4 .IP \[bu] 2 Fee .IP \[bu] 2 Fie .IP \[bu] 2 Foe .RE .IP "3." 3 Third .PP Same thing but with paragraphs: .IP "1." 3 First .IP "2." 3 Second: .RS 4 .IP \[bu] 2 Fee .IP \[bu] 2 Fie .IP \[bu] 2 Foe .RE .IP "3." 3 Third .SS Tabs and spaces .IP \[bu] 2 this is a list item indented with tabs .IP \[bu] 2 this is a list item indented with spaces .RS 2 .IP \[bu] 2 this is an example list item indented with tabs .IP \[bu] 2 this is an example list item indented with spaces .RE .SS Fancy list markers .IP "(2)" 4 begins with 2 .IP "(3)" 4 and now 3 .RS 4 .PP with a continuation .IP "iv." 4 sublist with roman numerals, starting with 4 .IP " v." 4 more items .RS 4 .IP "(A)" 4 a subsublist .IP "(B)" 4 a subsublist .RE .RE .PP Nesting: .IP "A." 3 Upper Alpha .RS 4 .IP "I." 3 Upper Roman. .RS 4 .IP "(6)" 4 Decimal start with 6 .RS 4 .IP "c)" 3 Lower alpha with paren .RE .RE .RE .PP Autonumbering: .IP "1." 3 Autonumber. .IP "2." 3 More. .RS 4 .IP "1." 3 Nested. .RE .PP Should not be a list item: .PP M.A.\ 2007 .PP B. Williams .PP * * * * * .SH Definition Lists .PP Tight using spaces: .TP .B apple red fruit .RS .RE .TP .B orange orange fruit .RS .RE .TP .B banana yellow fruit .RS .RE .PP Tight using tabs: .TP .B apple red fruit .RS .RE .TP .B orange orange fruit .RS .RE .TP .B banana yellow fruit .RS .RE .PP Loose: .TP .B apple red fruit .RS .RE .TP .B orange orange fruit .RS .RE .TP .B banana yellow fruit .RS .RE .PP Multiple blocks with italics: .TP .B \f[I]apple\f[] red fruit .RS .PP contains seeds, crisp, pleasant to taste .RE .TP .B \f[I]orange\f[] orange fruit .RS .IP .nf \f[C] {\ orange\ code\ block\ } \f[] .fi .RS .PP orange block quote .RE .RE .PP Multiple definitions, tight: .TP .B apple red fruit .RS .RE computer .RS .RE .TP .B orange orange fruit .RS .RE bank .RS .RE .PP Multiple definitions, loose: .TP .B apple red fruit .RS .RE computer .RS .RE .TP .B orange orange fruit .RS .RE bank .RS .RE .PP Blank line after term, indented marker, alternate markers: .TP .B apple red fruit .RS .RE computer .RS .RE .TP .B orange orange fruit .RS .IP "1." 3 sublist .IP "2." 3 sublist .RE .SH HTML Blocks .PP Simple block on one line: foo .PP And nested without indentation: .PP foo bar .PP Interpreted markdown in a table: This is \f[I]emphasized\f[] And this is \f[B]strong\f[] .PP Here's a simple block: .PP foo .PP This should be a code block, though: .IP .nf \f[C]
              \ \ \ \ foo
              \f[] .fi .PP As should this: .IP .nf \f[C]
              foo
              \f[] .fi .PP Now, nested: foo .PP This should just be an HTML comment: .PP Multiline: .PP Code block: .IP .nf \f[C] \f[] .fi .PP Just plain comment, with trailing spaces on the line: .PP Code: .IP .nf \f[C] \f[] .fi .PP Hr's: .PP * * * * * .SH Inline Markup .PP This is \f[I]emphasized\f[], and so \f[I]is this\f[]. .PP This is \f[B]strong\f[], and so \f[B]is this\f[]. .PP An \f[I]emphasized link (/url)\f[]. .PP \f[B]\f[I]This is strong and em.\f[]\f[] .PP So is \f[B]\f[I]this\f[]\f[] word. .PP \f[B]\f[I]This is strong and em.\f[]\f[] .PP So is \f[B]\f[I]this\f[]\f[] word. .PP This is code: \f[C]>\f[], \f[C]$\f[], \f[C]\\\f[], \f[C]\\$\f[], \f[C]\f[]. .PP [STRIKEOUT:This is \f[I]strikeout\f[].] .PP Superscripts: a^bc^d a^\f[I]hello\f[]^ a^hello\ there^. .PP Subscripts: H~2~O, H~23~O, H~many\ of\ them~O. .PP These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. .PP * * * * * .SH Smart quotes, ellipses, dashes .PP \[lq]Hello,\[rq] said the spider. \[lq]`Shelob' is my name.\[rq] .PP `A', `B', and `C' are letters. .PP `Oak,' `elm,' and `beech' are names of trees. So is `pine.' .PP `He said, \[lq]I want to go.\[rq]' Were you alive in the 70's? .PP Here is some quoted `\f[C]code\f[]' and a \[lq]quoted link (http://example.com/?foo=1&bar=2)\[rq]. .PP Some dashes: one\[em]two \[em] three\[em]four \[em] five. .PP Dashes between numbers: 5\[en]7, 255\[en]66, 1987\[en]1999. .PP Ellipses\&...and\&...and\&.... .PP * * * * * .SH LaTeX .IP \[bu] 2 .IP \[bu] 2 2 + 2 = 4 .IP \[bu] 2 \f[I]x\f[] ∈ \f[I]y\f[] .IP \[bu] 2 \f[I]α\f[] ∧ \f[I]ω\f[] .IP \[bu] 2 223 .IP \[bu] 2 \f[I]p\f[]\-Tree .IP \[bu] 2 Here's some display math: .RS $$\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)\-f(x)}{h}$$ .RE .IP \[bu] 2 Here's one that has a line break in it: \f[I]α\f[] + \f[I]ω\f[] × \f[I]x\f[]^2^. .PP These shouldn't be math: .IP \[bu] 2 To get the famous equation, write \f[C]$e\ =\ mc^2$\f[]. .IP \[bu] 2 $22,000 is a \f[I]lot\f[] of money. So is $34,000. (It worked if \[lq]lot\[rq] is emphasized.) .IP \[bu] 2 Shoes ($20) and socks ($5). .IP \[bu] 2 Escaped \f[C]$\f[]: $73 \f[I]this should be emphasized\f[] 23$. .PP Here's a LaTeX table: .PP * * * * * .SH Special Characters .PP Here is some unicode: .IP \[bu] 2 I hat: Î .IP \[bu] 2 o umlaut: ö .IP \[bu] 2 section: § .IP \[bu] 2 set membership: ∈ .IP \[bu] 2 copyright: © .PP AT&T has an ampersand in their name. .PP AT&T is another way to write it. .PP This & that. .PP 4 < 5. .PP 6 > 5. .PP Backslash: \\ .PP Backtick: ` .PP Asterisk: * .PP Underscore: _ .PP Left brace: { .PP Right brace: } .PP Left bracket: [ .PP Right bracket: ] .PP Left paren: ( .PP Right paren: ) .PP Greater\-than: > .PP Hash: # .PP Period: . .PP Bang: ! .PP Plus: + .PP Minus: \- .PP * * * * * .SH Links .SS Explicit .PP Just a URL (/url/). .PP URL and title (/url/). .PP URL and title (/url/). .PP URL and title (/url/). .PP URL and title (/url/) .PP URL and title (/url/) .PP with_underscore (/url/with_underscore) .PP Email link (mailto:nobody@nowhere.net) .PP Empty (). .SS Reference .PP Foo bar (/url/). .PP Foo bar (/url/). .PP Foo bar (/url/). .PP With embedded [brackets] (/url/). .PP b (/url/) by itself should be a link. .PP Indented once (/url). .PP Indented twice (/url). .PP Indented thrice (/url). .PP This should [not][] be a link. .IP .nf \f[C] [not]:\ /url \f[] .fi .PP Foo bar (/url/). .PP Foo biz (/url/). .SS With ampersands .PP Here's a link with an ampersand in the URL (http://example.com/?foo=1&bar=2). .PP Here's a link with an amersand in the link text: AT&T (http://att.com/). .PP Here's an inline link (/script?foo=1&bar=2). .PP Here's an inline link in pointy braces (/script?foo=1&bar=2). .SS Autolinks .PP With an ampersand: .IP \[bu] 2 In a list? .IP \[bu] 2 .IP \[bu] 2 It should. .PP An e\-mail address: .RS .PP Blockquoted: .RE .PP Auto\-links should not occur here: \f[C]\f[] .IP .nf \f[C] or\ here:\ \f[] .fi .PP * * * * * .SH Images .PP From \[lq]Voyage dans la Lune\[rq] by Georges Melies (1902): .PP [IMAGE: lalune (lalune.jpg)] .PP Here is a movie [IMAGE: movie (movie.jpg)] icon. .PP * * * * * .SH Footnotes .PP Here is a footnote reference,[1] and another.[2] This should \f[I]not\f[] be a footnote reference, because it contains a space.[^my note] Here is an inline note.[3] .RS .PP Notes can go in quotes.[4] .RE .IP "1." 3 And in list items.[5] .PP This paragraph should not be part of the note, as it is not indented. .SH NOTES .SS [1] .PP Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. .SS [2] .PP Here's the long note. This one contains multiple blocks. .PP Subsequent blocks are indented to show that they belong to the footnote (as with list items). .IP .nf \f[C] \ \ {\ \ } \f[] .fi .PP If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. .SS [3] .PP This is \f[I]easier\f[] to type. Inline notes may contain links (http://google.com) and \f[C]]\f[] verbatim characters, as well as [bracketed text]. .SS [4] .PP In quote. .SS [5] .PP In list. .SH AUTHORS John MacFarlane; Anonymous. pandoc-1.16.0.2~dfsg/tests/tables.latex0000644000000000000000000001216612645626061016434 0ustar rootrootSimple table with caption: \begin{longtable}[c]{@{}rlcl@{}} \caption{Demonstration of simple table syntax.}\tabularnewline \toprule Right & Left & Center & Default\tabularnewline \midrule \endfirsthead \toprule Right & Left & Center & Default\tabularnewline \midrule \endhead 12 & 12 & 12 & 12\tabularnewline 123 & 123 & 123 & 123\tabularnewline 1 & 1 & 1 & 1\tabularnewline \bottomrule \end{longtable} Simple table without caption: \begin{longtable}[c]{@{}rlcl@{}} \toprule Right & Left & Center & Default\tabularnewline \midrule \endhead 12 & 12 & 12 & 12\tabularnewline 123 & 123 & 123 & 123\tabularnewline 1 & 1 & 1 & 1\tabularnewline \bottomrule \end{longtable} Simple table indented two spaces: \begin{longtable}[c]{@{}rlcl@{}} \caption{Demonstration of simple table syntax.}\tabularnewline \toprule Right & Left & Center & Default\tabularnewline \midrule \endfirsthead \toprule Right & Left & Center & Default\tabularnewline \midrule \endhead 12 & 12 & 12 & 12\tabularnewline 123 & 123 & 123 & 123\tabularnewline 1 & 1 & 1 & 1\tabularnewline \bottomrule \end{longtable} Multiline table with caption: \begin{longtable}[c]{@{}clrl@{}} \caption{Here's the caption. It may span multiple lines.}\tabularnewline \toprule \begin{minipage}[b]{0.13\columnwidth}\centering\strut Centered Header \strut\end{minipage} & \begin{minipage}[b]{0.12\columnwidth}\raggedright\strut Left Aligned \strut\end{minipage} & \begin{minipage}[b]{0.14\columnwidth}\raggedleft\strut Right Aligned \strut\end{minipage} & \begin{minipage}[b]{0.30\columnwidth}\raggedright\strut Default aligned \strut\end{minipage}\tabularnewline \midrule \endfirsthead \toprule \begin{minipage}[b]{0.13\columnwidth}\centering\strut Centered Header \strut\end{minipage} & \begin{minipage}[b]{0.12\columnwidth}\raggedright\strut Left Aligned \strut\end{minipage} & \begin{minipage}[b]{0.14\columnwidth}\raggedleft\strut Right Aligned \strut\end{minipage} & \begin{minipage}[b]{0.30\columnwidth}\raggedright\strut Default aligned \strut\end{minipage}\tabularnewline \midrule \endhead \begin{minipage}[t]{0.13\columnwidth}\centering\strut First \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 12.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Example of a row that spans multiple lines. \strut\end{minipage}\tabularnewline \begin{minipage}[t]{0.13\columnwidth}\centering\strut Second \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 5.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Here's another one. Note the blank line between rows. \strut\end{minipage}\tabularnewline \bottomrule \end{longtable} Multiline table without caption: \begin{longtable}[c]{@{}clrl@{}} \toprule \begin{minipage}[b]{0.13\columnwidth}\centering\strut Centered Header \strut\end{minipage} & \begin{minipage}[b]{0.12\columnwidth}\raggedright\strut Left Aligned \strut\end{minipage} & \begin{minipage}[b]{0.14\columnwidth}\raggedleft\strut Right Aligned \strut\end{minipage} & \begin{minipage}[b]{0.30\columnwidth}\raggedright\strut Default aligned \strut\end{minipage}\tabularnewline \midrule \endhead \begin{minipage}[t]{0.13\columnwidth}\centering\strut First \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 12.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Example of a row that spans multiple lines. \strut\end{minipage}\tabularnewline \begin{minipage}[t]{0.13\columnwidth}\centering\strut Second \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 5.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Here's another one. Note the blank line between rows. \strut\end{minipage}\tabularnewline \bottomrule \end{longtable} Table without column headers: \begin{longtable}[c]{@{}rlcr@{}} \toprule 12 & 12 & 12 & 12\tabularnewline 123 & 123 & 123 & 123\tabularnewline 1 & 1 & 1 & 1\tabularnewline \bottomrule \end{longtable} Multiline table without column headers: \begin{longtable}[c]{@{}clrl@{}} \toprule \begin{minipage}[t]{0.13\columnwidth}\centering\strut First \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 12.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Example of a row that spans multiple lines. \strut\end{minipage}\tabularnewline \begin{minipage}[t]{0.13\columnwidth}\centering\strut Second \strut\end{minipage} & \begin{minipage}[t]{0.12\columnwidth}\raggedright\strut row \strut\end{minipage} & \begin{minipage}[t]{0.14\columnwidth}\raggedleft\strut 5.0 \strut\end{minipage} & \begin{minipage}[t]{0.30\columnwidth}\raggedright\strut Here's another one. Note the blank line between rows. \strut\end{minipage}\tabularnewline \bottomrule \end{longtable} pandoc-1.16.0.2~dfsg/tests/tables.org0000644000000000000000000000431412645626061016102 0ustar rootrootSimple table with caption: | Right | Left | Center | Default | |---------+--------+----------+-----------| | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | #+CAPTION: Demonstration of simple table syntax. Simple table without caption: | Right | Left | Center | Default | |---------+--------+----------+-----------| | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | Simple table indented two spaces: | Right | Left | Center | Default | |---------+--------+----------+-----------| | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | #+CAPTION: Demonstration of simple table syntax. Multiline table with caption: | Centered Header | Left Aligned | Right Aligned | Default aligned | |-------------------+----------------+-----------------+---------------------------------------------------------| | First | row | 12.0 | Example of a row that spans multiple lines. | | Second | row | 5.0 | Here's another one. Note the blank line between rows. | #+CAPTION: Here's the caption. It may span multiple lines. Multiline table without caption: | Centered Header | Left Aligned | Right Aligned | Default aligned | |-------------------+----------------+-----------------+---------------------------------------------------------| | First | row | 12.0 | Example of a row that spans multiple lines. | | Second | row | 5.0 | Here's another one. Note the blank line between rows. | Table without column headers: | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | Multiline table without column headers: | First | row | 12.0 | Example of a row that spans multiple lines. | | Second | row | 5.0 | Here's another one. Note the blank line between rows. | pandoc-1.16.0.2~dfsg/tests/opml-reader.opml0000644000000000000000000000553012645626061017220 0ustar rootroot States Thu, 14 Jul 2005 23:41:05 GMT Dave Winer pandoc-1.16.0.2~dfsg/tests/twiki-reader.native0000644000000000000000000002047112645626061017720 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Header 1 ("header",[],[]) [Str "header"] ,Header 2 ("header-level-two",[],[]) [Str "header",Space,Str "level",Space,Str "two"] ,Header 3 ("header-level-3",[],[]) [Str "header",Space,Str "level",Space,Str "3"] ,Header 4 ("header-level-four",[],[]) [Str "header",Space,Emph [Str "level"],Space,Str "four"] ,Header 5 ("header-level-5",[],[]) [Str "header",Space,Str "level",Space,Str "5"] ,Header 6 ("header-level-6",[],[]) [Str "header",Space,Str "level",Space,Str "6"] ,Para [Str "---+++++++",Space,Str "not",Space,Str "a",Space,Str "header"] ,Para [Str "--++",Space,Str "not",Space,Str "a",Space,Str "header"] ,Header 1 ("emph-and-strong",[],[]) [Str "emph",Space,Str "and",Space,Str "strong"] ,Para [Emph [Str "emph"],Space,Strong [Str "strong"]] ,Para [Emph [Strong [Str "strong",Space,Str "and",Space,Str "emph"]]] ,Para [Strong [Emph [Str "emph",Space,Str "inside"],Space,Str "strong"]] ,Para [Strong [Str "strong",Space,Str "with",Space,Emph [Str "emph"]]] ,Para [Emph [Strong [Str "strong",Space,Str "inside"],Space,Str "emph"]] ,Header 1 ("horizontal-rule",[],[]) [Str "horizontal",Space,Str "rule"] ,Para [Str "top"] ,HorizontalRule ,Para [Str "bottom"] ,HorizontalRule ,Header 1 ("nop",[],[]) [Str "nop"] ,Para [Str "_not",Space,Str "emph_"] ,Header 1 ("entities",[],[]) [Str "entities"] ,Para [Str "hi",Space,Str "&",Space,Str "low"] ,Para [Str "hi",Space,Str "&",Space,Str "low"] ,Para [Str "G\246del"] ,Para [Str "\777\2730"] ,Header 1 ("comments",[],[]) [Str "comments"] ,Para [Str "inline",Space,Str "comment"] ,Para [Str "between",Space,Str "blocks"] ,Header 1 ("linebreaks",[],[]) [Str "linebreaks"] ,Para [Str "hi",LineBreak,Str "there"] ,Para [Str "hi",LineBreak,Str "there"] ,Header 1 ("inline-code",[],[]) [Str "inline",Space,Str "code"] ,Para [Code ("",[],[]) "*\8594*",Space,Code ("",[],[]) "typed",Space,Code ("",["haskell"],[]) ">>="] ,Header 1 ("code-blocks",[],[]) [Str "code",Space,Str "blocks"] ,CodeBlock ("",[],[]) "case xs of\n (_:_) -> reverse xs\n [] -> ['*']" ,CodeBlock ("",["haskell"],[]) "case xs of\n (_:_) -> reverse xs\n [] -> ['*']" ,Header 1 ("block-quotes",[],[]) [Str "block",Space,Str "quotes"] ,Para [Str "Regular",Space,Str "paragraph"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote."] ,Para [Str "With",Space,Str "two",Space,Str "paragraphs."]] ,Para [Str "Nother",Space,Str "paragraph."] ,Header 1 ("external-links",[],[]) [Str "external",Space,Str "links"] ,Para [Link ("",[],[]) [Emph [Str "Google"],Space,Str "search",Space,Str "engine"] ("http://google.com","")] ,Para [Link ("",[],[]) [Str "http://pandoc.org"] ("http://pandoc.org","")] ,Para [Link ("",[],[]) [Str "http://google.com"] ("http://google.com",""),Space,Link ("",[],[]) [Str "http://yahoo.com"] ("http://yahoo.com","")] ,Para [Link ("",[],[]) [Str "email",Space,Str "me"] ("mailto:info@example.org","")] ,Para [Str "http://google.com"] ,Para [Str "http://google.com"] ,Para [Str "http://google.com"] ,Para [Str "info@example.org"] ,Para [Str "info@example.org"] ,Para [Str "info@example.org"] ,Header 1 ("lists",[],[]) [Str "lists"] ,BulletList [[Plain [Str "Start",Space,Str "each",Space,Str "line"]] ,[Plain [Str "with",Space,Str "an",Space,Str "asterisk",Space,Str "(*)."] ,BulletList [[Plain [Str "More",Space,Str "asterisks",Space,Str "gives",Space,Str "deeper"] ,BulletList [[Plain [Str "and",Space,Str "deeper",Space,Str "levels."]]]]]] ,[Plain [Str "Line",Space,Str "breaks",LineBreak,Str "don't",Space,Str "break",Space,Str "levels."]] ,[Plain [Str "Continuations",Space,Str "are",Space,Str "also",Space,Str "possible"] ,BulletList [[Plain [Str "and",Space,Str "do",Space,Str "not",Space,Str "break",Space,Str "the",Space,Str "list",Space,Str "flow"]]]] ,[Plain [Str "Level",Space,Str "one"]]] ,Para [Str "Any",Space,Str "other",Space,Str "start",Space,Str "ends",Space,Str "the",Space,Str "list."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Start",Space,Str "each",Space,Str "line"]] ,[Plain [Str "with",Space,Str "a",Space,Str "number",Space,Str "(1.)."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "More",Space,Str "number",Space,Str "signs",Space,Str "gives",Space,Str "deeper"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "and",Space,Str "deeper"]] ,[Plain [Str "levels."]]]]]] ,[Plain [Str "Line",Space,Str "breaks",LineBreak,Str "don't",Space,Str "break",Space,Str "levels."]] ,[Plain [Str "Blank",Space,Str "lines"]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "end",Space,Str "the",Space,Str "list",Space,Str "and",Space,Str "start",Space,Str "another."]]] ,Para [Str "Any",Space,Str "other",Space,Str "start",Space,Str "also",Space,Str "ends",Space,Str "the",Space,Str "list."] ,DefinitionList [([Str "item",Space,Str "1"], [[Plain [Str "definition",Space,Str "1"]]]) ,([Str "item",Space,Str "2"], [[Plain [Str "definition",Space,Str "2-1",Space,Str "definition",Space,Str "2-2"]]]) ,([Str "item",Space,Emph [Str "3"]], [[Plain [Str "definition",Space,Emph [Str "3"]]]])] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "one"]] ,[Plain [Str "two"] ,BulletList [[Plain [Str "two",Space,Str "point",Space,Str "one"]] ,[Plain [Str "two",Space,Str "point",Space,Str "two"]]]] ,[Plain [Str "three"] ,DefinitionList [([Str "three",Space,Str "item",Space,Str "one"], [[Plain [Str "three",Space,Str "def",Space,Str "one"]]])]] ,[Plain [Str "four"] ,DefinitionList [([Str "four",Space,Str "def",Space,Str "one"], [[Plain [Str "this",Space,Str "is",Space,Str "a",Space,Str "continuation"]]])]] ,[Plain [Str "five"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "five",Space,Str "sub",Space,Str "1"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "five",Space,Str "sub",Space,Str "1",Space,Str "sub",Space,Str "1"]]]] ,[Plain [Str "five",Space,Str "sub",Space,Str "2"]]]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "other"] ,OrderedList (1,UpperRoman,DefaultDelim) [[Plain [Str "list"]] ,[Plain [Str "styles"]]]] ,[Plain [Str "are"] ,OrderedList (1,LowerRoman,DefaultDelim) [[Plain [Str "also"]] ,[Plain [Str "possible"]]]] ,[Plain [Str "all"] ,OrderedList (1,LowerAlpha,DefaultDelim) [[Plain [Str "the"]] ,[Plain [Str "different"]] ,[Plain [Str "styles"]]]] ,[Plain [Str "are"] ,OrderedList (1,UpperAlpha,DefaultDelim) [[Plain [Str "implemented"]] ,[Plain [Str "and"]] ,[Plain [Str "supported"]]]]] ,Header 1 ("tables",[],[]) [Str "tables"] ,Table [] [AlignDefault,AlignDefault] [0.0,0.0] [[] ,[]] [[[Plain [Str "Orange"]] ,[Plain [Str "Apple"]]] ,[[Plain [Str "Bread"]] ,[Plain [Str "Pie"]]] ,[[Plain [Str "Butter"]] ,[Plain [Str "Ice",Space,Str "cream"]]]] ,Table [] [AlignLeft,AlignLeft] [0.0,0.0] [[Plain [Str "Orange"]] ,[Plain [Str "Apple"]]] [[[Plain [Str "Bread"]] ,[Plain [Str "Pie"]]] ,[[Plain [Strong [Str "Butter"]]] ,[Plain [Str "Ice",Space,Str "cream"]]]] ,Table [] [AlignLeft,AlignLeft] [0.0,0.0] [[Plain [Str "Orange"]] ,[Plain [Str "Apple"]]] [[[Plain [Str "Bread",LineBreak,LineBreak,Str "and",Space,Str "cheese"]] ,[Plain [Str "Pie",LineBreak,LineBreak,Strong [Str "apple"],Space,Str "and",Space,Emph [Str "carrot"]]]]] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[] ,[] ,[]] [[[Plain [Str "Orange"]] ,[Plain [Str "Apple"]] ,[Plain [Str "more"]]] ,[[Plain [Str "Bread"]] ,[Plain [Str "Pie"]] ,[Plain [Str "more"]]] ,[[Plain [Str "Butter"]] ,[Plain [Str "Ice",Space,Str "cream"]] ,[Plain [Str "and",Space,Str "more"]]]] ,Header 1 ("macros",[],[]) [Str "macros"] ,Para [Span ("",["twiki-macro","TEST"],[]) []] ,Para [Span ("",["twiki-macro","TEST"],[]) [Str ""]] ,Para [Span ("",["twiki-macro","TEST"],[]) [Str "content with spaces"]] ,Para [Span ("",["twiki-macro","TEST"],[]) [Str "content with spaces"]] ,Para [Span ("",["twiki-macro","TEST"],[("ARG1","test")]) [Str "content with spaces"]] ,Para [Span ("",["twiki-macro","TEST"],[]) [Str "content with spaces ARG1=test"]] ,Para [Span ("",["twiki-macro","TEST"],[("ARG1","test")]) [Str "content with spaces"]] ,Para [Span ("",["twiki-macro","TEST"],[("ARG1","test"),("ARG2","test2")]) [Str ""]] ,Para [Span ("",["twiki-macro","TEST"],[("ARG1","test"),("ARG2","test2")]) [Str ""]] ,Para [Span ("",["twiki-macro","TEST"],[("ARG1","test"),("ARG2","test2")]) [Str "multiline\ndoes also work"]]] pandoc-1.16.0.2~dfsg/tests/tables.icml0000644000000000000000000010311112645626061016232 0ustar rootroot Simple table with caption:
              Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
              Demonstration of simple table syntax.
              Simple table without caption:
              Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1

              Simple table indented two spaces:
              Right Left Center Default 12 12 12 12 123 123 123 123 1 1 1 1
              Demonstration of simple table syntax.
              Multiline table with caption:
              Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.
              Here's the caption. It may span multiple lines.
              Multiline table without caption:
              Centered Header Left Aligned Right Aligned Default aligned First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.

              Table without column headers:
              12 12 12 12 123 123 123 123 1 1 1 1

              Multiline table without column headers:
              First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows.
              pandoc-1.16.0.2~dfsg/tests/tables.markdown0000644000000000000000000000477012645626061017143 0ustar rootrootSimple table with caption: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 : Demonstration of simple table syntax. Simple table without caption: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 : Demonstration of simple table syntax. Multiline table with caption: -------------------------------------------------------------- Centered Left Right Default aligned Header Aligned Aligned ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. -------------------------------------------------------------- : Here's the caption. It may span multiple lines. Multiline table without caption: -------------------------------------------------------------- Centered Left Right Default aligned Header Aligned Aligned ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. -------------------------------------------------------------- Table without column headers: ----- ----- ----- ----- 12 12 12 12 123 123 123 123 1 1 1 1 ----- ----- ----- ----- Multiline table without column headers: ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. ----------- ---------- ------------ -------------------------- pandoc-1.16.0.2~dfsg/tests/tables.fb20000644000000000000000000001003712645626061015763 0ustar rootroot pandoc<p />

              Simple table with caption:

              RightLeftCenterDefault
              12121212
              123123123123
              1111

              Demonstration of simple table syntax.

              Simple table without caption:

              RightLeftCenterDefault
              12121212
              123123123123
              1111

              Simple table indented two spaces:

              RightLeftCenterDefault
              12121212
              123123123123
              1111

              Demonstration of simple table syntax.

              Multiline table with caption:

              Centered HeaderLeft AlignedRight AlignedDefault aligned
              Firstrow12.0Example of a row that spans multiple lines.
              Secondrow5.0Here's another one. Note the blank line between rows.

              Here's the caption. It may span multiple lines.

              Multiline table without caption:

              Centered HeaderLeft AlignedRight AlignedDefault aligned
              Firstrow12.0Example of a row that spans multiple lines.
              Secondrow5.0Here's another one. Note the blank line between rows.

              Table without column headers:

              12121212
              123123123123
              1111

              Multiline table without column headers:

              Firstrow12.0Example of a row that spans multiple lines.
              Secondrow5.0Here's another one. Note the blank line between rows.

              pandoc-1.16.0.2~dfsg/tests/lhs-test.rst+lhs0000644000000000000000000000075012645626061017176 0ustar rootrootlhs test ======== ``unsplit`` is an arrow that takes a pair of values and combines them to return a single value: > unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d > unsplit = arr . uncurry > -- arr (\op (x,y) -> x `op` y) ``(***)`` combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). :: f *** g = first f >>> second g Block quote: foo bar pandoc-1.16.0.2~dfsg/tests/rst-reader.rst0000644000000000000000000002065512645626061016727 0ustar rootrootPandoc Test Suite ################# Subtitle ^^^^^^^^ :Authors: John MacFarlane; Anonymous :Date: July 17, 2006 :Revision: 3 Level one header ================ This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. Level two header ---------------- Level three +++++++++++ Level four with *emphasis* ~~~~~~~~~~~~~~~~~~~~~~~~~~ Level five '''''''''' Paragraphs ========== Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. Horizontal rule: ----- Another: **** Block Quotes ============ Here's a block quote: This is a block quote. It is pretty short. Here's another, differently indented: This is a block quote. It's indented with a tab. Code in a block quote:: sub status { print "working"; } List in a block quote: 1. item one 2. item two Nested block quotes: nested nested Code Blocks =========== Code: :: ---- (should be four hyphens) sub status { print "working"; } :: this code block is indented by one tab And:: this block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ And: .. code-block:: python def my_function(x): return x + 1 Lists ===== Unordered --------- Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: + Plus 1 + Plus 2 + Plus 3 Pluses loose: + Plus 1 + Plus 2 + Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 Ordered ------- Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. 2. Item 2. 3. Item 3. Nested: * Tab * Tab * Tab Here's another: 1. First 2. Second: * Fee * Fie * Foe 3. Third Fancy list markers ------------------ (2) begins with 2 (3) and now 3 with a continuation iv. sublist with roman numerals, starting with 4 v. more items (A) a subsublist (B) a subsublist Nesting: A. Upper Alpha I. Upper Roman. (6) Decimal start with 6 c) Lower alpha with paren Autonumbering: #. Autonumber. #. More. #. Nested. Autonumbering with explicit start: (d) item 1 (#) item 2 Definition ---------- term 1 Definition 1. term 2 Definition 2, paragraph 1. Definition 2, paragraph 2. term with *emphasis* Definition 3. Field Lists =========== :address: 61 Main St. :city: *Nowhere*, MA, USA :phone: 123-4567 :address: 61 Main St. :city: *Nowhere*, MA, USA :phone: 123-4567 HTML Blocks =========== Simple block on one line: .. raw:: html
              foo
              Now, nested: .. raw:: html
              foo
              LaTeX Block =========== .. raw:: latex \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} Inline Markup ============= This is *emphasized*. This is **strong**. This is code: ``>``, ``$``, ``\``, ``\$``, ````. This is\ :sub:`subscripted` and this is :sup:`superscripted`\ . Special Characters ================== Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. This & that. 4 < 5. 6 > 5. Backslash: \\ Backtick: \` Asterisk: \* Underscore: \_ Left brace: \{ Right brace: \} Left bracket: \[ Right bracket: \] Left paren: \( Right paren: \) Greater-than: \> Hash: \# Period: \. Bang: \! Plus: \+ Minus: \- Links ===== Explicit: a `URL `_. Two anonymous links: `the first`__ and `the second`__ __ /url1/ __ /url2/ Reference links: `link1`_ and `link2`_ and link1_ again. .. _link1: /url1/ .. _`link2`: /url2/ Here's a `link with an ampersand in the URL`_. Here's a link with an amersand in the link text: `AT&T `_. .. _link with an ampersand in the URL: http://example.com/?foo=1&bar=2 Autolinks: http://example.com/?foo=1&bar=2 and nobody@nowhere.net. But not here:: http://example.com/ Images ====== From "Voyage dans la Lune" by Georges Melies (1902): .. image:: lalune.jpg .. image:: lalune.jpg :height: 2343 :alt: Voyage dans la Lune Here is a movie |movie| icon. .. |movie| image:: movie.jpg And an |image with a link|. .. |image with a link| image:: movie.jpg :alt: A movie :target: /url Comments ======== First paragraph .. comment .. Comment block, should not appear in output as defined by reStructuredText Another paragraph .. Another comment block. This one spans several text elements. It doesn't end until indentation is restored to the preceding level. A third paragraph Line blocks =========== | But can a bee be said to be | or not to be an entire bee, | when half the bee is not a bee, | due to some ancient injury? | | Continuation line | and another Simple Tables ============= ================== =========== ========== col 1 col 2 col 3 ================== =========== ========== r1 a b c r2 d e f ================== =========== ========== Headless ================== =========== ========== r1 a b c r2 d e f ================== =========== ========== Grid Tables =========== +------------------+-----------+------------+ | col 1 | col 2 | col 3 | +==================+===========+============+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Headless +------------------+-----------+------------+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Spaces at ends of lines +------------------+-----------+------------+ | r1 a | b | c | | r1 bis | b 2 | c 2 | +------------------+-----------+------------+ | r2 d | e | f | +------------------+-----------+------------+ Multiple blocks in a cell +------------------+-----------+------------+ | r1 a | - b | c | | | - b 2 | c 2 | | r1 bis | - b 2 | c 2 | +------------------+-----------+------------+ Footnotes ========= [1]_ [#]_ [#]_ [*]_ .. [1] Note with one line. .. [#] Note with continuation line. .. [#] Note with continuation block. .. [*] Note with continuation line and a second para. Not in note. Math ==== Some inline math :math:`E=mc^2`\ . Now some display math: .. math:: E=mc^2 .. math:: E = mc^2 .. math:: E = mc^2 \alpha = \beta .. math:: :label: hithere :nowrap: E &= mc^2\\ F &= \pi E F &= \gamma \alpha^2 All done. Default-Role ============ Try changing the default role to a few different things. .. default-role:: math Doesn't Break Title Parsing --------------------------- Inline math: `E=mc^2` or :math:`E=mc^2` or `E=mc^2`:math:. Other roles: :sup:`super`, `sub`:sub:. .. math:: \alpha = beta E = mc^2 .. default-role:: sup Some `of` these :sup:`words` are in `superscript`:sup:. Reset default-role to the default default. .. default-role:: And now `some-invalid-string-3231231` is nonsense. .. role:: html(raw) :format: html And now with :html:`inline HTML`. .. role:: haskell(code) :language: haskell And some inline haskell :haskell:`fmap id [1,2..10]`. .. role:: indirect(code) .. role:: py(indirect) :language: python Indirect python role :py:`[x*x for x in [1,2,3,4,5]]`. .. role:: different-indirect(code) :language: c .. role:: c(different-indirect) Different indirect C :c:`int x = 15;`. Literal symbols --------------- 2*2 = 4*1 pandoc-1.16.0.2~dfsg/tests/lhs-test-markdown.native0000644000000000000000000000250312645626061020710 0ustar rootroot[Header 1 ("lhs-test",[],[]) [Str "lhs",Space,Str "test"] ,Para [Code ("",[],[]) "unsplit",Space,Str "is",Space,Str "an",Space,Str "arrow",Space,Str "that",Space,Str "takes",Space,Str "a",Space,Str "pair",Space,Str "of",Space,Str "values",Space,Str "and",Space,Str "combines",Space,Str "them",Space,Str "to",SoftBreak,Str "return",Space,Str "a",Space,Str "single",Space,Str "value:"] ,CodeBlock ("",["sourceCode","literate","haskell"],[]) "unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d\nunsplit = arr . uncurry\n -- arr (\\op (x,y) -> x `op` y)" ,Para [Code ("",[],[]) "(***)",Space,Str "combines",Space,Str "two",Space,Str "arrows",Space,Str "into",Space,Str "a",Space,Str "new",Space,Str "arrow",Space,Str "by",Space,Str "running",Space,Str "the",Space,Str "two",Space,Str "arrows",Space,Str "on",Space,Str "a",SoftBreak,Str "pair",Space,Str "of",Space,Str "values",Space,Str "(one",Space,Str "arrow",Space,Str "on",Space,Str "the",Space,Str "first",Space,Str "item",Space,Str "of",Space,Str "the",Space,Str "pair",Space,Str "and",Space,Str "one",Space,Str "arrow",Space,Str "on",Space,Str "the",SoftBreak,Str "second",Space,Str "item",Space,Str "of",Space,Str "the",Space,Str "pair)."] ,CodeBlock ("",[],[]) "f *** g = first f >>> second g" ,Para [Str "Block",Space,Str "quote:"] ,BlockQuote [Para [Str "foo",Space,Str "bar"]]] pandoc-1.16.0.2~dfsg/tests/movie.jpg0000644000000000000000000000202612645626061015736 0ustar rootrootJFIFHHPThis art is in the public domain. Kevin Hughes, kevinh@eit.com, September 1995CC"  # 9v& !146QTqtu ? f* j81sE+oWmFd3ݕO.-IwSIʑ} [s}S6OʚHkzu:"mlE$WEQևuu{:N1+AX~$C0 AaMFQ:vhc(cRp߰_[6e*Ҏ"Ec?GD< [I { )FqSGȑ_J Xaq^j #}r4ىRNFd5e61U~=30$ jФy7[ ZtaǣSP16`ղO0Y_aw:Q#Qu}9_89 5 n*QoPPödv:ɅhfW(DT r.\hHbU>SӶQ߭z:Ȱ)Xˠ*%up9#>jLJ>ֲ4"}}FإZ>]+# *n./< % $ebR3jܤP]=N ~OǏໞXBI,_~pandoc-1.16.0.2~dfsg/tests/writer.docbook0000644000000000000000000007215112645626061017001 0ustar rootroot
              Pandoc Test Suite John MacFarlane Anonymous July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. Headers Level 2 with an <ulink url="/url">embedded link</ulink> Level 3 with <emphasis>emphasis</emphasis> Level 4 Level 5 Level 1 Level 2 with <emphasis>emphasis</emphasis> Level 3 with no blank line Level 2 with no blank line Paragraphs Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break here. Block Quotes E-mail style:
              This is a block quote. It is pretty short.
              Code in a block quote: sub status { print "working"; } A list: item one item two Nested block quotes:
              nested
              nested
              This should not be a block quote: 2 > 1. And a following paragraph.
              Code Blocks Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ Lists Unordered Asterisks tight: asterisk 1 asterisk 2 asterisk 3 Asterisks loose: asterisk 1 asterisk 2 asterisk 3 Pluses tight: Plus 1 Plus 2 Plus 3 Pluses loose: Plus 1 Plus 2 Plus 3 Minuses tight: Minus 1 Minus 2 Minus 3 Minuses loose: Minus 1 Minus 2 Minus 3 Ordered Tight: First Second Third and: One Two Three Loose using tabs: First Second Third and using spaces: One Two Three Multiple paragraphs: Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. Item 2. Item 3. Nested Tab Tab Tab Here’s another: First Second: Fee Fie Foe Third Same thing but with paragraphs: First Second: Fee Fie Foe Third Tabs and spaces this is a list item indented with tabs this is a list item indented with spaces this is an example list item indented with tabs this is an example list item indented with spaces Fancy list markers begins with 2 and now 3 with a continuation sublist with roman numerals, starting with 4 more items a subsublist a subsublist Nesting: Upper Alpha Upper Roman. Decimal start with 6 Lower alpha with paren Autonumbering: Autonumber. More. Nested. Should not be a list item: M.A. 2007 B. Williams Definition Lists Tight using spaces: apple red fruit orange orange fruit banana yellow fruit Tight using tabs: apple red fruit orange orange fruit banana yellow fruit Loose: apple red fruit orange orange fruit banana yellow fruit Multiple blocks with italics: apple red fruit contains seeds, crisp, pleasant to taste orange orange fruit { orange code block }
              orange block quote
              Multiple definitions, tight: apple red fruit computer orange orange fruit bank Multiple definitions, loose: apple red fruit computer orange orange fruit bank Blank line after term, indented marker, alternate markers: apple red fruit computer orange orange fruit sublist sublist
              HTML Blocks Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table:
              This is emphasized And this is strong
              Here’s a simple block: foo This should be a code block, though: <div> foo </div> As should this: <div>foo</div> Now, nested: foo This should just be an HTML comment: Multiline: Code block: <!-- Comment --> Just plain comment, with trailing spaces on the line: Code: <hr /> Hr’s:








              Inline Markup This is emphasized, and so is this. This is strong, and so is this. An emphasized link. This is strong and em. So is this word. This is strong and em. So is this word. This is code: >, $, \, \$, <html>. This is strikeout. Superscripts: abcd ahello ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. Smart quotes, ellipses, dashes Hello, said the spider. Shelob is my name. A, B, and C are letters. Oak, elm, and beech are names of trees. So is pine. He said, I want to go. Were you alive in the 70’s? Here is some quoted code and a quoted link. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. LaTeX 2 + 2 = 4 x ∈ y α ∧ ω 223 p-Tree Here’s some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ Here’s one that has a line break in it: α + ω × x2. These shouldn’t be math: To get the famous equation, write $e = mc^2$. $22,000 is a lot of money. So is $34,000. (It worked if lot is emphasized.) Shoes ($20) and socks ($5). Escaped $: $73 this should be emphasized 23$. Here’s a LaTeX table: Special Characters Here is some unicode: I hat: Î o umlaut: ö section: § set membership: ∈ copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - Links Explicit Just a URL. URL and title. URL and title. URL and title. URL and title URL and title with_underscore Email link (nobody@nowhere.net) Empty. Reference Foo bar. Foo bar. Foo bar. With embedded [brackets]. b by itself should be a link. Indented once. Indented twice. Indented thrice. This should [not][] be a link. [not]: /url Foo bar. Foo biz. With ampersands Here’s a link with an ampersand in the URL. Here’s a link with an amersand in the link text: AT&T. Here’s an inline link. Here’s an inline link in pointy braces. Autolinks With an ampersand: http://example.com/?foo=1&bar=2 In a list? http://example.com/ It should. An e-mail address: nobody@nowhere.net
              Blockquoted: http://example.com/
              Auto-links should not occur here: <http://example.com/> or here: <http://example.com/>
              Images From Voyage dans la Lune by Georges Melies (1902):
              lalune lalune
              Here is a movie icon.
              Footnotes Here is a footnote reference, Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. and another. Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { <code> } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. This should not be a footnote reference, because it contains a space.[^my note] Here is an inline note. This is easier to type. Inline notes may contain links and ] verbatim characters, as well as [bracketed text].
              Notes can go in quotes. In quote.
              And in list items. In list. This paragraph should not be part of the note, as it is not indented.
              pandoc-1.16.0.2~dfsg/tests/writer.org0000644000000000000000000002502012645626061016141 0ustar rootroot#+TITLE: Pandoc Test Suite #+AUTHOR: John MacFarlane; Anonymous #+DATE: July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. -------------- * Headers ** Level 2 with an [[/url][embedded link]] *** Level 3 with /emphasis/ **** Level 4 ***** Level 5 * Level 1 ** Level 2 with /emphasis/ *** Level 3 with no blank line ** Level 2 with no blank line -------------- * Paragraphs Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break\\ here. -------------- * Block Quotes E-mail style: #+BEGIN_QUOTE This is a block quote. It is pretty short. #+END_QUOTE #+BEGIN_QUOTE Code in a block quote: #+BEGIN_EXAMPLE sub status { print "working"; } #+END_EXAMPLE A list: 1. item one 2. item two Nested block quotes: #+BEGIN_QUOTE nested #+END_QUOTE #+BEGIN_QUOTE nested #+END_QUOTE #+END_QUOTE This should not be a block quote: 2 > 1. And a following paragraph. -------------- * Code Blocks Code: #+BEGIN_EXAMPLE ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab #+END_EXAMPLE And: #+BEGIN_EXAMPLE this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ #+END_EXAMPLE -------------- * Lists ** Unordered Asterisks tight: - asterisk 1 - asterisk 2 - asterisk 3 Asterisks loose: - asterisk 1 - asterisk 2 - asterisk 3 Pluses tight: - Plus 1 - Plus 2 - Plus 3 Pluses loose: - Plus 1 - Plus 2 - Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 ** Ordered Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. 2. Item 2. 3. Item 3. ** Nested - Tab - Tab - Tab Here's another: 1. First 2. Second: - Fee - Fie - Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: - Fee - Fie - Foe 3. Third ** Tabs and spaces - this is a list item indented with tabs - this is a list item indented with spaces - this is an example list item indented with tabs - this is an example list item indented with spaces ** Fancy list markers 2) begins with 2 3) and now 3 with a continuation 4. sublist with roman numerals, starting with 4 5. more items 1) a subsublist 2) a subsublist Nesting: 1. Upper Alpha 1. Upper Roman. 6) Decimal start with 6 3) Lower alpha with paren Autonumbering: 1. Autonumber. 2. More. 1. Nested. Should not be a list item: M.A. 2007 B. Williams -------------- * Definition Lists Tight using spaces: - apple :: red fruit - orange :: orange fruit - banana :: yellow fruit Tight using tabs: - apple :: red fruit - orange :: orange fruit - banana :: yellow fruit Loose: - apple :: red fruit - orange :: orange fruit - banana :: yellow fruit Multiple blocks with italics: - /apple/ :: red fruit contains seeds, crisp, pleasant to taste - /orange/ :: orange fruit #+BEGIN_EXAMPLE { orange code block } #+END_EXAMPLE #+BEGIN_QUOTE orange block quote #+END_QUOTE Multiple definitions, tight: - apple :: red fruit computer - orange :: orange fruit bank Multiple definitions, loose: - apple :: red fruit computer - orange :: orange fruit bank Blank line after term, indented marker, alternate markers: - apple :: red fruit computer - orange :: orange fruit 1. sublist 2. sublist * HTML Blocks Simple block on one line: #+BEGIN_HTML
              #+END_HTML foo #+BEGIN_HTML
              #+END_HTML And nested without indentation: #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML foo #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML bar #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML Interpreted markdown in a table: #+BEGIN_HTML #+END_HTML #+BEGIN_HTML #+END_HTML #+BEGIN_HTML #+END_HTML #+BEGIN_HTML #+END_HTML #+BEGIN_HTML #+END_HTML #+BEGIN_HTML
              #+END_HTML This is /emphasized/ #+BEGIN_HTML #+END_HTML And this is *strong* #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML #+END_HTML Here's a simple block: #+BEGIN_HTML
              #+END_HTML foo #+BEGIN_HTML
              #+END_HTML This should be a code block, though: #+BEGIN_EXAMPLE
              foo
              #+END_EXAMPLE As should this: #+BEGIN_EXAMPLE
              foo
              #+END_EXAMPLE Now, nested: #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML foo #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML This should just be an HTML comment: #+BEGIN_HTML #+END_HTML Multiline: #+BEGIN_HTML #+END_HTML #+BEGIN_HTML #+END_HTML Code block: #+BEGIN_EXAMPLE #+END_EXAMPLE Just plain comment, with trailing spaces on the line: #+BEGIN_HTML #+END_HTML Code: #+BEGIN_EXAMPLE
              #+END_EXAMPLE Hr's: #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML #+BEGIN_HTML
              #+END_HTML -------------- * Inline Markup This is /emphasized/, and so /is this/. This is *strong*, and so *is this*. An /[[/url][emphasized link]]/. */This is strong and em./* So is */this/* word. */This is strong and em./* So is */this/* word. This is code: =>=, =$=, =\=, =\$=, ==. +This is /strikeout/.+ Superscripts: a^{bc}d a^{/hello/} a^{hello there}. Subscripts: H_{2}O, H_{23}O, H_{many of them}O. These should not be superscripts or subscripts, because of the unescaped spaces: a\^b c\^d, a~b c~d. -------------- * Smart quotes, ellipses, dashes "Hello," said the spider. "'Shelob' is my name." 'A', 'B', and 'C' are letters. 'Oak,' 'elm,' and 'beech' are names of trees. So is 'pine.' 'He said, "I want to go."' Were you alive in the 70's? Here is some quoted '=code=' and a "[[http://example.com/?foo=1&bar=2][quoted link]]". Some dashes: one---two --- three---four --- five. Dashes between numbers: 5--7, 255--66, 1987--1999. Ellipses...and...and.... -------------- * LaTeX - \cite[22-23]{smith.1899} - $2+2=4$ - $x \in y$ - $\alpha \wedge \omega$ - $223$ - $p$-Tree - Here's some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ - Here's one that has a line break in it: $\alpha + \omega \times x^2$. These shouldn't be math: - To get the famous equation, write =$e = mc^2$=. - $22,000 is a /lot/ of money. So is $34,000. (It worked if "lot" is emphasized.) - Shoes ($20) and socks ($5). - Escaped =$=: $73 /this should be emphasized/ 23$. Here's a LaTeX table: \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} -------------- * Special Characters Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: \_ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - -------------- * Links ** Explicit Just a [[/url/][URL]]. [[/url/][URL and title]]. [[/url/][URL and title]]. [[/url/][URL and title]]. [[/url/][URL and title]] [[/url/][URL and title]] [[/url/with_underscore][with\_underscore]] [[mailto:nobody@nowhere.net][Email link]] [[][Empty]]. ** Reference Foo [[/url/][bar]]. Foo [[/url/][bar]]. Foo [[/url/][bar]]. With [[/url/][embedded [brackets]]]. [[/url/][b]] by itself should be a link. Indented [[/url][once]]. Indented [[/url][twice]]. Indented [[/url][thrice]]. This should [not][] be a link. #+BEGIN_EXAMPLE [not]: /url #+END_EXAMPLE Foo [[/url/][bar]]. Foo [[/url/][biz]]. ** With ampersands Here's a [[http://example.com/?foo=1&bar=2][link with an ampersand in the URL]]. Here's a link with an amersand in the link text: [[http://att.com/][AT&T]]. Here's an [[/script?foo=1&bar=2][inline link]]. Here's an [[/script?foo=1&bar=2][inline link in pointy braces]]. ** Autolinks With an ampersand: [[http://example.com/?foo=1&bar=2]] - In a list? - [[http://example.com/]] - It should. An e-mail address: [[mailto:nobody@nowhere.net][nobody@nowhere.net]] #+BEGIN_QUOTE Blockquoted: [[http://example.com/]] #+END_QUOTE Auto-links should not occur here: == #+BEGIN_EXAMPLE or here: #+END_EXAMPLE -------------- * Images From "Voyage dans la Lune" by Georges Melies (1902): #+CAPTION: lalune [[lalune.jpg]] Here is a movie [[movie.jpg]] icon. -------------- * Footnotes Here is a footnote reference, [1] and another. [2] This should /not/ be a footnote reference, because it contains a space.[\^my note] Here is an inline note. [3] #+BEGIN_QUOTE Notes can go in quotes. [4] #+END_QUOTE 1. And in list items. [5] This paragraph should not be part of the note, as it is not indented. [1] Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. [2] Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). #+BEGIN_EXAMPLE { } #+END_EXAMPLE If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. [3] This is /easier/ to type. Inline notes may contain [[http://google.com][links]] and =]= verbatim characters, as well as [bracketed text]. [4] In quote. [5] In list. pandoc-1.16.0.2~dfsg/tests/tables-rstsubset.native0000644000000000000000000001134012645626061020632 0ustar rootroot[Para [Str "Simple",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.125,0.1125,0.1375,0.15] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Table:",Space,Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] ,Para [Str "Simple",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.125,0.1125,0.1375,0.15] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "indented",Space,Str "two",Space,Str "spaces:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.125,0.1125,0.1375,0.15] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Table:",Space,Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] ,Para [Str "Multiline",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.175,0.1625,0.1875,0.3625] [[Plain [Str "Centered",Space,Str "Header"]] ,[Plain [Str "Left",Space,Str "Aligned"]] ,[Plain [Str "Right",Space,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",SoftBreak,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",SoftBreak,Str "rows."]]]] ,Para [Str "Table:",Space,Str "Here's",Space,Str "the",Space,Str "caption.",Space,Str "It",Space,Str "may",Space,Str "span",Space,Str "multiple",Space,Str "lines."] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.175,0.1625,0.1875,0.3625] [[Plain [Str "Centered",Space,Str "Header"]] ,[Plain [Str "Left",Space,Str "Aligned"]] ,[Plain [Str "Right",Space,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",SoftBreak,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",SoftBreak,Str "rows."]]]] ,Para [Str "Table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.1,0.1,0.1,0.1] [[] ,[] ,[] ,[]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.175,0.1625,0.1875,0.3625] [[] ,[] ,[] ,[]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",SoftBreak,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",SoftBreak,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",SoftBreak,Str "rows."]]]]] pandoc-1.16.0.2~dfsg/tests/tables.haddock0000644000000000000000000000513612645626061016713 0ustar rootrootSimple table with caption: > Right Left Center Default > ------- ------ -------- --------- > 12 12 12 12 > 123 123 123 123 > 1 1 1 1 > > Demonstration of simple table syntax. Simple table without caption: > Right Left Center Default > ------- ------ -------- --------- > 12 12 12 12 > 123 123 123 123 > 1 1 1 1 Simple table indented two spaces: > Right Left Center Default > ------- ------ -------- --------- > 12 12 12 12 > 123 123 123 123 > 1 1 1 1 > > Demonstration of simple table syntax. Multiline table with caption: > -------------------------------------------------------------- > Centered Left Right Default aligned > Header Aligned Aligned > ----------- ---------- ------------ -------------------------- > First row 12.0 Example of a row that > spans multiple lines. > > Second row 5.0 Here\'s another one. Note > the blank line between > rows. > -------------------------------------------------------------- > > Here\'s the caption. It may span multiple lines. Multiline table without caption: > -------------------------------------------------------------- > Centered Left Right Default aligned > Header Aligned Aligned > ----------- ---------- ------------ -------------------------- > First row 12.0 Example of a row that > spans multiple lines. > > Second row 5.0 Here\'s another one. Note > the blank line between > rows. > -------------------------------------------------------------- Table without column headers: > ----- ----- ----- ----- > 12 12 12 12 > 123 123 123 123 > 1 1 1 1 > ----- ----- ----- ----- Multiline table without column headers: > ----------- ---------- ------------ -------------------------- > First row 12.0 Example of a row that > spans multiple lines. > > Second row 5.0 Here\'s another one. Note > the blank line between > rows. > ----------- ---------- ------------ -------------------------- pandoc-1.16.0.2~dfsg/tests/dokuwiki_external_images.native0000644000000000000000000000104512645626061022402 0ustar rootroot[Para [Image ("",[],[]) [Str "HTTPS",Space,Str "image"] ("https://cooluri.com/image.png",""),Space,Image ("",[],[]) [Str "HTTP",Space,Str "image"] ("http://cooluri.com/image.png",""),Space,Image ("",[],[]) [Str "FTP",Space,Str "image"] ("ftp://ftp.cooluri.com/image.png",""),Space,Image ("",[],[]) [Str "Filesystem",Space,Str "image"] ("file:///tmp/coolimage.png",""),Space,Image ("",[],[]) [Str "Relative",Space,Str "image",Space,Str "1"] ("/image.jpg",""),Space,Image ("",[],[]) [Str "Relative",Space,Str "image",Space,Str "2"] ("image.jpg","")]] pandoc-1.16.0.2~dfsg/tests/mediawiki-reader.native0000644000000000000000000003276712645626061020547 0ustar rootrootPandoc (Meta {unMeta = fromList []}) [Header 1 ("header",[],[]) [Str "header"] ,Header 2 ("header-level-two",[],[]) [Str "header",Space,Str "level",Space,Str "two"] ,Header 3 ("header-level-3",[],[]) [Str "header",Space,Str "level",Space,Str "3"] ,Header 4 ("header-level-four",[],[]) [Str "header",Space,Emph [Str "level"],Space,Str "four"] ,Header 5 ("header-level-5",[],[]) [Str "header",Space,Str "level",Space,Str "5"] ,Header 6 ("header-level-6",[],[]) [Str "header",Space,Str "level",Space,Str "6"] ,Para [Str "=======",Space,Str "not",Space,Str "a",Space,Str "header",Space,Str "========"] ,Para [Code ("",[],[]) "==\160not\160a\160header\160=="] ,Header 2 ("emph-and-strong",[],[]) [Str "emph",Space,Str "and",Space,Str "strong"] ,Para [Emph [Str "emph"],Space,Strong [Str "strong"]] ,Para [Strong [Emph [Str "strong",Space,Str "and",Space,Str "emph"]]] ,Para [Strong [Emph [Str "emph",Space,Str "inside"],Space,Str "strong"]] ,Para [Strong [Str "strong",Space,Str "with",Space,Emph [Str "emph"]]] ,Para [Emph [Strong [Str "strong",Space,Str "inside"],Space,Str "emph"]] ,Header 2 ("horizontal-rule",[],[]) [Str "horizontal",Space,Str "rule"] ,Para [Str "top"] ,HorizontalRule ,Para [Str "bottom"] ,HorizontalRule ,Header 2 ("nowiki",[],[]) [Str "nowiki"] ,Para [Str "''not",Space,Str "emph''"] ,Header 2 ("strikeout",[],[]) [Str "strikeout"] ,Para [Strikeout [Str "This",Space,Str "is",Space,Emph [Str "struck",Space,Str "out"]]] ,Header 2 ("entities",[],[]) [Str "entities"] ,Para [Str "hi",Space,Str "&",Space,Str "low"] ,Para [Str "hi",Space,Str "&",Space,Str "low"] ,Para [Str "G\246del"] ,Para [Str "\777\2730"] ,Header 2 ("comments",[],[]) [Str "comments"] ,Para [Str "inline",Space,Str "comment"] ,Para [Str "between",Space,Str "blocks"] ,Header 2 ("linebreaks",[],[]) [Str "linebreaks"] ,Para [Str "hi",LineBreak,Str "there"] ,Para [Str "hi",LineBreak,Str "there"] ,Header 2 ("indents",[],[]) [Str ":",Space,Str "indents"] ,Para [Str "hi"] ,DefinitionList [([], [[Plain [Str "there"]]])] ,Para [Str "bud"] ,Para [Str "hi"] ,DefinitionList [([], [[DefinitionList [([], [[Plain [Str "there"]]])]]])] ,Para [Str "bud"] ,Header 2 ("p-tags",[],[]) [Str "p",Space,Str "tags"] ,Para [Str "hi",Space,Str "there"] ,Para [Str "bud"] ,Para [Str "another"] ,Header 2 ("raw-html",[],[]) [Str "raw",Space,Str "html"] ,Para [Str "hi",Space,RawInline (Format "html") "",Emph [Str "there"],RawInline (Format "html") "",Str "."] ,Para [RawInline (Format "html") "",Str "inserted",RawInline (Format "html") ""] ,RawBlock (Format "html") "
              " ,Para [Str "hi",Space,Emph [Str "there"]] ,RawBlock (Format "html") "
              " ,Header 2 ("sup-sub-del",[],[]) [Str "sup,",Space,Str "sub,",Space,Str "del"] ,Para [Str "H",Subscript [Str "2"],Str "O",Space,Str "base",Superscript [Emph [Str "exponent"]],SoftBreak,Strikeout [Str "hello"]] ,Header 2 ("inline-code",[],[]) [Str "inline",Space,Str "code"] ,Para [Code ("",[],[]) "*\8594*",Space,Code ("",[],[]) "typed",Space,Code ("",["haskell"],[]) ">>="] ,Header 2 ("code-blocks",[],[]) [Str "code",Space,Str "blocks"] ,CodeBlock ("",[],[]) "case xs of\n (_:_) -> reverse xs\n [] -> ['*']" ,CodeBlock ("",["haskell"],[]) "case xs of\n (_:_) -> reverse xs\n [] -> ['*']" ,CodeBlock ("",["ruby","numberLines"],[("startFrom","100")]) "widgets.each do |w|\n print w.price\nend" ,Header 2 ("block-quotes",[],[]) [Str "block",Space,Str "quotes"] ,Para [Str "Regular",Space,Str "paragraph"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote."] ,Para [Str "With",Space,Str "two",Space,Str "paragraphs."]] ,Para [Str "Nother",Space,Str "paragraph."] ,Header 2 ("external-links",[],[]) [Str "external",Space,Str "links"] ,Para [Link ("",[],[]) [Emph [Str "Google"],Space,Str "search",Space,Str "engine"] ("http://google.com","")] ,Para [Link ("",[],[]) [Str "http://pandoc.org"] ("http://pandoc.org","")] ,Para [Link ("",[],[]) [Str "1"] ("http://google.com",""),Space,Link ("",[],[]) [Str "2"] ("http://yahoo.com","")] ,Para [Link ("",[],[]) [Str "email",Space,Str "me"] ("mailto:info@example.org","")] ,Header 2 ("internal-links",[],[]) [Str "internal",Space,Str "links"] ,Para [Link ("",[],[]) [Str "Help"] ("Help","wikilink")] ,Para [Link ("",[],[]) [Str "the",Space,Str "help",Space,Str "page"] ("Help","wikilink")] ,Para [Link ("",[],[]) [Str "Helpers"] ("Help","wikilink")] ,Para [Link ("",[],[]) [Str "Help"] ("Help","wikilink"),Str "ers"] ,Para [Link ("",[],[]) [Str "Contents"] ("Help:Contents","wikilink")] ,Para [Link ("",[],[]) [Str "#My",Space,Str "anchor"] ("#My_anchor","wikilink")] ,Para [Link ("",[],[]) [Str "and",Space,Str "text"] ("Page#with_anchor","wikilink")] ,Header 2 ("images",[],[]) [Str "images"] ,Para [Image ("",[],[]) [Str "caption"] ("example.jpg","fig:caption")] ,Para [Image ("",[],[]) [Str "the",Space,Emph [Str "caption"],Space,Str "with",Space,Link ("",[],[]) [Str "external",Space,Str "link"] ("http://google.com","")] ("example.jpg","fig:the caption with external link")] ,Para [Image ("",[],[("width","30"),("height","40")]) [Str "caption"] ("example.jpg","fig:caption")] ,Para [Image ("",[],[("width","30")]) [Str "caption"] ("example.jpg","fig:caption")] ,Para [Image ("",[],[("width","30")]) [Str "caption"] ("example.jpg","fig:caption")] ,Para [Image ("",[],[]) [Str "example.jpg"] ("example.jpg","fig:example.jpg")] ,Para [Image ("",[],[]) [Str "example_es.jpg"] ("example_es.jpg","fig:example_es.jpg")] ,Header 2 ("lists",[],[]) [Str "lists"] ,BulletList [[Plain [Str "Start",Space,Str "each",Space,Str "line"]] ,[Plain [Str "with",Space,Str "an",Space,Str "asterisk",Space,Str "(*)."] ,BulletList [[Plain [Str "More",Space,Str "asterisks",Space,Str "gives",Space,Str "deeper"] ,BulletList [[Plain [Str "and",Space,Str "deeper",Space,Str "levels."]]]]]] ,[Plain [Str "Line",Space,Str "breaks",LineBreak,Str "don't",Space,Str "break",Space,Str "levels."] ,BulletList [[BulletList [[Plain [Str "But",Space,Str "jumping",Space,Str "levels",Space,Str "creates",Space,Str "empty",Space,Str "space."]]]]]]] ,Para [Str "Any",Space,Str "other",Space,Str "start",Space,Str "ends",Space,Str "the",Space,Str "list."] ,BulletList [[BulletList [[Plain [Str "two"]]]] ,[Plain [Str "one"]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Start",Space,Str "each",Space,Str "line"]] ,[Plain [Str "with",Space,Str "a",Space,Str "number",Space,Str "sign",Space,Str "(#)."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "More",Space,Str "number",Space,Str "signs",Space,Str "gives",Space,Str "deeper"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "and",Space,Str "deeper"]] ,[Plain [Str "levels."]]]]]] ,[Plain [Str "Line",Space,Str "breaks",LineBreak,Str "don't",Space,Str "break",Space,Str "levels."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "But",Space,Str "jumping",Space,Str "levels",Space,Str "creates",Space,Str "empty",Space,Str "space."]]]]]] ,[Plain [Str "Blank",Space,Str "lines"]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "end",Space,Str "the",Space,Str "list",Space,Str "and",Space,Str "start",Space,Str "another."]]] ,Para [Str "Any",Space,Str "other",Space,Str "start",Space,Str "also",SoftBreak,Str "ends",Space,Str "the",Space,Str "list."] ,DefinitionList [([Str "item",Space,Str "1"], [[Plain [Str "definition",Space,Str "1"]]]) ,([Str "item",Space,Str "2"], [[Plain [Str "definition",Space,Str "2-1"]] ,[Plain [Str "definition",Space,Str "2-2"]]])] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "one"]] ,[Plain [Str "two"] ,BulletList [[Plain [Str "two",Space,Str "point",Space,Str "one"]] ,[Plain [Str "two",Space,Str "point",Space,Str "two"]]]] ,[Plain [Str "three"] ,DefinitionList [([Str "three",Space,Str "item",Space,Str "one"], [[Plain [Str "three",Space,Str "def",Space,Str "one"]]])]] ,[Plain [Str "four"] ,DefinitionList [([], [[Plain [Str "four",Space,Str "def",Space,Str "one"]] ,[Plain [Str "this",Space,Str "looks",Space,Str "like",Space,Str "a",Space,Str "continuation"]] ,[Plain [Str "and",Space,Str "is",Space,Str "often",Space,Str "used"]] ,[Plain [Str "instead",LineBreak,Str "of",Space,Str "
              "]]])]] ,[Plain [RawInline (Format "mediawiki") "{{{template\n|author=John\n|title=My Book\n}}}"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "five",Space,Str "sub",Space,Str "1"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "five",Space,Str "sub",Space,Str "1",Space,Str "sub",Space,Str "1"]]]] ,[Plain [Str "five",Space,Str "sub",Space,Str "2"]]]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "list",Space,Str "item",Space,Emph [Str "emph"]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "list",Space,Str "item",Space,Str "B1"]] ,[Plain [Str "list",Space,Str "item",Space,Str "B2"]]] ,Para [Str "continuing",Space,Str "list",Space,Str "item",Space,Str "A1"]] ,[Plain [Str "list",Space,Str "item",Space,Str "A2"]]] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "abc"]] ,[Plain [Str "def"]] ,[Plain [Str "ghi"]]] ,OrderedList (9,DefaultStyle,DefaultDelim) [[Plain [Str "Amsterdam"]] ,[Plain [Str "Rotterdam"]] ,[Plain [Str "The",Space,Str "Hague"]]] ,Header 2 ("math",[],[]) [Str "math"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Math InlineMath "x=\\frac{y^\\pi}{z}",Str "."] ,Para [Str "With",Space,Str "spaces:",Space,Math InlineMath "x=\\frac{y^\\pi}{z}",Str "."] ,Header 2 ("preformatted-blocks",[],[]) [Str "preformatted",Space,Str "blocks"] ,Para [Code ("",[],[]) "Start\160each\160line\160with\160a\160space.",LineBreak,Code ("",[],[]) "Text\160is\160",Strong [Code ("",[],[]) "preformatted"],Code ("",[],[]) "\160and",LineBreak,Emph [Code ("",[],[]) "markups"],Code ("",[],[]) "\160",Strong [Emph [Code ("",[],[]) "can"]],Code ("",[],[]) "\160be\160done."] ,Para [Code ("",[],[]) "\160hell\160\160\160\160\160\160yeah"] ,Para [Code ("",[],[]) "Start\160with\160a\160space\160in\160the\160first\160column,",LineBreak,Code ("",[],[]) "(before\160the\160).",LineBreak,Code ("",[],[]) "",LineBreak,Code ("",[],[]) "Then\160your\160block\160format\160will\160be",LineBreak,Code ("",[],[]) "\160\160\160\160maintained.",LineBreak,Code ("",[],[]) "",LineBreak,Code ("",[],[]) "This\160is\160good\160for\160copying\160in\160code\160blocks:",LineBreak,Code ("",[],[]) "",LineBreak,Code ("",[],[]) "def\160function():",LineBreak,Code ("",[],[]) "\160\160\160\160\"\"\"documentation\160string\"\"\"",LineBreak,Code ("",[],[]) "",LineBreak,Code ("",[],[]) "\160\160\160\160if\160True:",LineBreak,Code ("",[],[]) "\160\160\160\160\160\160\160\160print\160True",LineBreak,Code ("",[],[]) "\160\160\160\160else:",LineBreak,Code ("",[],[]) "\160\160\160\160\160\160\160\160print\160False"] ,Para [Str "Not"] ,RawBlock (Format "html") "
              " ,Para [Str "preformatted"] ,Para [Str "Don't",Space,Str "need"] ,Para [Code ("",[],[]) "a\160blank\160line"] ,Para [Str "around",Space,Str "a",Space,Str "preformatted",Space,Str "block."] ,Header 2 ("templates",[],[]) [Str "templates"] ,RawBlock (Format "mediawiki") "{{Welcome}}" ,RawBlock (Format "mediawiki") "{{Foo:Bar}}" ,RawBlock (Format "mediawiki") "{{Thankyou|all your effort|Me}}" ,Para [Str "Written",Space,RawInline (Format "mediawiki") "{{{date}}}",Space,Str "by",Space,RawInline (Format "mediawiki") "{{{name}}}",Str "."] ,Header 2 ("tables",[],[]) [Str "tables"] ,Table [] [AlignDefault,AlignDefault] [0.0,0.0] [[] ,[]] [[[Para [Str "Orange"]] ,[Para [Str "Apple"]]] ,[[Para [Str "Bread"]] ,[Para [Str "Pie"]]] ,[[Para [Str "Butter"]] ,[Para [Str "Ice",Space,Str "cream"]]]] ,Table [Str "Food",Space,Str "complements"] [AlignDefault,AlignDefault] [0.0,0.0] [[Para [Str "Orange"]] ,[Para [Str "Apple"]]] [[[Para [Str "Bread"]] ,[Para [Str "Pie"]]] ,[[Para [Str "Butter"]] ,[Para [Str "Ice",Space,Str "cream"]]]] ,Table [Str "Food",Space,Str "complements"] [AlignDefault,AlignDefault] [0.0,0.0] [[Para [Str "Orange"]] ,[Para [Str "Apple"]]] [[[Para [Str "Bread"] ,Para [Str "and",Space,Str "cheese"]] ,[Para [Str "Pie"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "apple"]] ,[Plain [Str "carrot"]]]]]] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[] ,[] ,[]] [[[Para [Str "Orange"]] ,[Para [Str "Apple"]] ,[Para [Str "more"]]] ,[[Para [Str "Bread"]] ,[Para [Str "Pie"]] ,[Para [Str "more"]]] ,[[Para [Str "Butter"]] ,[Para [Str "Ice",Space,Str "cream"]] ,[Para [Str "and",Space,Str "more"]]]] ,Table [] [AlignLeft,AlignRight,AlignCenter] [0.25,0.125,0.125] [[Para [Str "Left"]] ,[Para [Str "Right"]] ,[Para [Str "Center"]]] [[[Para [Str "left"]] ,[Para [Str "15.00"]] ,[Para [Str "centered"]]] ,[[Para [Str "more"]] ,[Para [Str "2.0"]] ,[Para [Str "more"]]]] ,Table [] [AlignDefault,AlignDefault] [0.0,0.0] [[] ,[]] [[[Para [Str "Orange"]] ,[Para [Str "Apple"]]] ,[[Para [Str "Bread"]] ,[Table [] [AlignDefault,AlignDefault] [0.0,0.0] [[Para [Str "fruit"]] ,[Para [Str "topping"]]] [[[Para [Str "apple"]] ,[Para [Str "ice",Space,Str "cream"]]]]]] ,[[Para [Str "Butter"]] ,[Para [Str "Ice",Space,Str "cream"]]]] ,Table [] [AlignDefault] [0.0] [[]] [[[Para [Str "Orange"]]]] ,Para [Str "Paragraph",Space,Str "after",Space,Str "the",Space,Str "table."] ,Header 2 ("notes",[],[]) [Str "notes"] ,Para [Str "My",Space,Str "note!",Note [Plain [Str "This."]]] ,Para [Str "URL",Space,Str "note.",Note [Plain [Link ("",[],[]) [Str "http://docs.python.org/library/functions.html#range"] ("http://docs.python.org/library/functions.html#range","")]]]] pandoc-1.16.0.2~dfsg/tests/rst-reader.native0000644000000000000000000004567612645626061017417 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",Space,Str "MacFarlane"],MetaInlines [Str "Anonymous"]]),("date",MetaInlines [Str "July",Space,Str "17,",Space,Str "2006"]),("revision",MetaBlocks [Para [Str "3"]]),("subtitle",MetaInlines [Str "Subtitle"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [Header 1 ("level-one-header",[],[]) [Str "Level",Space,Str "one",Space,Str "header"] ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",SoftBreak,Str "John",Space,Str "Gruber\8217s",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,Header 2 ("level-two-header",[],[]) [Str "Level",Space,Str "two",Space,Str "header"] ,Header 3 ("level-three",[],[]) [Str "Level",Space,Str "three"] ,Header 4 ("level-four-with-emphasis",[],[]) [Str "Level",Space,Str "four",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 5 ("level-five",[],[]) [Str "Level",Space,Str "five"] ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",SoftBreak,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",Space,Str "list",Space,Str "item.",SoftBreak,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",SoftBreak,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",Space,Str "looked",Space,Str "like",Space,Str "a",SoftBreak,Str "list",Space,Str "item."] ,Para [Str "Here\8217s",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",SoftBreak,Str "*",Space,Str "criminey."] ,Para [Str "Horizontal",Space,Str "rule:"] ,HorizontalRule ,Para [Str "Another:"] ,HorizontalRule ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",SoftBreak,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,Para [Str "Here\8217s",Space,Str "another,",Space,Str "differently",Space,Str "indented:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",SoftBreak,Str "It\8217s",Space,Str "indented",Space,Str "with",Space,Str "a",Space,Str "tab."] ,Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,Para [Str "List",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "item",Space,Str "one"]] ,[Plain [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"] ,BlockQuote [Para [Str "nested"]]]] ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}" ,CodeBlock ("",[],[]) "this code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) "this block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,Para [Str "And:"] ,CodeBlock ("",["sourceCode","python"],[]) "def my_function(x):\n return x + 1" ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "tight:"] ,BulletList [[Plain [Str "Plus",Space,Str "1"]] ,[Plain [Str "Plus",Space,Str "2"]] ,[Plain [Str "Plus",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Plain [Str "Plus",Space,Str "1"]] ,[Plain [Str "Plus",Space,Str "2"]] ,[Plain [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "tight:"] ,BulletList [[Plain [Str "Minus",Space,Str "1"]] ,[Plain [Str "Minus",Space,Str "2"]] ,[Plain [Str "Minus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Plain [Str "Minus",Space,Str "1"]] ,[Plain [Str "Minus",Space,Str "2"]] ,[Plain [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Para [Str "and:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "One"]] ,[Plain [Str "Two"]] ,[Plain [Str "Three"]]] ,Para [Str "Loose",Space,Str "using",Space,Str "tabs:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "One"]] ,[Plain [Str "Two"]] ,[Plain [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog\8217s",SoftBreak,Str "back."]] ,[Plain [Str "Item",Space,Str "2."]] ,[Plain [Str "Item",Space,Str "3."]]] ,Para [Str "Nested:"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"]]]]]]] ,Para [Str "Here\8217s",Space,Str "another:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Para [Str "Second:"] ,BlockQuote [BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]]] ,[Plain [Str "Third"]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,TwoParens) [[Plain [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,Period) [[Plain [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",Space,Str "starting",Space,Str "with",Space,Str "4"]] ,[Plain [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,TwoParens) [[Plain [Str "a",Space,Str "subsublist"]] ,[Plain [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,Period) [[Plain [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,Period) [[Plain [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,TwoParens) [[Plain [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,OneParen) [[Plain [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Autonumber."]] ,[Plain [Str "More."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Nested."]]]]] ,Para [Str "Autonumbering",Space,Str "with",Space,Str "explicit",Space,Str "start:"] ,OrderedList (4,LowerAlpha,TwoParens) [[Plain [Str "item",Space,Str "1"]] ,[Plain [Str "item",Space,Str "2"]]] ,Header 2 ("definition",[],[]) [Str "Definition"] ,DefinitionList [([Str "term",Space,Str "1"], [[Para [Str "Definition",Space,Str "1."]]]) ,([Str "term",Space,Str "2"], [[Para [Str "Definition",Space,Str "2,",Space,Str "paragraph",Space,Str "1."] ,Para [Str "Definition",Space,Str "2,",Space,Str "paragraph",Space,Str "2."]]]) ,([Str "term",Space,Str "with",Space,Emph [Str "emphasis"]], [[Para [Str "Definition",Space,Str "3."]]])] ,Header 1 ("field-lists",[],[]) [Str "Field",Space,Str "Lists"] ,BlockQuote [DefinitionList [([Str "address"], [[Para [Str "61",Space,Str "Main",Space,Str "St."]]]) ,([Str "city"], [[Para [Emph [Str "Nowhere"],Str ",",Space,Str "MA,",SoftBreak,Str "USA"]]]) ,([Str "phone"], [[Para [Str "123-4567"]]])]] ,DefinitionList [([Str "address"], [[Para [Str "61",Space,Str "Main",Space,Str "St."]]]) ,([Str "city"], [[Para [Emph [Str "Nowhere"],Str ",",Space,Str "MA,",SoftBreak,Str "USA"]]]) ,([Str "phone"], [[Para [Str "123-4567"]]])] ,Header 1 ("html-blocks",[],[]) [Str "HTML",Space,Str "Blocks"] ,Para [Str "Simple",Space,Str "block",Space,Str "on",Space,Str "one",Space,Str "line:"] ,RawBlock (Format "html") "
              foo
              " ,Para [Str "Now,",Space,Str "nested:"] ,RawBlock (Format "html") "
              \n
              \n
              \n foo\n
              \n
              \n
              " ,Header 1 ("latex-block",[],[]) [Str "LaTeX",Space,Str "Block"] ,RawBlock (Format "latex") "\\begin{tabular}{|l|l|}\\hline\nAnimal & Number \\\\ \\hline\nDog & 2 \\\\\nCat & 1 \\\\ \\hline\n\\end{tabular}" ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ".",Space,Str "This",Space,Str "is",Space,Strong [Str "strong"],Str "."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",Space,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",Space,Code ("",[],[]) "",Str "."] ,Para [Str "This",Space,Str "is",Subscript [Str "subscripted"],Space,Str "and",Space,Str "this",Space,Str "is",Space,Superscript [Str "superscripted"],Str "."] ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Plain [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Plain [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Plain [Str "section:",Space,Str "\167"]] ,[Plain [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Plain [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "`"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,Header 1 ("links",[],[]) [Str "Links"] ,Para [Str "Explicit:",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Str "Two",Space,Str "anonymous",Space,Str "links:",Space,Link ("",[],[]) [Str "the",Space,Str "first"] ("/url1/",""),Space,Str "and",Space,Link ("",[],[]) [Str "the",Space,Str "second"] ("/url2/","")] ,Para [Str "Reference",Space,Str "links:",Space,Link ("",[],[]) [Str "link1"] ("/url1/",""),Space,Str "and",Space,Link ("",[],[]) [Str "link2"] ("/url2/",""),Space,Str "and",Space,Link ("",[],[]) [Str "link1"] ("/url1/",""),Space,Str "again."] ,Para [Str "Here\8217s",Space,Str "a",Space,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",Space,Link ("",[],[]) [Str "AT&T"] ("/url/",""),Str "."] ,Para [Str "Autolinks:",Space,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2",""),Space,Str "and",Space,Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net",""),Str "."] ,Para [Str "But",Space,Str "not",Space,Str "here:"] ,CodeBlock ("",[],[]) "http://example.com/" ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "image"] ("lalune.jpg","")] ,Para [Image ("",[],[("height","2343")]) [Str "Voyage dans la Lune"] ("lalune.jpg","")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [Str "movie"] ("movie.jpg",""),Space,Str "icon."] ,Para [Str "And",Space,Str "an",Space,Link ("",[],[]) [Image ("",[],[]) [Str "A movie"] ("movie.jpg","")] ("/url",""),Str "."] ,Header 1 ("comments",[],[]) [Str "Comments"] ,Para [Str "First",Space,Str "paragraph"] ,Para [Str "Another",Space,Str "paragraph"] ,Para [Str "A",Space,Str "third",Space,Str "paragraph"] ,Header 1 ("line-blocks",[],[]) [Str "Line",Space,Str "blocks"] ,Para [Str "But",Space,Str "can",Space,Str "a",Space,Str "bee",Space,Str "be",Space,Str "said",Space,Str "to",Space,Str "be",LineBreak,Str "\160\160\160\160or",Space,Str "not",Space,Str "to",Space,Str "be",Space,Str "an",Space,Str "entire",Space,Str "bee,",LineBreak,Str "\160\160\160\160\160\160\160\160when",Space,Str "half",Space,Str "the",Space,Str "bee",Space,Str "is",Space,Str "not",Space,Str "a",Space,Str "bee,",LineBreak,Str "\160\160\160\160\160\160\160\160\160\160\160\160due",Space,Str "to",Space,Str "some",Space,Str "ancient",Space,Str "injury?"] ,Para [Str "Continuation",Space,Str "line",LineBreak,Str "\160\160and",Space,Str "another"] ,Header 1 ("simple-tables",[],[]) [Str "Simple",Space,Str "Tables"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[Plain [Str "col",Space,Str "1"]] ,[Plain [Str "col",Space,Str "2"]] ,[Plain [Str "col",Space,Str "3"]]] [[[Plain [Str "r1",Space,Str "a"]] ,[Plain [Str "b"]] ,[Plain [Str "c"]]] ,[[Plain [Str "r2",Space,Str "d"]] ,[Plain [Str "e"]] ,[Plain [Str "f"]]]] ,Para [Str "Headless"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0] [[] ,[] ,[]] [[[Plain [Str "r1",Space,Str "a"]] ,[Plain [Str "b"]] ,[Plain [Str "c"]]] ,[[Plain [Str "r2",Space,Str "d"]] ,[Plain [Str "e"]] ,[Plain [Str "f"]]]] ,Header 1 ("grid-tables",[],[]) [Str "Grid",Space,Str "Tables"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2375,0.15,0.1625] [[Plain [Str "col",Space,Str "1"]] ,[Plain [Str "col",Space,Str "2"]] ,[Plain [Str "col",Space,Str "3"]]] [[[Plain [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Plain [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Plain [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Plain [Str "r2",Space,Str "d"]] ,[Plain [Str "e"]] ,[Plain [Str "f"]]]] ,Para [Str "Headless"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2375,0.15,0.1625] [[] ,[] ,[]] [[[Plain [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Plain [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Plain [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Plain [Str "r2",Space,Str "d"]] ,[Plain [Str "e"]] ,[Plain [Str "f"]]]] ,Para [Str "Spaces",Space,Str "at",Space,Str "ends",Space,Str "of",Space,Str "lines"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2375,0.15,0.1625] [[] ,[] ,[]] [[[Plain [Str "r1",Space,Str "a",SoftBreak,Str "r1",Space,Str "bis"]] ,[Plain [Str "b",SoftBreak,Str "b",Space,Str "2"]] ,[Plain [Str "c",SoftBreak,Str "c",Space,Str "2"]]] ,[[Plain [Str "r2",Space,Str "d"]] ,[Plain [Str "e"]] ,[Plain [Str "f"]]]] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "in",Space,Str "a",Space,Str "cell"] ,Table [] [AlignDefault,AlignDefault,AlignDefault] [0.2375,0.15,0.1625] [[] ,[] ,[]] [[[Para [Str "r1",Space,Str "a"] ,Para [Str "r1",Space,Str "bis"]] ,[BulletList [[Plain [Str "b"]] ,[Plain [Str "b",Space,Str "2"]] ,[Plain [Str "b",Space,Str "2"]]]] ,[Plain [Str "c",SoftBreak,Str "c",Space,Str "2",SoftBreak,Str "c",Space,Str "2"]]]] ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Note [Para [Str "Note",Space,Str "with",Space,Str "one",Space,Str "line."]]] ,Para [Note [Para [Str "Note",Space,Str "with",SoftBreak,Str "continuation",Space,Str "line."]]] ,Para [Note [Para [Str "Note",Space,Str "with"],Para [Str "continuation",Space,Str "block."]]] ,Para [Note [Para [Str "Note",Space,Str "with",SoftBreak,Str "continuation",Space,Str "line"],Para [Str "and",Space,Str "a",Space,Str "second",Space,Str "para."]]] ,Para [Str "Not",Space,Str "in",Space,Str "note."] ,Header 1 ("math",[],[]) [Str "Math"] ,Para [Str "Some",Space,Str "inline",Space,Str "math",Space,Math InlineMath "E=mc^2",Str ".",Space,Str "Now",Space,Str "some",SoftBreak,Str "display",Space,Str "math:"] ,Para [Math DisplayMath "E=mc^2"] ,Para [Math DisplayMath "E = mc^2"] ,Para [Math DisplayMath "E = mc^2",Math DisplayMath "\\alpha = \\beta"] ,Para [Math DisplayMath "E &= mc^2\\\\\nF &= \\pi E",Math DisplayMath "F &= \\gamma \\alpha^2"] ,Para [Str "All",Space,Str "done."] ,Header 1 ("default-role",[],[]) [Str "Default-Role"] ,Para [Str "Try",Space,Str "changing",Space,Str "the",Space,Str "default",Space,Str "role",Space,Str "to",Space,Str "a",Space,Str "few",Space,Str "different",Space,Str "things."] ,Header 2 ("doesnt-break-title-parsing",[],[]) [Str "Doesn\8217t",Space,Str "Break",Space,Str "Title",Space,Str "Parsing"] ,Para [Str "Inline",Space,Str "math:",Space,Math InlineMath "E=mc^2",Space,Str "or",Space,Math InlineMath "E=mc^2",Space,Str "or",Space,Math InlineMath "E=mc^2",Str ".",SoftBreak,Str "Other",Space,Str "roles:",Space,Superscript [Str "super"],Str ",",Space,Subscript [Str "sub"],Str "."] ,Para [Math DisplayMath "\\alpha = beta",Math DisplayMath "E = mc^2"] ,Para [Str "Some",Space,Superscript [Str "of"],Space,Str "these",Space,Superscript [Str "words"],Space,Str "are",Space,Str "in",Space,Superscript [Str "superscript"],Str "."] ,Para [Str "Reset",Space,Str "default-role",Space,Str "to",Space,Str "the",Space,Str "default",Space,Str "default."] ,Para [Str "And",Space,Str "now",Space,Str "some-invalid-string-3231231",Space,Str "is",Space,Str "nonsense."] ,Null ,Para [Str "And",Space,Str "now",Space,Str "with",Space,RawInline (Format "html") "inline HTML",Str "."] ,Null ,Para [Str "And",Space,Str "some",Space,Str "inline",Space,Str "haskell",Space,Code ("",["haskell","sourceCode"],[]) "fmap id [1,2..10]",Str "."] ,Null ,Null ,Para [Str "Indirect",Space,Str "python",Space,Str "role",Space,Code ("",["py","python","indirect","sourceCode"],[]) "[x*x for x in [1,2,3,4,5]]",Str "."] ,Null ,Null ,Para [Str "Different",Space,Str "indirect",Space,Str "C",Space,Code ("",["c","different-indirect","sourceCode"],[]) "int x = 15;",Str "."] ,Header 2 ("literal-symbols",[],[]) [Str "Literal",Space,Str "symbols"] ,Para [Str "2*2",Space,Str "=",Space,Str "4*1"]] pandoc-1.16.0.2~dfsg/tests/testsuite.native0000644000000000000000000006554712645626061017377 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",Space,Str "MacFarlane"],MetaInlines [Str "Anonymous"]]),("date",MetaInlines [Str "July",Space,Str "17,",Space,Str "2006"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",SoftBreak,Str "John",Space,Str "Gruber\8217s",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,HorizontalRule ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embedded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embedded",Space,Str "link"] ("/url","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 4 ("level-4",[],[]) [Str "Level",Space,Str "4"] ,Header 5 ("level-5",[],[]) [Str "Level",Space,Str "5"] ,Header 1 ("level-1",[],[]) [Str "Level",Space,Str "1"] ,Header 2 ("level-2-with-emphasis",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 3 ("level-3",[],[]) [Str "Level",Space,Str "3"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 2 ("level-2",[],[]) [Str "Level",Space,Str "2"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,HorizontalRule ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",SoftBreak,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",Space,Str "list",Space,Str "item.",SoftBreak,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",SoftBreak,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",Space,Str "looked",Space,Str "like",Space,Str "a",SoftBreak,Str "list",Space,Str "item."] ,Para [Str "Here\8217s",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",SoftBreak,Str "*",Space,Str "criminey."] ,Para [Str "There",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "hard",Space,Str "line",Space,Str "break",LineBreak,Str "here."] ,HorizontalRule ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "E-mail",Space,Str "style:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",SoftBreak,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,BlockQuote [Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,Para [Str "A",Space,Str "list:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "item",Space,Str "one"]] ,[Plain [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"]] ,BlockQuote [Para [Str "nested"]]] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "block",Space,Str "quote:",Space,Str "2",SoftBreak,Str ">",Space,Str "1."] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,HorizontalRule ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}\n\nthis code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,HorizontalRule ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "tight:"] ,BulletList [[Plain [Str "asterisk",Space,Str "1"]] ,[Plain [Str "asterisk",Space,Str "2"]] ,[Plain [Str "asterisk",Space,Str "3"]]] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "tight:"] ,BulletList [[Plain [Str "Plus",Space,Str "1"]] ,[Plain [Str "Plus",Space,Str "2"]] ,[Plain [Str "Plus",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "tight:"] ,BulletList [[Plain [Str "Minus",Space,Str "1"]] ,[Plain [Str "Minus",Space,Str "2"]] ,[Plain [Str "Minus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,Para [Str "Tight:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second"]] ,[Plain [Str "Third"]]] ,Para [Str "and:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "One"]] ,[Plain [Str "Two"]] ,[Plain [Str "Three"]]] ,Para [Str "Loose",Space,Str "using",Space,Str "tabs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,Decimal,Period) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog\8217s",SoftBreak,Str "back."]] ,[Para [Str "Item",Space,Str "2."]] ,[Para [Str "Item",Space,Str "3."]]] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"] ,BulletList [[Plain [Str "Tab"]]]]]]] ,Para [Str "Here\8217s",Space,Str "another:"] ,OrderedList (1,Decimal,Period) [[Plain [Str "First"]] ,[Plain [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Plain [Str "Third"]]] ,Para [Str "Same",Space,Str "thing",Space,Str "but",Space,Str "with",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,Period) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Plain [Str "Fee"]] ,[Plain [Str "Fie"]] ,[Plain [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Header 2 ("tabs-and-spaces",[],[]) [Str "Tabs",Space,Str "and",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",SoftBreak,Str "indented",Space,Str "with",Space,Str "spaces"]]]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,TwoParens) [[Plain [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,Period) [[Plain [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",SoftBreak,Str "starting",Space,Str "with",Space,Str "4"]] ,[Plain [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,TwoParens) [[Plain [Str "a",Space,Str "subsublist"]] ,[Plain [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,Period) [[Plain [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,Period) [[Plain [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,TwoParens) [[Plain [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,OneParen) [[Plain [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Autonumber."]] ,[Plain [Str "More."] ,OrderedList (1,DefaultStyle,DefaultDelim) [[Plain [Str "Nested."]]]]] ,Para [Str "Should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "list",Space,Str "item:"] ,Para [Str "M.A.\160\&2007"] ,Para [Str "B.",Space,Str "Williams"] ,HorizontalRule ,Header 1 ("definition-lists",[],[]) [Str "Definition",Space,Str "Lists"] ,Para [Str "Tight",Space,Str "using",Space,Str "spaces:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Plain [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Tight",Space,Str "using",Space,Str "tabs:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Plain [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "with",Space,Str "italics:"] ,DefinitionList [([Emph [Str "apple"]], [[Para [Str "red",Space,Str "fruit"] ,Para [Str "contains",Space,Str "seeds,",SoftBreak,Str "crisp,",Space,Str "pleasant",Space,Str "to",Space,Str "taste"]]]) ,([Emph [Str "orange"]], [[Para [Str "orange",Space,Str "fruit"] ,CodeBlock ("",[],[]) "{ orange code block }" ,BlockQuote [Para [Str "orange",Space,Str "block",Space,Str "quote"]]]])] ,Para [Str "Multiple",Space,Str "definitions,",Space,Str "tight:"] ,DefinitionList [([Str "apple"], [[Plain [Str "red",Space,Str "fruit"]] ,[Plain [Str "computer"]]]) ,([Str "orange"], [[Plain [Str "orange",Space,Str "fruit"]] ,[Plain [Str "bank"]]])] ,Para [Str "Multiple",Space,Str "definitions,",Space,Str "loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]] ,[Para [Str "bank"]]])] ,Para [Str "Blank",Space,Str "line",Space,Str "after",Space,Str "term,",Space,Str "indented",Space,Str "marker,",Space,Str "alternate",Space,Str "markers:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"] ,OrderedList (1,Decimal,Period) [[Plain [Str "sublist"]] ,[Plain [Str "sublist"]]]]])] ,Header 1 ("html-blocks",[],[]) [Str "HTML",Space,Str "Blocks"] ,Para [Str "Simple",Space,Str "block",Space,Str "on",Space,Str "one",Space,Str "line:"] ,Div ("",[],[]) [Plain [Str "foo"]] ,Para [Str "And",Space,Str "nested",Space,Str "without",Space,Str "indentation:"] ,Div ("",[],[]) [Div ("",[],[]) [Div ("",[],[]) [Para [Str "foo"]]] ,Div ("",[],[]) [Plain [Str "bar"]]] ,Para [Str "Interpreted",Space,Str "markdown",Space,Str "in",Space,Str "a",Space,Str "table:"] ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,RawBlock (Format "html") "
              " ,Plain [Str "This",Space,Str "is",Space,Emph [Str "emphasized"]] ,RawBlock (Format "html") "" ,Plain [Str "And",Space,Str "this",Space,Str "is",Space,Strong [Str "strong"]] ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "" ,Para [Str "Here\8217s",Space,Str "a",Space,Str "simple",Space,Str "block:"] ,Div ("",[],[]) [Para [Str "foo"]] ,Para [Str "This",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "code",Space,Str "block,",Space,Str "though:"] ,CodeBlock ("",[],[]) "
              \n foo\n
              " ,Para [Str "As",Space,Str "should",Space,Str "this:"] ,CodeBlock ("",[],[]) "
              foo
              " ,Para [Str "Now,",Space,Str "nested:"] ,Div ("",[],[]) [Div ("",[],[]) [Div ("",[],[]) [Plain [Str "foo"]]]] ,Para [Str "This",Space,Str "should",Space,Str "just",Space,Str "be",Space,Str "an",Space,Str "HTML",Space,Str "comment:"] ,RawBlock (Format "html") "" ,Para [Str "Multiline:"] ,RawBlock (Format "html") "" ,RawBlock (Format "html") "" ,Para [Str "Code",Space,Str "block:"] ,CodeBlock ("",[],[]) "" ,Para [Str "Just",Space,Str "plain",Space,Str "comment,",Space,Str "with",Space,Str "trailing",Space,Str "spaces",Space,Str "on",Space,Str "the",Space,Str "line:"] ,RawBlock (Format "html") "" ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "
              " ,Para [Str "Hr\8217s:"] ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,RawBlock (Format "html") "
              " ,HorizontalRule ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",Space,Str "this"],Str "."] ,Para [Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",Space,Strong [Str "is",Space,Str "this"],Str "."] ,Para [Str "An",Space,Emph [Link ("",[],[]) [Str "emphasized",Space,Str "link"] ("/url","")],Str "."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",Space,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",Space,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",Space,Code ("",[],[]) "",Str "."] ,Para [Strikeout [Str "This",Space,Str "is",Space,Emph [Str "strikeout"],Str "."]] ,Para [Str "Superscripts:",Space,Str "a",Superscript [Str "bc"],Str "d",Space,Str "a",Superscript [Emph [Str "hello"]],Space,Str "a",Superscript [Str "hello\160there"],Str "."] ,Para [Str "Subscripts:",Space,Str "H",Subscript [Str "2"],Str "O,",Space,Str "H",Subscript [Str "23"],Str "O,",Space,Str "H",Subscript [Str "many\160of\160them"],Str "O."] ,Para [Str "These",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "superscripts",Space,Str "or",Space,Str "subscripts,",SoftBreak,Str "because",Space,Str "of",Space,Str "the",Space,Str "unescaped",Space,Str "spaces:",Space,Str "a^b",Space,Str "c^d,",Space,Str "a~b",Space,Str "c~d."] ,HorizontalRule ,Header 1 ("smart-quotes-ellipses-dashes",[],[]) [Str "Smart",Space,Str "quotes,",Space,Str "ellipses,",Space,Str "dashes"] ,Para [Quoted DoubleQuote [Str "Hello,"],Space,Str "said",Space,Str "the",Space,Str "spider.",Space,Quoted DoubleQuote [Quoted SingleQuote [Str "Shelob"],Space,Str "is",Space,Str "my",Space,Str "name."]] ,Para [Quoted SingleQuote [Str "A"],Str ",",Space,Quoted SingleQuote [Str "B"],Str ",",Space,Str "and",Space,Quoted SingleQuote [Str "C"],Space,Str "are",Space,Str "letters."] ,Para [Quoted SingleQuote [Str "Oak,"],Space,Quoted SingleQuote [Str "elm,"],Space,Str "and",Space,Quoted SingleQuote [Str "beech"],Space,Str "are",Space,Str "names",Space,Str "of",Space,Str "trees.",SoftBreak,Str "So",Space,Str "is",Space,Quoted SingleQuote [Str "pine."]] ,Para [Quoted SingleQuote [Str "He",Space,Str "said,",Space,Quoted DoubleQuote [Str "I",Space,Str "want",Space,Str "to",Space,Str "go."]],Space,Str "Were",Space,Str "you",Space,Str "alive",Space,Str "in",Space,Str "the",SoftBreak,Str "70\8217s?"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "quoted",Space,Quoted SingleQuote [Code ("",[],[]) "code"],Space,Str "and",Space,Str "a",Space,Quoted DoubleQuote [Link ("",[],[]) [Str "quoted",Space,Str "link"] ("http://example.com/?foo=1&bar=2","")],Str "."] ,Para [Str "Some",Space,Str "dashes:",Space,Str "one\8212two",Space,Str "\8212",Space,Str "three\8212four",Space,Str "\8212",Space,Str "five."] ,Para [Str "Dashes",Space,Str "between",Space,Str "numbers:",Space,Str "5\8211\&7,",Space,Str "255\8211\&66,",Space,Str "1987\8211\&1999."] ,Para [Str "Ellipses\8230and\8230and\8230."] ,HorizontalRule ,Header 1 ("latex",[],[]) [Str "LaTeX"] ,BulletList [[Plain [RawInline (Format "tex") "\\cite[22-23]{smith.1899}"]] ,[Plain [Math InlineMath "2+2=4"]] ,[Plain [Math InlineMath "x \\in y"]] ,[Plain [Math InlineMath "\\alpha \\wedge \\omega"]] ,[Plain [Math InlineMath "223"]] ,[Plain [Math InlineMath "p",Str "-Tree"]] ,[Plain [Str "Here\8217s",Space,Str "some",Space,Str "display",Space,Str "math:",SoftBreak,Math DisplayMath "\\frac{d}{dx}f(x)=\\lim_{h\\to 0}\\frac{f(x+h)-f(x)}{h}"]] ,[Plain [Str "Here\8217s",Space,Str "one",Space,Str "that",Space,Str "has",Space,Str "a",Space,Str "line",Space,Str "break",Space,Str "in",Space,Str "it:",Space,Math InlineMath "\\alpha + \\omega \\times x^2",Str "."]]] ,Para [Str "These",Space,Str "shouldn\8217t",Space,Str "be",Space,Str "math:"] ,BulletList [[Plain [Str "To",Space,Str "get",Space,Str "the",Space,Str "famous",Space,Str "equation,",Space,Str "write",Space,Code ("",[],[]) "$e = mc^2$",Str "."]] ,[Plain [Str "$22,000",Space,Str "is",Space,Str "a",Space,Emph [Str "lot"],Space,Str "of",Space,Str "money.",Space,Str "So",Space,Str "is",Space,Str "$34,000.",SoftBreak,Str "(It",Space,Str "worked",Space,Str "if",Space,Quoted DoubleQuote [Str "lot"],Space,Str "is",Space,Str "emphasized.)"]] ,[Plain [Str "Shoes",Space,Str "($20)",Space,Str "and",Space,Str "socks",Space,Str "($5)."]] ,[Plain [Str "Escaped",Space,Code ("",[],[]) "$",Str ":",Space,Str "$73",Space,Emph [Str "this",Space,Str "should",Space,Str "be",Space,Str "emphasized"],Space,Str "23$."]]] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "LaTeX",Space,Str "table:"] ,RawBlock (Format "latex") "\\begin{tabular}{|l|l|}\\hline\nAnimal & Number \\\\ \\hline\nDog & 2 \\\\\nCat & 1 \\\\ \\hline\n\\end{tabular}" ,HorizontalRule ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Plain [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Plain [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Plain [Str "section:",Space,Str "\167"]] ,[Plain [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Plain [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "AT&T",Space,Str "is",Space,Str "another",Space,Str "way",Space,Str "to",Space,Str "write",Space,Str "it."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "`"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,HorizontalRule ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by two spaces"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title preceded by a tab"),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with \"quotes\" in it")] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","title with single quotes")] ,Para [Link ("",[],[]) [Str "with_underscore"] ("/url/with_underscore","")] ,Para [Link ("",[],[]) [Str "Email",Space,Str "link"] ("mailto:nobody@nowhere.net","")] ,Para [Link ("",[],[]) [Str "Empty"] ("",""),Str "."] ,Header 2 ("reference",[],[]) [Str "Reference"] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "With",Space,Link ("",[],[]) [Str "embedded",Space,Str "[brackets]"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "b"] ("/url/",""),Space,Str "by",Space,Str "itself",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "link."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "once"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "twice"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "thrice"] ("/url",""),Str "."] ,Para [Str "This",Space,Str "should",Space,Str "[not][]",Space,Str "be",Space,Str "a",Space,Str "link."] ,CodeBlock ("",[],[]) "[not]: /url" ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/","Title with \"quotes\" inside"),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "biz"] ("/url/","Title with \"quote\" inside"),Str "."] ,Header 2 ("with-ampersands",[],[]) [Str "With",Space,Str "ampersands"] ,Para [Str "Here\8217s",Space,Str "a",Space,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",Space,Link ("",[],[]) [Str "AT&T"] ("http://att.com/","AT&T"),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link"] ("/script?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link",Space,Str "in",Space,Str "pointy",Space,Str "braces"] ("/script?foo=1&bar=2",""),Str "."] ,Header 2 ("autolinks",[],[]) [Str "Autolinks"] ,Para [Str "With",Space,Str "an",Space,Str "ampersand:",Space,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2","")] ,BulletList [[Plain [Str "In",Space,Str "a",Space,Str "list?"]] ,[Plain [Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,[Plain [Str "It",Space,Str "should."]]] ,Para [Str "An",Space,Str "e-mail",Space,Str "address:",Space,Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net","")] ,BlockQuote [Para [Str "Blockquoted:",Space,Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,Para [Str "Auto-links",Space,Str "should",Space,Str "not",Space,Str "occur",Space,Str "here:",Space,Code ("",[],[]) ""] ,CodeBlock ("",[],[]) "or here: " ,HorizontalRule ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "lalune"] ("lalune.jpg","fig:Voyage dans la Lune")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [Str "movie"] ("movie.jpg",""),Space,Str "icon."] ,HorizontalRule ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Note [Para [Str "Here",Space,Str "is",Space,Str "the",Space,Str "footnote.",Space,Str "It",Space,Str "can",Space,Str "go",Space,Str "anywhere",Space,Str "after",Space,Str "the",Space,Str "footnote",SoftBreak,Str "reference.",Space,Str "It",Space,Str "need",Space,Str "not",Space,Str "be",Space,Str "placed",Space,Str "at",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "document."]],Space,Str "and",Space,Str "another.",Note [Para [Str "Here\8217s",Space,Str "the",Space,Str "long",Space,Str "note.",Space,Str "This",Space,Str "one",Space,Str "contains",Space,Str "multiple",SoftBreak,Str "blocks."],Para [Str "Subsequent",Space,Str "blocks",Space,Str "are",Space,Str "indented",Space,Str "to",Space,Str "show",Space,Str "that",Space,Str "they",Space,Str "belong",Space,Str "to",Space,Str "the",SoftBreak,Str "footnote",Space,Str "(as",Space,Str "with",Space,Str "list",Space,Str "items)."],CodeBlock ("",[],[]) " { }",Para [Str "If",Space,Str "you",Space,Str "want,",Space,Str "you",Space,Str "can",Space,Str "indent",Space,Str "every",Space,Str "line,",Space,Str "but",Space,Str "you",Space,Str "can",Space,Str "also",Space,Str "be",SoftBreak,Str "lazy",Space,Str "and",Space,Str "just",Space,Str "indent",Space,Str "the",Space,Str "first",Space,Str "line",Space,Str "of",Space,Str "each",Space,Str "block."]],SoftBreak,Str "This",Space,Str "should",Space,Emph [Str "not"],Space,Str "be",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Space,Str "because",Space,Str "it",SoftBreak,Str "contains",Space,Str "a",Space,Str "space.[^my",Space,Str "note]",Space,Str "Here",Space,Str "is",Space,Str "an",Space,Str "inline",Space,Str "note.",Note [Para [Str "This",SoftBreak,Str "is",Space,Emph [Str "easier"],Space,Str "to",Space,Str "type.",Space,Str "Inline",Space,Str "notes",Space,Str "may",Space,Str "contain",SoftBreak,Link ("",[],[]) [Str "links"] ("http://google.com",""),Space,Str "and",Space,Code ("",[],[]) "]",Space,Str "verbatim",Space,Str "characters,",SoftBreak,Str "as",Space,Str "well",Space,Str "as",Space,Str "[bracketed",Space,Str "text]."]]] ,BlockQuote [Para [Str "Notes",Space,Str "can",Space,Str "go",Space,Str "in",Space,Str "quotes.",Note [Para [Str "In",Space,Str "quote."]]]] ,OrderedList (1,Decimal,Period) [[Plain [Str "And",Space,Str "in",Space,Str "list",Space,Str "items.",Note [Para [Str "In",Space,Str "list."]]]]] ,Para [Str "This",Space,Str "paragraph",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "part",Space,Str "of",Space,Str "the",Space,Str "note,",Space,Str "as",Space,Str "it",Space,Str "is",Space,Str "not",Space,Str "indented."]] pandoc-1.16.0.2~dfsg/tests/docbook-xref.docbook0000644000000000000000000000356612645626061020053 0ustar rootroot An Example Book XRef Samples This paragraph demonstrates several features of XRef. A straight link generates the cross-reference text: . A link to an element with an XRefLabel: . A link with an EndTerm: . A link to an cmdsynopsis element: . A link to an funcsynopsis element: . The Second Chapter Some content here The Third Chapter Some content here The Fourth Chapter Chapter 4 Some content here chgrp -R -H -L -P -f group file int max int int1 int int2 pandoc-1.16.0.2~dfsg/tests/tables.plain0000644000000000000000000000477012645626061016424 0ustar rootrootSimple table with caption: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 : Demonstration of simple table syntax. Simple table without caption: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 Simple table indented two spaces: Right Left Center Default ------- ------ -------- --------- 12 12 12 12 123 123 123 123 1 1 1 1 : Demonstration of simple table syntax. Multiline table with caption: -------------------------------------------------------------- Centered Left Right Default aligned Header Aligned Aligned ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. -------------------------------------------------------------- : Here's the caption. It may span multiple lines. Multiline table without caption: -------------------------------------------------------------- Centered Left Right Default aligned Header Aligned Aligned ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. -------------------------------------------------------------- Table without column headers: ----- ----- ----- ----- 12 12 12 12 123 123 123 123 1 1 1 1 ----- ----- ----- ----- Multiline table without column headers: ----------- ---------- ------------ -------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. ----------- ---------- ------------ -------------------------- pandoc-1.16.0.2~dfsg/tests/lhs-test.latex0000644000000000000000000001117712645626061016726 0ustar rootroot\documentclass[]{article} \usepackage{lmodern} \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} \fi % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} \usepackage{hyperref} \hypersetup{unicode=true, pdfborder={0 0 0}, breaklinks=true} \urlstyle{same} % don't use monospace font for urls \usepackage{color} \usepackage{fancyvrb} \newcommand{\VerbBar}{|} \newcommand{\VERB}{\Verb[commandchars=\\\{\}]} \DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}} % Add ',fontsize=\small' for more characters per line \newenvironment{Shaded}{}{} \newcommand{\KeywordTok}[1]{\textcolor[rgb]{0.00,0.44,0.13}{\textbf{{#1}}}} \newcommand{\DataTypeTok}[1]{\textcolor[rgb]{0.56,0.13,0.00}{{#1}}} \newcommand{\DecValTok}[1]{\textcolor[rgb]{0.25,0.63,0.44}{{#1}}} \newcommand{\BaseNTok}[1]{\textcolor[rgb]{0.25,0.63,0.44}{{#1}}} \newcommand{\FloatTok}[1]{\textcolor[rgb]{0.25,0.63,0.44}{{#1}}} \newcommand{\ConstantTok}[1]{\textcolor[rgb]{0.53,0.00,0.00}{{#1}}} \newcommand{\CharTok}[1]{\textcolor[rgb]{0.25,0.44,0.63}{{#1}}} \newcommand{\SpecialCharTok}[1]{\textcolor[rgb]{0.25,0.44,0.63}{{#1}}} \newcommand{\StringTok}[1]{\textcolor[rgb]{0.25,0.44,0.63}{{#1}}} \newcommand{\VerbatimStringTok}[1]{\textcolor[rgb]{0.25,0.44,0.63}{{#1}}} \newcommand{\SpecialStringTok}[1]{\textcolor[rgb]{0.73,0.40,0.53}{{#1}}} \newcommand{\ImportTok}[1]{{#1}} \newcommand{\CommentTok}[1]{\textcolor[rgb]{0.38,0.63,0.69}{\textit{{#1}}}} \newcommand{\DocumentationTok}[1]{\textcolor[rgb]{0.73,0.13,0.13}{\textit{{#1}}}} \newcommand{\AnnotationTok}[1]{\textcolor[rgb]{0.38,0.63,0.69}{\textbf{\textit{{#1}}}}} \newcommand{\CommentVarTok}[1]{\textcolor[rgb]{0.38,0.63,0.69}{\textbf{\textit{{#1}}}}} \newcommand{\OtherTok}[1]{\textcolor[rgb]{0.00,0.44,0.13}{{#1}}} \newcommand{\FunctionTok}[1]{\textcolor[rgb]{0.02,0.16,0.49}{{#1}}} \newcommand{\VariableTok}[1]{\textcolor[rgb]{0.10,0.09,0.49}{{#1}}} \newcommand{\ControlFlowTok}[1]{\textcolor[rgb]{0.00,0.44,0.13}{\textbf{{#1}}}} \newcommand{\OperatorTok}[1]{\textcolor[rgb]{0.40,0.40,0.40}{{#1}}} \newcommand{\BuiltInTok}[1]{{#1}} \newcommand{\ExtensionTok}[1]{{#1}} \newcommand{\PreprocessorTok}[1]{\textcolor[rgb]{0.74,0.48,0.00}{{#1}}} \newcommand{\AttributeTok}[1]{\textcolor[rgb]{0.49,0.56,0.16}{{#1}}} \newcommand{\RegionMarkerTok}[1]{{#1}} \newcommand{\InformationTok}[1]{\textcolor[rgb]{0.38,0.63,0.69}{\textbf{\textit{{#1}}}}} \newcommand{\WarningTok}[1]{\textcolor[rgb]{0.38,0.63,0.69}{\textbf{\textit{{#1}}}}} \newcommand{\AlertTok}[1]{\textcolor[rgb]{1.00,0.00,0.00}{\textbf{{#1}}}} \newcommand{\ErrorTok}[1]{\textcolor[rgb]{1.00,0.00,0.00}{\textbf{{#1}}}} \newcommand{\NormalTok}[1]{{#1}} \IfFileExists{parskip.sty}{% \usepackage{parskip} }{% else \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} } \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} \setcounter{secnumdepth}{0} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} \fi \date{} \begin{document} \section{lhs test}\label{lhs-test} \texttt{unsplit} is an arrow that takes a pair of values and combines them to return a single value: \begin{Shaded} \begin{Highlighting}[] \OtherTok{unsplit ::} \NormalTok{(}\DataTypeTok{Arrow} \NormalTok{a) }\OtherTok{=>} \NormalTok{(b }\OtherTok{->} \NormalTok{c }\OtherTok{->} \NormalTok{d) }\OtherTok{->} \NormalTok{a (b, c) d} \NormalTok{unsplit }\FunctionTok{=} \NormalTok{arr }\FunctionTok{.} \NormalTok{uncurry} \CommentTok{-- arr (\textbackslash{}op (x,y) -> x `op` y)} \end{Highlighting} \end{Shaded} \texttt{(***)} combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair). \begin{verbatim} f *** g = first f >>> second g \end{verbatim} Block quote: \begin{quote} foo bar \end{quote} \end{document} pandoc-1.16.0.2~dfsg/tests/tables.textile0000644000000000000000000000673712645626061017004 0ustar rootrootSimple table with caption:
              Demonstration of simple table syntax.
              Right Left Center Default
              12 12 12 12
              123 123 123 123
              1 1 1 1
              Simple table without caption: |_. Right|_. Left|_. Center|_. Default| |>. 12|<. 12|=. 12|12| |>. 123|<. 123|=. 123|123| |>. 1|<. 1|=. 1|1| Simple table indented two spaces:
              Demonstration of simple table syntax.
              Right Left Center Default
              12 12 12 12
              123 123 123 123
              1 1 1 1
              Multiline table with caption:
              Here's the caption. It may span multiple lines.
              Centered Header Left Aligned Right Aligned Default aligned
              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.
              Multiline table without caption:
              Centered Header Left Aligned Right Aligned Default aligned
              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.
              Table without column headers: |>. 12|<. 12|=. 12|>. 12| |>. 123|<. 123|=. 123|>. 123| |>. 1|<. 1|=. 1|>. 1| Multiline table without column headers:
              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.
              pandoc-1.16.0.2~dfsg/tests/opml-reader.native0000644000000000000000000000573012645626061017541 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "Dave",Space,Str "Winer"]]),("date",MetaInlines [Str "Thu,",Space,Str "14",Space,Str "Jul",Space,Str "2005",Space,Str "23:41:05",Space,Str "GMT"]),("title",MetaInlines [Str "States"])]}) [Header 1 ("",[],[]) [Str "United",Space,Str "States"] ,Header 2 ("",[],[]) [Str "Far",Space,Str "West"] ,Header 3 ("",[],[]) [Str "Alaska"] ,Header 3 ("",[],[]) [Str "California"] ,Header 3 ("",[],[]) [Str "Hawaii"] ,Header 3 ("",[],[]) [Strong [Str "Nevada"]] ,Para [Str "I",Space,Str "lived",Space,Str "here",Space,Emph [Str "once"],Str "."] ,Para [Str "Loved",Space,Str "it."] ,Header 4 ("",[],[]) [Link ("",[],[]) [Str "Reno"] ("http://www.reno.gov","")] ,Header 4 ("",[],[]) [Str "Las",Space,Str "Vegas"] ,Header 4 ("",[],[]) [Str "Ely"] ,Header 4 ("",[],[]) [Str "Gerlach"] ,Header 3 ("",[],[]) [Str "Oregon"] ,Header 3 ("",[],[]) [Str "Washington"] ,Header 2 ("",[],[]) [Str "Great",Space,Str "Plains"] ,Header 3 ("",[],[]) [Str "Kansas"] ,Header 3 ("",[],[]) [Str "Nebraska"] ,Header 3 ("",[],[]) [Str "North",Space,Str "Dakota"] ,Header 3 ("",[],[]) [Str "Oklahoma"] ,Header 3 ("",[],[]) [Str "South",Space,Str "Dakota"] ,Header 2 ("",[],[]) [Str "Mid-Atlantic"] ,Header 3 ("",[],[]) [Str "Delaware"] ,Header 3 ("",[],[]) [Str "Maryland"] ,Header 3 ("",[],[]) [Str "New",Space,Str "Jersey"] ,Header 3 ("",[],[]) [Str "New",Space,Str "York"] ,Header 3 ("",[],[]) [Str "Pennsylvania"] ,Header 2 ("",[],[]) [Str "Midwest"] ,Header 3 ("",[],[]) [Str "Illinois"] ,Header 3 ("",[],[]) [Str "Indiana"] ,Header 3 ("",[],[]) [Str "Iowa"] ,Header 3 ("",[],[]) [Str "Kentucky"] ,Header 3 ("",[],[]) [Str "Michigan"] ,Header 3 ("",[],[]) [Str "Minnesota"] ,Header 3 ("",[],[]) [Str "Missouri"] ,Header 3 ("",[],[]) [Str "Ohio"] ,Header 3 ("",[],[]) [Str "West",Space,Str "Virginia"] ,Header 3 ("",[],[]) [Str "Wisconsin"] ,Header 2 ("",[],[]) [Str "Mountains"] ,Header 3 ("",[],[]) [Str "Colorado"] ,Header 3 ("",[],[]) [Str "Idaho"] ,Header 3 ("",[],[]) [Str "Montana"] ,Header 3 ("",[],[]) [Str "Utah"] ,Header 3 ("",[],[]) [Str "Wyoming"] ,Header 2 ("",[],[]) [Str "New",Space,Str "England"] ,Header 3 ("",[],[]) [Str "Connecticut"] ,Header 3 ("",[],[]) [Str "Maine"] ,Header 3 ("",[],[]) [Str "Massachusetts"] ,Header 3 ("",[],[]) [Str "New",Space,Str "Hampshire"] ,Header 3 ("",[],[]) [Str "Rhode",Space,Str "Island"] ,Header 3 ("",[],[]) [Str "Vermont"] ,Header 2 ("",[],[]) [Str "South"] ,Header 3 ("",[],[]) [Str "Alabama"] ,Header 3 ("",[],[]) [Str "Arkansas"] ,Header 3 ("",[],[]) [Str "Florida"] ,Header 3 ("",[],[]) [Str "Georgia"] ,Header 3 ("",[],[]) [Str "Louisiana"] ,Header 3 ("",[],[]) [Str "Mississippi"] ,Header 3 ("",[],[]) [Str "North",Space,Str "Carolina"] ,Header 3 ("",[],[]) [Str "South",Space,Str "Carolina"] ,Header 3 ("",[],[]) [Str "Tennessee"] ,Header 3 ("",[],[]) [Str "Virginia"] ,Header 2 ("",[],[]) [Str "Southwest"] ,Header 3 ("",[],[]) [Str "Arizona"] ,Header 3 ("",[],[]) [Str "New",Space,Str "Mexico"] ,Header 3 ("",[],[]) [Str "Texas"]] pandoc-1.16.0.2~dfsg/tests/lhs-test.html+lhs0000644000000000000000000000676312645626061017344 0ustar rootroot

              lhs test

              unsplit is an arrow that takes a pair of values and combines them to return a single value:

              > unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
              > unsplit = arr . uncurry
              >           -- arr (\op (x,y) -> x `op` y)

              (***) combines two arrows into a new arrow by running the two arrows on a pair of values (one arrow on the first item of the pair and one arrow on the second item of the pair).

              f *** g = first f >>> second g

              Block quote:

              foo bar

              pandoc-1.16.0.2~dfsg/tests/writer.latex0000644000000000000000000004057212645626061016500 0ustar rootroot\documentclass[]{article} \usepackage{lmodern} \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} \fi % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} \usepackage{hyperref} \hypersetup{unicode=true, pdftitle={Pandoc Test Suite}, pdfauthor={John MacFarlane; Anonymous}, pdfborder={0 0 0}, breaklinks=true} \urlstyle{same} % don't use monospace font for urls \usepackage{fancyvrb} \VerbatimFootnotes % allows verbatim text in footnotes \usepackage{graphicx,grffile} \makeatletter \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} \def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi} \makeatother % Scale images if necessary, so that they will not overflow the page % margins by default, and it is still possible to overwrite the defaults % using explicit options in \includegraphics[width, height, ...]{} \setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} \usepackage[normalem]{ulem} % avoid problems with \sout in headers with hyperref: \pdfstringdefDisableCommands{\renewcommand{\sout}{}} \IfFileExists{parskip.sty}{% \usepackage{parskip} }{% else \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} } \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} \setcounter{secnumdepth}{0} % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} \fi \title{Pandoc Test Suite} \author{John MacFarlane \and Anonymous} \date{July 17, 2006} \begin{document} \maketitle This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Headers}\label{headers} \subsection{\texorpdfstring{Level 2 with an \href{/url}{embedded link}}{Level 2 with an embedded link}}\label{level-2-with-an-embedded-link} \subsubsection{\texorpdfstring{Level 3 with \emph{emphasis}}{Level 3 with emphasis}}\label{level-3-with-emphasis} \paragraph{Level 4}\label{level-4} \subparagraph{Level 5}\label{level-5} \section{Level 1}\label{level-1} \subsection{\texorpdfstring{Level 2 with \emph{emphasis}}{Level 2 with emphasis}}\label{level-2-with-emphasis} \subsubsection{Level 3}\label{level-3} with no blank line \subsection{Level 2}\label{level-2} with no blank line \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Paragraphs}\label{paragraphs} Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break\\ here. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Block Quotes}\label{block-quotes} E-mail style: \begin{quote} This is a block quote. It is pretty short. \end{quote} \begin{quote} Code in a block quote: \begin{verbatim} sub status { print "working"; } \end{verbatim} A list: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item item one \item item two \end{enumerate} Nested block quotes: \begin{quote} nested \end{quote} \begin{quote} nested \end{quote} \end{quote} This should not be a block quote: 2 \textgreater{} 1. And a following paragraph. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Code Blocks}\label{code-blocks} Code: \begin{verbatim} ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab \end{verbatim} And: \begin{verbatim} this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ \end{verbatim} \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Lists}\label{lists} \subsection{Unordered}\label{unordered} Asterisks tight: \begin{itemize} \tightlist \item asterisk 1 \item asterisk 2 \item asterisk 3 \end{itemize} Asterisks loose: \begin{itemize} \item asterisk 1 \item asterisk 2 \item asterisk 3 \end{itemize} Pluses tight: \begin{itemize} \tightlist \item Plus 1 \item Plus 2 \item Plus 3 \end{itemize} Pluses loose: \begin{itemize} \item Plus 1 \item Plus 2 \item Plus 3 \end{itemize} Minuses tight: \begin{itemize} \tightlist \item Minus 1 \item Minus 2 \item Minus 3 \end{itemize} Minuses loose: \begin{itemize} \item Minus 1 \item Minus 2 \item Minus 3 \end{itemize} \subsection{Ordered}\label{ordered} Tight: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item First \item Second \item Third \end{enumerate} and: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item One \item Two \item Three \end{enumerate} Loose using tabs: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \item First \item Second \item Third \end{enumerate} and using spaces: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \item One \item Two \item Three \end{enumerate} Multiple paragraphs: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \item Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. \item Item 2. \item Item 3. \end{enumerate} \subsection{Nested}\label{nested} \begin{itemize} \tightlist \item Tab \begin{itemize} \tightlist \item Tab \begin{itemize} \tightlist \item Tab \end{itemize} \end{itemize} \end{itemize} Here's another: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item First \item Second: \begin{itemize} \tightlist \item Fee \item Fie \item Foe \end{itemize} \item Third \end{enumerate} Same thing but with paragraphs: \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \item First \item Second: \begin{itemize} \tightlist \item Fee \item Fie \item Foe \end{itemize} \item Third \end{enumerate} \subsection{Tabs and spaces}\label{tabs-and-spaces} \begin{itemize} \item this is a list item indented with tabs \item this is a list item indented with spaces \begin{itemize} \item this is an example list item indented with tabs \item this is an example list item indented with spaces \end{itemize} \end{itemize} \subsection{Fancy list markers}\label{fancy-list-markers} \begin{enumerate} \def\labelenumi{(\arabic{enumi})} \setcounter{enumi}{1} \item begins with 2 \item and now 3 with a continuation \begin{enumerate} \def\labelenumii{\roman{enumii}.} \setcounter{enumii}{3} \tightlist \item sublist with roman numerals, starting with 4 \item more items \begin{enumerate} \def\labelenumiii{(\Alph{enumiii})} \tightlist \item a subsublist \item a subsublist \end{enumerate} \end{enumerate} \end{enumerate} Nesting: \begin{enumerate} \def\labelenumi{\Alph{enumi}.} \tightlist \item Upper Alpha \begin{enumerate} \def\labelenumii{\Roman{enumii}.} \tightlist \item Upper Roman. \begin{enumerate} \def\labelenumiii{(\arabic{enumiii})} \setcounter{enumiii}{5} \tightlist \item Decimal start with 6 \begin{enumerate} \def\labelenumiv{\alph{enumiv})} \setcounter{enumiv}{2} \tightlist \item Lower alpha with paren \end{enumerate} \end{enumerate} \end{enumerate} \end{enumerate} Autonumbering: \begin{enumerate} \tightlist \item Autonumber. \item More. \begin{enumerate} \tightlist \item Nested. \end{enumerate} \end{enumerate} Should not be a list item: M.A.~2007 B. Williams \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Definition Lists}\label{definition-lists} Tight using spaces: \begin{description} \tightlist \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Tight using tabs: \begin{description} \tightlist \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Loose: \begin{description} \item[apple] red fruit \item[orange] orange fruit \item[banana] yellow fruit \end{description} Multiple blocks with italics: \begin{description} \item[\emph{apple}] red fruit contains seeds, crisp, pleasant to taste \item[\emph{orange}] orange fruit \begin{verbatim} { orange code block } \end{verbatim} \begin{quote} orange block quote \end{quote} \end{description} Multiple definitions, tight: \begin{description} \tightlist \item[apple] red fruit computer \item[orange] orange fruit bank \end{description} Multiple definitions, loose: \begin{description} \item[apple] red fruit computer \item[orange] orange fruit bank \end{description} Blank line after term, indented marker, alternate markers: \begin{description} \item[apple] red fruit computer \item[orange] orange fruit \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item sublist \item sublist \end{enumerate} \end{description} \section{HTML Blocks}\label{html-blocks} Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is \emph{emphasized} And this is \textbf{strong} Here's a simple block: foo This should be a code block, though: \begin{verbatim}
              foo
              \end{verbatim} As should this: \begin{verbatim}
              foo
              \end{verbatim} Now, nested: foo This should just be an HTML comment: Multiline: Code block: \begin{verbatim} \end{verbatim} Just plain comment, with trailing spaces on the line: Code: \begin{verbatim}
              \end{verbatim} Hr's: \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Inline Markup}\label{inline-markup} This is \emph{emphasized}, and so \emph{is this}. This is \textbf{strong}, and so \textbf{is this}. An \emph{\href{/url}{emphasized link}}. \textbf{\emph{This is strong and em.}} So is \textbf{\emph{this}} word. \textbf{\emph{This is strong and em.}} So is \textbf{\emph{this}} word. This is code: \texttt{\textgreater{}}, \texttt{\$}, \texttt{\textbackslash{}}, \texttt{\textbackslash{}\$}, \texttt{\textless{}html\textgreater{}}. \sout{This is \emph{strikeout}.} Superscripts: a\textsuperscript{bc}d a\textsuperscript{\emph{hello}} a\textsuperscript{hello~there}. Subscripts: H\textsubscript{2}O, H\textsubscript{23}O, H\textsubscript{many~of~them}O. These should not be superscripts or subscripts, because of the unescaped spaces: a\^{}b c\^{}d, a\textasciitilde{}b c\textasciitilde{}d. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Smart quotes, ellipses, dashes}\label{smart-quotes-ellipses-dashes} ``Hello,'' said the spider. ``\,`Shelob' is my name.'' `A', `B', and `C' are letters. `Oak,' `elm,' and `beech' are names of trees. So is `pine.' `He said, ``I want to go.''\,' Were you alive in the 70's? Here is some quoted `\texttt{code}' and a ``\href{http://example.com/?foo=1\&bar=2}{quoted link}''. Some dashes: one---two --- three---four --- five. Dashes between numbers: 5--7, 255--66, 1987--1999. Ellipses\ldots{}and\ldots{}and\ldots{}. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{LaTeX}\label{latex} \begin{itemize} \tightlist \item \cite[22-23]{smith.1899} \item \(2+2=4\) \item \(x \in y\) \item \(\alpha \wedge \omega\) \item \(223\) \item \(p\)-Tree \item Here's some display math: \[\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}\] \item Here's one that has a line break in it: \(\alpha + \omega \times x^2\). \end{itemize} These shouldn't be math: \begin{itemize} \tightlist \item To get the famous equation, write \texttt{\$e\ =\ mc\^{}2\$}. \item \$22,000 is a \emph{lot} of money. So is \$34,000. (It worked if ``lot'' is emphasized.) \item Shoes (\$20) and socks (\$5). \item Escaped \texttt{\$}: \$73 \emph{this should be emphasized} 23\$. \end{itemize} Here's a LaTeX table: \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Special Characters}\label{special-characters} Here is some unicode: \begin{itemize} \tightlist \item I hat: Î \item o umlaut: ö \item section: § \item set membership: ∈ \item copyright: © \end{itemize} AT\&T has an ampersand in their name. AT\&T is another way to write it. This \& that. 4 \textless{} 5. 6 \textgreater{} 5. Backslash: \textbackslash{} Backtick: ` Asterisk: * Underscore: \_ Left brace: \{ Right brace: \} Left bracket: {[} Right bracket: {]} Left paren: ( Right paren: ) Greater-than: \textgreater{} Hash: \# Period: . Bang: ! Plus: + Minus: - \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Links}\label{links} \subsection{Explicit}\label{explicit} Just a \href{/url/}{URL}. \href{/url/}{URL and title}. \href{/url/}{URL and title}. \href{/url/}{URL and title}. \href{/url/}{URL and title} \href{/url/}{URL and title} \href{/url/with_underscore}{with\_underscore} \href{mailto:nobody@nowhere.net}{Email link} \href{}{Empty}. \subsection{Reference}\label{reference} Foo \href{/url/}{bar}. Foo \href{/url/}{bar}. Foo \href{/url/}{bar}. With \href{/url/}{embedded {[}brackets{]}}. \href{/url/}{b} by itself should be a link. Indented \href{/url}{once}. Indented \href{/url}{twice}. Indented \href{/url}{thrice}. This should {[}not{]}{[}{]} be a link. \begin{verbatim} [not]: /url \end{verbatim} Foo \href{/url/}{bar}. Foo \href{/url/}{biz}. \subsection{With ampersands}\label{with-ampersands} Here's a \href{http://example.com/?foo=1\&bar=2}{link with an ampersand in the URL}. Here's a link with an amersand in the link text: \href{http://att.com/}{AT\&T}. Here's an \href{/script?foo=1\&bar=2}{inline link}. Here's an \href{/script?foo=1\&bar=2}{inline link in pointy braces}. \subsection{Autolinks}\label{autolinks} With an ampersand: \url{http://example.com/?foo=1\&bar=2} \begin{itemize} \tightlist \item In a list? \item \url{http://example.com/} \item It should. \end{itemize} An e-mail address: \href{mailto:nobody@nowhere.net}{\nolinkurl{nobody@nowhere.net}} \begin{quote} Blockquoted: \url{http://example.com/} \end{quote} Auto-links should not occur here: \texttt{\textless{}http://example.com/\textgreater{}} \begin{verbatim} or here: \end{verbatim} \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Images}\label{images} From ``Voyage dans la Lune'' by Georges Melies (1902): \begin{figure}[htbp] \centering \includegraphics{lalune.jpg} \caption{lalune} \end{figure} Here is a movie \includegraphics{movie.jpg} icon. \begin{center}\rule{0.5\linewidth}{\linethickness}\end{center} \section{Footnotes}\label{footnotes} Here is a footnote reference,\footnote{Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.} and another.\footnote{Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). \begin{Verbatim} { } \end{Verbatim} If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.} This should \emph{not} be a footnote reference, because it contains a space.{[}\^{}my note{]} Here is an inline note.\footnote{This is \emph{easier} to type. Inline notes may contain \href{http://google.com}{links} and \texttt{{]}} verbatim characters, as well as {[}bracketed text{]}.} \begin{quote} Notes can go in quotes.\footnote{In quote.} \end{quote} \begin{enumerate} \def\labelenumi{\arabic{enumi}.} \tightlist \item And in list items.\footnote{In list.} \end{enumerate} This paragraph should not be part of the note, as it is not indented. \end{document} pandoc-1.16.0.2~dfsg/tests/tables.asciidoc0000644000000000000000000000410512645626061017067 0ustar rootrootSimple table with caption: .Demonstration of simple table syntax. [cols=">,<,^,",options="header",] |============================ |Right |Left |Center |Default |12 |12 |12 |12 |123 |123 |123 |123 |1 |1 |1 |1 |============================ Simple table without caption: [cols=">,<,^,",options="header",] |============================ |Right |Left |Center |Default |12 |12 |12 |12 |123 |123 |123 |123 |1 |1 |1 |1 |============================ Simple table indented two spaces: .Demonstration of simple table syntax. [cols=">,<,^,",options="header",] |============================ |Right |Left |Center |Default |12 |12 |12 |12 |123 |123 |123 |123 |1 |1 |1 |1 |============================ Multiline table with caption: .Here's the caption. It may span multiple lines. [width="78%",cols="^21%,<17%,>20%,<42%",options="header",] |======================================================================= |Centered Header |Left Aligned |Right Aligned |Default aligned |First |row |12.0 |Example of a row that spans multiple lines. |Second |row |5.0 |Here's another one. Note the blank line between rows. |======================================================================= Multiline table without caption: [width="78%",cols="^21%,<17%,>20%,<42%",options="header",] |======================================================================= |Centered Header |Left Aligned |Right Aligned |Default aligned |First |row |12.0 |Example of a row that spans multiple lines. |Second |row |5.0 |Here's another one. Note the blank line between rows. |======================================================================= Table without column headers: [cols=">,<,^,>",] |================== |12 |12 |12 |12 |123 |123 |123 |123 |1 |1 |1 |1 |================== Multiline table without column headers: [width="78%",cols="^21%,<17%,>20%,42%",] |======================================================================= |First |row |12.0 |Example of a row that spans multiple lines. |Second |row |5.0 |Here's another one. Note the blank line between rows. |======================================================================= pandoc-1.16.0.2~dfsg/tests/writer.mediawiki0000644000000000000000000002330012645626061017314 0ustar rootrootThis is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. ----- = Headers = == Level 2 with an [[url|embedded link]] == === Level 3 with ''emphasis'' === ==== Level 4 ==== ===== Level 5 ===== = Level 1 = == Level 2 with ''emphasis'' == === Level 3 === with no blank line == Level 2 == with no blank line ----- = Paragraphs = Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break
              here. ----- = Block Quotes = E-mail style:
              This is a block quote. It is pretty short.
              Code in a block quote:
              sub status {
                  print "working";
              }
              A list: # item one # item two Nested block quotes:
              nested
              nested
              This should not be a block quote: 2 > 1. And a following paragraph. ----- = Code Blocks = Code:
              ---- (should be four hyphens)
              
              sub status {
                  print "working";
              }
              
              this code block is indented by one tab
              And:
                  this code block is indented by two tabs
              
              These should not be escaped:  \$ \\ \> \[ \{
              ----- = Lists = == Unordered == Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: * Plus 1 * Plus 2 * Plus 3 Pluses loose: * Plus 1 * Plus 2 * Plus 3 Minuses tight: * Minus 1 * Minus 2 * Minus 3 Minuses loose: * Minus 1 * Minus 2 * Minus 3 == Ordered == Tight: # First # Second # Third and: # One # Two # Three Loose using tabs: # First # Second # Third and using spaces: # One # Two # Three Multiple paragraphs:
              1. Item 1, graf one.

                Item 1. graf two. The quick brown fox jumped over the lazy dog’s back.

              2. Item 2.

              3. Item 3.

              == Nested == * Tab ** Tab *** Tab Here’s another: # First # Second: #* Fee #* Fie #* Foe # Third Same thing but with paragraphs: # First # Second: #* Fee #* Fie #* Foe # Third == Tabs and spaces == * this is a list item indented with tabs * this is a list item indented with spaces ** this is an example list item indented with tabs ** this is an example list item indented with spaces == Fancy list markers ==
              1. begins with 2
              2. and now 3

                with a continuation

                1. sublist with roman numerals, starting with 4
                2. more items
                  1. a subsublist
                  2. a subsublist
              Nesting:
              1. Upper Alpha
                1. Upper Roman.
                  1. Decimal start with 6
                    1. Lower alpha with paren
              Autonumbering: # Autonumber. # More. ## Nested. Should not be a list item: M.A. 2007 B. Williams ----- = Definition Lists = Tight using spaces: ; apple : red fruit ; orange : orange fruit ; banana : yellow fruit Tight using tabs: ; apple : red fruit ; orange : orange fruit ; banana : yellow fruit Loose: ; apple : red fruit ; orange : orange fruit ; banana : yellow fruit Multiple blocks with italics:
              ''apple''

              red fruit

              contains seeds, crisp, pleasant to taste

              ''orange''

              orange fruit

              { orange code block }

              orange block quote

              Multiple definitions, tight: ; apple : red fruit : computer ; orange : orange fruit : bank Multiple definitions, loose: ; apple : red fruit : computer ; orange : orange fruit : bank Blank line after term, indented marker, alternate markers: ; apple : red fruit : computer ; orange : orange fruit ;# sublist ;# sublist = HTML Blocks = Simple block on one line:
              foo
              And nested without indentation:
              foo
              bar
              Interpreted markdown in a table:
              This is ''emphasized'' And this is '''strong'''
              Here’s a simple block:
              foo
              This should be a code block, though:
              <div>
                  foo
              </div>
              As should this:
              <div>foo</div>
              Now, nested:
              foo
              This should just be an HTML comment: Multiline: Code block:
              <!-- Comment -->
              Just plain comment, with trailing spaces on the line: Code:
              <hr />
              Hr’s:








              ----- = Inline Markup = This is ''emphasized'', and so ''is this''. This is '''strong''', and so '''is this'''. An ''[[url|emphasized link]]''. '''''This is strong and em.''''' So is '''''this''''' word. '''''This is strong and em.''''' So is '''''this''''' word. This is code: >, $, \, \$, <html>. This is ''strikeout''. Superscripts: abcd a''hello'' ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ----- = Smart quotes, ellipses, dashes = “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘code’ and a “[http://example.com/?foo=1&bar=2 quoted link]”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ----- = LaTeX = * * 2+2=4 * x \in y * \alpha \wedge \omega * 223 * p-Tree * Here’s some display math: \frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h} * Here’s one that has a line break in it: \alpha + \omega \times x^2. These shouldn’t be math: * To get the famous equation, write $e = mc^2$. * $22,000 is a ''lot'' of money. So is $34,000. (It worked if “lot” is emphasized.) * Shoes ($20) and socks ($5). * Escaped $: $73 ''this should be emphasized'' 23$. Here’s a LaTeX table: ----- = Special Characters = Here is some unicode: * I hat: Î * o umlaut: ö * section: § * set membership: ∈ * copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - ----- = Links = == Explicit == Just a [[url/|URL]]. [[url/|URL and title]]. [[url/|URL and title]]. [[url/|URL and title]]. [[url/|URL and title]] [[url/|URL and title]] [[url/with_underscore|with_underscore]] [mailto:nobody@nowhere.net Email link] [[|Empty]]. == Reference == Foo [[url/|bar]]. Foo [[url/|bar]]. Foo [[url/|bar]]. With [[url/|embedded [brackets]]]. [[url/|b]] by itself should be a link. Indented [[url|once]]. Indented [[url|twice]]. Indented [[url|thrice]]. This should [not][] be a link.
              [not]: /url
              Foo [[url/|bar]]. Foo [[url/|biz]]. == With ampersands == Here’s a [http://example.com/?foo=1&bar=2 link with an ampersand in the URL]. Here’s a link with an amersand in the link text: [http://att.com/ AT&T]. Here’s an [[script?foo=1&bar=2|inline link]]. Here’s an [[script?foo=1&bar=2|inline link in pointy braces]]. == Autolinks == With an ampersand: http://example.com/?foo=1&bar=2 * In a list? * http://example.com/ * It should. An e-mail address: [mailto:nobody@nowhere.net nobody@nowhere.net]
              Blockquoted: http://example.com/
              Auto-links should not occur here: <http://example.com/>
              or here: <http://example.com/>
              ----- = Images = From “Voyage dans la Lune” by Georges Melies (1902): [[File:lalune.jpg|frame|none|alt=Voyage dans la Lune|caption lalune]] Here is a movie [[File:movie.jpg|movie]] icon. ----- = Footnotes = Here is a footnote reference,Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. and another.Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items).
                { <code> }
              If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.
              This should ''not'' be a footnote reference, because it contains a space.[^my note] Here is an inline note.This is ''easier'' to type. Inline notes may contain [http://google.com links] and ] verbatim characters, as well as [bracketed text].
              Notes can go in quotes.In quote.
              # And in list items.In list. This paragraph should not be part of the note, as it is not indented. pandoc-1.16.0.2~dfsg/tests/tables.html0000644000000000000000000001064212645626061016260 0ustar rootroot

              Simple table with caption:

              Demonstration of simple table syntax.
              Right Left Center Default
              12 12 12 12
              123 123 123 123
              1 1 1 1

              Simple table without caption:

              Right Left Center Default
              12 12 12 12
              123 123 123 123
              1 1 1 1

              Simple table indented two spaces:

              Demonstration of simple table syntax.
              Right Left Center Default
              12 12 12 12
              123 123 123 123
              1 1 1 1

              Multiline table with caption:

              Here's the caption. It may span multiple lines.
              Centered Header Left Aligned Right Aligned Default aligned
              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.

              Multiline table without caption:

              Centered Header Left Aligned Right Aligned Default aligned
              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.

              Table without column headers:

              12 12 12 12
              123 123 123 123
              1 1 1 1

              Multiline table without column headers:

              First row 12.0 Example of a row that spans multiple lines.
              Second row 5.0 Here's another one. Note the blank line between rows.
              pandoc-1.16.0.2~dfsg/tests/writer.textile0000644000000000000000000002411412645626061017033 0ustar rootrootThis is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite.
              h1(#headers). Headers h2(#level-2-with-an-embedded-link). Level 2 with an "embedded link":/url h3(#level-3-with-emphasis). Level 3 with _emphasis_ h4(#level-4). Level 4 h5(#level-5). Level 5 h1(#level-1). Level 1 h2(#level-2-with-emphasis). Level 2 with _emphasis_ h3(#level-3). Level 3 with no blank line h2(#level-2). Level 2 with no blank line
              h1(#paragraphs). Paragraphs Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break here.
              h1(#block-quotes). Block Quotes E-mail style: bq. This is a block quote. It is pretty short.
              Code in a block quote: bc. sub status { print "working"; } A list: # item one # item two Nested block quotes: bq. nested bq. nested
              This should not be a block quote: 2 > 1. And a following paragraph.
              h1(#code-blocks). Code Blocks Code:
              ---- (should be four hyphens)
              
              sub status {
                  print "working";
              }
              
              this code block is indented by one tab
              
              And:
                  this code block is indented by two tabs
              
              These should not be escaped:  \$ \\ \> \[ \{
              

              h1(#lists). Lists h2(#unordered). Unordered Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: * Plus 1 * Plus 2 * Plus 3 Pluses loose: * Plus 1 * Plus 2 * Plus 3 Minuses tight: * Minus 1 * Minus 2 * Minus 3 Minuses loose: * Minus 1 * Minus 2 * Minus 3 h2(#ordered). Ordered Tight: # First # Second # Third and: # One # Two # Three Loose using tabs: # First # Second # Third and using spaces: # One # Two # Three Multiple paragraphs:
              1. Item 1, graf one.

                Item 1. graf two. The quick brown fox jumped over the lazy dog's back.

              2. Item 2.

              3. Item 3.

              h2(#nested). Nested * Tab ** Tab *** Tab Here's another: # First # Second: #* Fee #* Fie #* Foe # Third Same thing but with paragraphs: # First # Second: #* Fee #* Fie #* Foe # Third h2(#tabs-and-spaces). Tabs and spaces * this is a list item indented with tabs * this is a list item indented with spaces ** this is an example list item indented with tabs ** this is an example list item indented with spaces h2(#fancy-list-markers). Fancy list markers
              1. begins with 2
              2. and now 3

                with a continuation

                1. sublist with roman numerals, starting with 4
                2. more items
                  1. a subsublist
                  2. a subsublist
              Nesting:
              1. Upper Alpha
                1. Upper Roman.
                  1. Decimal start with 6
                    1. Lower alpha with paren
              Autonumbering: # Autonumber. # More. ## Nested. Should not be a list item: M.A. 2007 B. Williams
              h1(#definition-lists). Definition Lists Tight using spaces:
              apple
              red fruit
              orange
              orange fruit
              banana
              yellow fruit
              Tight using tabs:
              apple
              red fruit
              orange
              orange fruit
              banana
              yellow fruit
              Loose:
              apple

              red fruit

              orange

              orange fruit

              banana

              yellow fruit

              Multiple blocks with italics:
              _apple_

              red fruit

              contains seeds, crisp, pleasant to taste

              _orange_

              orange fruit

              bc. { orange code block } bq.

              orange block quote

              Multiple definitions, tight:
              apple
              red fruit
              computer
              orange
              orange fruit
              bank
              Multiple definitions, loose:
              apple

              red fruit

              computer

              orange

              orange fruit

              bank

              Blank line after term, indented marker, alternate markers:
              apple

              red fruit

              computer

              orange

              orange fruit

              1. sublist
              2. sublist
              h1(#html-blocks). HTML Blocks Simple block on one line:
              foo
              And nested without indentation:
              foo
              bar
              Interpreted markdown in a table:
              This is _emphasized_ And this is *strong*
              Here's a simple block:
              foo
              This should be a code block, though: bc.
              foo
              As should this: bc.
              foo
              Now, nested:
              foo
              This should just be an HTML comment: Multiline: Code block: bc. Just plain comment, with trailing spaces on the line: Code: bc.
              Hr's:









              h1(#inline-markup). Inline Markup This is _emphasized_, and so _is this_. This is *strong*, and so *is this*. An _"emphasized link":/url_. *_This is strong and em._* So is *_this_* word. *_This is strong and em._* So is *_this_* word. This is code: @>@, @$@, @\@, @\$@, @@. -This is _strikeout_.- Superscripts: a[^bc^]d a[^_hello_^] a[^hello there^]. Subscripts: H[~2~]O, H[~23~]O, H[~many of them~]O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d.
              h1(#smart-quotes-ellipses-dashes). Smart quotes, ellipses, dashes "Hello," said the spider. "'Shelob' is my name." 'A', 'B', and 'C' are letters. 'Oak,' 'elm,' and 'beech' are names of trees. So is 'pine.' 'He said, "I want to go."' Were you alive in the 70's? Here is some quoted '@code@' and a ""quoted link":http://example.com/?foo=1&bar=2". Some dashes: one -- two -- three -- four -- five. Dashes between numbers: 5 - 7, 255 - 66, 1987 - 1999. Ellipses...and...and....
              h1(#latex). LaTeX * * 2+2=4 * x \in y * \alpha \wedge \omega * 223 * p-Tree * Here's some display math: \frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h} * Here's one that has a line break in it: \alpha + \omega \times x^2. These shouldn't be math: * To get the famous equation, write @$e = mc^2$@. * $22,000 is a _lot_ of money. So is $34,000. (It worked if "lot" is emphasized.) * Shoes ($20) and socks ($5). * Escaped @$@: $73 _this should be emphasized_ 23$. Here's a LaTeX table:
              h1(#special-characters). Special Characters Here is some unicode: * I hat: Î * o umlaut: ö * section: § * set membership: ∈ * copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: -
              h1(#links). Links h2(#explicit). Explicit Just a "URL":/url/. "URL and title":/url/. "URL and title":/url/. "URL and title":/url/. "URL and title":/url/ "URL and title":/url/ "with_underscore":/url/with_underscore "Email link":mailto:nobody@nowhere.net "Empty":. h2(#reference). Reference Foo "bar":/url/. Foo "bar":/url/. Foo "bar":/url/. With "embedded [brackets]":/url/. "b":/url/ by itself should be a link. Indented "once":/url. Indented "twice":/url. Indented "thrice":/url. This should [not][] be a link. bc. [not]: /url Foo "bar":/url/. Foo "biz":/url/. h2(#with-ampersands). With ampersands Here's a "link with an ampersand in the URL":http://example.com/?foo=1&bar=2. Here's a link with an amersand in the link text: "AT&T":http://att.com/. Here's an "inline link":/script?foo=1&bar=2. Here's an "inline link in pointy braces":/script?foo=1&bar=2. h2(#autolinks). Autolinks With an ampersand: "$":http://example.com/?foo=1&bar=2 * In a list? * "$":http://example.com/ * It should. An e-mail address: "nobody@nowhere.net":mailto:nobody@nowhere.net bq. Blockquoted: "$":http://example.com/ Auto-links should not occur here: @@ bc. or here:
              h1(#images). Images From "Voyage dans la Lune" by Georges Melies (1902): !lalune.jpg(Voyage dans la Lune)! lalune Here is a movie !movie.jpg(movie)! icon.
              h1(#footnotes). Footnotes Here is a footnote reference,[1] and another.[2] This should _not_ be a footnote reference, because it contains a space.[^my note] Here is an inline note.[3] bq. Notes can go in quotes.[4] # And in list items.[5] This paragraph should not be part of the note, as it is not indented. fn1. Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. fn2. Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). bc. { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. fn3. This is _easier_ to type. Inline notes may contain "links":http://google.com and @]@ verbatim characters, as well as [bracketed text]. fn4. In quote. fn5. In list. pandoc-1.16.0.2~dfsg/tests/dokuwiki_multiblock_table.native0000644000000000000000000000077012645626061022553 0ustar rootroot[Table [Str "Sample",Space,Str "grid",Space,Str "table."] [AlignDefault,AlignDefault,AlignDefault] [0.2222222222222222,0.2222222222222222,0.2916666666666667] [[Plain [Str "Fruit"]] ,[Plain [Str "Price"]] ,[Plain [Str "Advantages"]]] [[[Para [Str "Bananas"]] ,[Para [Str "$1.34"]] ,[Para [Str "built-in",Space,Str "wrapper"] ,Para [Str "potassium"]]] ,[[Para [Str "Oranges"]] ,[Para [Str "$2.10"]] ,[BulletList [[Plain [Str "cures",Space,Str "scurvy"]] ,[Plain [Str "tasty"]]]]]]] pandoc-1.16.0.2~dfsg/tests/writer.rtf0000644000000000000000000016527012645626061016161 0ustar rootroot{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}} {\colortbl;\red255\green0\blue0;\red0\green0\blue255;} \widowctrl\hyphauto {\pard \qc \f0 \sa180 \li0 \fi0 \b \fs36 Pandoc Test Suite\par} {\pard \qc \f0 \sa180 \li0 \fi0 John MacFarlane\par} {\pard \qc \f0 \sa180 \li0 \fi0 Anonymous\par} {\pard \qc \f0 \sa180 \li0 \fi0 July 17, 2006\par} {\pard \ql \f0 \sa180 \li0 \fi0 \par} {\pard \ql \f0 \sa180 \li0 \fi0 This is a set of tests for pandoc. Most of them are adapted from John Gruber\u8217's markdown test suite.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Headers\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Level 2 with an {\field{\*\fldinst{HYPERLINK "/url"}}{\fldrslt{\ul embedded link }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Level 3 with {\i emphasis}\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs24 Level 4\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs20 Level 5\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Level 1\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Level 2 with {\i emphasis}\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs28 Level 3\par} {\pard \ql \f0 \sa180 \li0 \fi0 with no blank line\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Level 2\par} {\pard \ql \f0 \sa180 \li0 \fi0 with no blank line\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Paragraphs\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's a regular paragraph.\par} {\pard \ql \f0 \sa180 \li0 \fi0 In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's one with a bullet. * criminey.\par} {\pard \ql \f0 \sa180 \li0 \fi0 There should be a hard line break\line here.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Block Quotes\par} {\pard \ql \f0 \sa180 \li0 \fi0 E-mail style:\par} {\pard \ql \f0 \sa180 \li720 \fi0 This is a block quote. It is pretty short.\par} {\pard \ql \f0 \sa180 \li720 \fi0 Code in a block quote:\par} {\pard \ql \f0 \sa180 \li720 \fi0 \f1 sub status \{\line print "working";\line \}\par} {\pard \ql \f0 \sa180 \li720 \fi0 A list:\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 1.\tx360\tab item one\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 2.\tx360\tab item two\sa180\par} {\pard \ql \f0 \sa180 \li720 \fi0 Nested block quotes:\par} {\pard \ql \f0 \sa180 \li1440 \fi0 nested\par} {\pard \ql \f0 \sa180 \li1440 \fi0 nested\par} {\pard \ql \f0 \sa180 \li0 \fi0 This should not be a block quote: 2 > 1.\par} {\pard \ql \f0 \sa180 \li0 \fi0 And a following paragraph.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Code Blocks\par} {\pard \ql \f0 \sa180 \li0 \fi0 Code:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 ---- (should be four hyphens)\line \line sub status \{\line print "working";\line \}\line \line this code block is indented by one tab\par} {\pard \ql \f0 \sa180 \li0 \fi0 And:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 this code block is indented by two tabs\line \line These should not be escaped: \\$ \\\\ \\> \\[ \\\{\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Lists\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Unordered\par} {\pard \ql \f0 \sa180 \li0 \fi0 Asterisks tight:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab asterisk 1\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab asterisk 2\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab asterisk 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Asterisks loose:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab asterisk 1\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab asterisk 2\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab asterisk 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Pluses tight:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Plus 1\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Plus 2\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Plus 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Pluses loose:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Plus 1\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Plus 2\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Plus 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Minuses tight:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Minus 1\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Minus 2\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Minus 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Minuses loose:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Minus 1\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Minus 2\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab Minus 3\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Ordered\par} {\pard \ql \f0 \sa180 \li0 \fi0 Tight:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 1.\tx360\tab First\par} {\pard \ql \f0 \sa0 \li360 \fi-360 2.\tx360\tab Second\par} {\pard \ql \f0 \sa0 \li360 \fi-360 3.\tx360\tab Third\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 and:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 1.\tx360\tab One\par} {\pard \ql \f0 \sa0 \li360 \fi-360 2.\tx360\tab Two\par} {\pard \ql \f0 \sa0 \li360 \fi-360 3.\tx360\tab Three\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Loose using tabs:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 1.\tx360\tab First\par} {\pard \ql \f0 \sa180 \li360 \fi-360 2.\tx360\tab Second\par} {\pard \ql \f0 \sa180 \li360 \fi-360 3.\tx360\tab Third\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 and using spaces:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 1.\tx360\tab One\par} {\pard \ql \f0 \sa180 \li360 \fi-360 2.\tx360\tab Two\par} {\pard \ql \f0 \sa180 \li360 \fi-360 3.\tx360\tab Three\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiple paragraphs:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 1.\tx360\tab Item 1, graf one.\par} {\pard \ql \f0 \sa180 \li360 \fi0 Item 1. graf two. The quick brown fox jumped over the lazy dog\u8217's back.\par} {\pard \ql \f0 \sa180 \li360 \fi-360 2.\tx360\tab Item 2.\par} {\pard \ql \f0 \sa180 \li360 \fi-360 3.\tx360\tab Item 3.\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Nested\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Tab\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Tab\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 \bullet \tx360\tab Tab\sa180\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's another:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 1.\tx360\tab First\par} {\pard \ql \f0 \sa0 \li360 \fi-360 2.\tx360\tab Second:\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fee\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fie\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Foe\sa180\par} {\pard \ql \f0 \sa0 \li360 \fi-360 3.\tx360\tab Third\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Same thing but with paragraphs:\par} {\pard \ql \f0 \sa180 \li360 \fi-360 1.\tx360\tab First\par} {\pard \ql \f0 \sa180 \li360 \fi-360 2.\tx360\tab Second:\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fee\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Fie\par} {\pard \ql \f0 \sa0 \li720 \fi-360 \endash \tx360\tab Foe\sa180\par} {\pard \ql \f0 \sa180 \li360 \fi-360 3.\tx360\tab Third\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Tabs and spaces\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab this is a list item indented with tabs\par} {\pard \ql \f0 \sa180 \li360 \fi-360 \bullet \tx360\tab this is a list item indented with spaces\par} {\pard \ql \f0 \sa180 \li720 \fi-360 \endash \tx360\tab this is an example list item indented with tabs\par} {\pard \ql \f0 \sa180 \li720 \fi-360 \endash \tx360\tab this is an example list item indented with spaces\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Fancy list markers\par} {\pard \ql \f0 \sa0 \li360 \fi-360 (2)\tx360\tab begins with 2\par} {\pard \ql \f0 \sa180 \li360 \fi-360 (3)\tx360\tab and now 3\par} {\pard \ql \f0 \sa180 \li360 \fi0 with a continuation\par} {\pard \ql \f0 \sa0 \li720 \fi-360 iv.\tx360\tab sublist with roman numerals, starting with 4\par} {\pard \ql \f0 \sa0 \li720 \fi-360 v.\tx360\tab more items\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 (A)\tx360\tab a subsublist\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 (B)\tx360\tab a subsublist\sa180\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Nesting:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 A.\tx360\tab Upper Alpha\par} {\pard \ql \f0 \sa0 \li720 \fi-360 I.\tx360\tab Upper Roman.\par} {\pard \ql \f0 \sa0 \li1080 \fi-360 (6)\tx360\tab Decimal start with 6\par} {\pard \ql \f0 \sa0 \li1440 \fi-360 c)\tx360\tab Lower alpha with paren\sa180\sa180\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Autonumbering:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 1.\tx360\tab Autonumber.\par} {\pard \ql \f0 \sa0 \li360 \fi-360 2.\tx360\tab More.\par} {\pard \ql \f0 \sa0 \li720 \fi-360 a.\tx360\tab Nested.\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Should not be a list item:\par} {\pard \ql \f0 \sa180 \li0 \fi0 M.A.\u160?2007\par} {\pard \ql \f0 \sa180 \li0 \fi0 B. Williams\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Definition Lists\par} {\pard \ql \f0 \sa180 \li0 \fi0 Tight using spaces:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa0 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa0 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 banana\par} {\pard \ql \f0 \sa0 \li360 \fi0 yellow fruit\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Tight using tabs:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa0 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa0 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 banana\par} {\pard \ql \f0 \sa0 \li360 \fi0 yellow fruit\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Loose:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa180 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa180 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa0 \li0 \fi0 banana\par} {\pard \ql \f0 \sa180 \li360 \fi0 yellow fruit\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiple blocks with italics:\par} {\pard \ql \f0 \sa0 \li0 \fi0 {\i apple}\par} {\pard \ql \f0 \sa180 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa180 \li360 \fi0 contains seeds, crisp, pleasant to taste\par} {\pard \ql \f0 \sa0 \li0 \fi0 {\i orange}\par} {\pard \ql \f0 \sa180 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa180 \li360 \fi0 \f1 \{ orange code block \}\par} {\pard \ql \f0 \sa180 \li1080 \fi0 orange block quote\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiple definitions, tight:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa0 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa0 \li360 \fi0 computer\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa0 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa0 \li360 \fi0 bank\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiple definitions, loose:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa180 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa180 \li360 \fi0 computer\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa180 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa180 \li360 \fi0 bank\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Blank line after term, indented marker, alternate markers:\par} {\pard \ql \f0 \sa0 \li0 \fi0 apple\par} {\pard \ql \f0 \sa180 \li360 \fi0 red fruit\par} {\pard \ql \f0 \sa180 \li360 \fi0 computer\par} {\pard \ql \f0 \sa0 \li0 \fi0 orange\par} {\pard \ql \f0 \sa180 \li360 \fi0 orange fruit\par} {\pard \ql \f0 \sa0 \li720 \fi-360 1.\tx360\tab sublist\par} {\pard \ql \f0 \sa0 \li720 \fi-360 2.\tx360\tab sublist\sa180\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 HTML Blocks\par} {\pard \ql \f0 \sa180 \li0 \fi0 Simple block on one line:\par} {\pard \ql \f0 \sa0 \li0 \fi0 foo\par} {\pard \ql \f0 \sa180 \li0 \fi0 And nested without indentation:\par} {\pard \ql \f0 \sa180 \li0 \fi0 foo\par} {\pard \ql \f0 \sa0 \li0 \fi0 bar\par} {\pard \ql \f0 \sa180 \li0 \fi0 Interpreted markdown in a table:\par} {\pard \ql \f0 \sa0 \li0 \fi0 This is {\i emphasized}\par} {\pard \ql \f0 \sa0 \li0 \fi0 And this is {\b strong}\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's a simple block:\par} {\pard \ql \f0 \sa180 \li0 \fi0 foo\par} {\pard \ql \f0 \sa180 \li0 \fi0 This should be a code block, though:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1
              \line foo\line
              \par} {\pard \ql \f0 \sa180 \li0 \fi0 As should this:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1
              foo
              \par} {\pard \ql \f0 \sa180 \li0 \fi0 Now, nested:\par} {\pard \ql \f0 \sa0 \li0 \fi0 foo\par} {\pard \ql \f0 \sa180 \li0 \fi0 This should just be an HTML comment:\par} {\pard \ql \f0 \sa180 \li0 \fi0 Multiline:\par} {\pard \ql \f0 \sa180 \li0 \fi0 Code block:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 \par} {\pard \ql \f0 \sa180 \li0 \fi0 Just plain comment, with trailing spaces on the line:\par} {\pard \ql \f0 \sa180 \li0 \fi0 Code:\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1
              \par} {\pard \ql \f0 \sa180 \li0 \fi0 Hr\u8217's:\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Inline Markup\par} {\pard \ql \f0 \sa180 \li0 \fi0 This is {\i emphasized}, and so {\i is this}.\par} {\pard \ql \f0 \sa180 \li0 \fi0 This is {\b strong}, and so {\b is this}.\par} {\pard \ql \f0 \sa180 \li0 \fi0 An {\i {\field{\*\fldinst{HYPERLINK "/url"}}{\fldrslt{\ul emphasized link }}} }.\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\b {\i This is strong and em.}}\par} {\pard \ql \f0 \sa180 \li0 \fi0 So is {\b {\i this}} word.\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\b {\i This is strong and em.}}\par} {\pard \ql \f0 \sa180 \li0 \fi0 So is {\b {\i this}} word.\par} {\pard \ql \f0 \sa180 \li0 \fi0 This is code: {\f1 >}, {\f1 $}, {\f1 \\}, {\f1 \\$}, {\f1 }.\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\strike This is {\i strikeout}.}\par} {\pard \ql \f0 \sa180 \li0 \fi0 Superscripts: a{\super bc}d a{\super {\i hello}} a{\super hello\u160?there}.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Subscripts: H{\sub 2}O, H{\sub 23}O, H{\sub many\u160?of\u160?them}O.\par} {\pard \ql \f0 \sa180 \li0 \fi0 These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Smart quotes, ellipses, dashes\par} {\pard \ql \f0 \sa180 \li0 \fi0 \u8220"Hello,\u8221" said the spider. \u8220"\u8216'Shelob\u8217' is my name.\u8221"\par} {\pard \ql \f0 \sa180 \li0 \fi0 \u8216'A\u8217', \u8216'B\u8217', and \u8216'C\u8217' are letters.\par} {\pard \ql \f0 \sa180 \li0 \fi0 \u8216'Oak,\u8217' \u8216'elm,\u8217' and \u8216'beech\u8217' are names of trees. So is \u8216'pine.\u8217'\par} {\pard \ql \f0 \sa180 \li0 \fi0 \u8216'He said, \u8220"I want to go.\u8221"\u8217' Were you alive in the 70\u8217's?\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here is some quoted \u8216'{\f1 code}\u8217' and a \u8220"{\field{\*\fldinst{HYPERLINK "http://example.com/?foo=1&bar=2"}}{\fldrslt{\ul quoted link }}} \u8221".\par} {\pard \ql \f0 \sa180 \li0 \fi0 Some dashes: one\u8212-two \u8212- three\u8212-four \u8212- five.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Dashes between numbers: 5\u8211-7, 255\u8211-66, 1987\u8211-1999.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Ellipses\u8230?and\u8230?and\u8230?.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 LaTeX\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab \par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 2\u8197?+\u8197?2\u8196?=\u8196?4\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab {\i x}\u8196?\u8712?\u8196?{\i y}\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab {\i \u945?}\u8197?\u8743?\u8197?{\i \u969?}\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab 223\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab {\i p}-Tree\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Here\u8217's some display math: $$\\frac\{d\}\{dx\}f(x)=\\lim_\{h\\to 0\}\\frac\{f(x+h)-f(x)\}\{h\}$$\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Here\u8217's one that has a line break in it: {\i \u945?}\u8197?+\u8197?{\i \u969?}\u8197?\u215?\u8197?{\i x}{\super 2}.\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 These shouldn\u8217't be math:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab To get the famous equation, write {\f1 $e = mc^2$}.\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab $22,000 is a {\i lot} of money. So is $34,000. (It worked if \u8220"lot\u8221" is emphasized.)\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Shoes ($20) and socks ($5).\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab Escaped {\f1 $}: $73 {\i this should be emphasized} 23$.\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's a LaTeX table:\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Special Characters\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here is some unicode:\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab I hat: \u206?\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab o umlaut: \u246?\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab section: \u167?\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab set membership: \u8712?\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab copyright: \u169?\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 AT&T has an ampersand in their name.\par} {\pard \ql \f0 \sa180 \li0 \fi0 AT&T is another way to write it.\par} {\pard \ql \f0 \sa180 \li0 \fi0 This & that.\par} {\pard \ql \f0 \sa180 \li0 \fi0 4 < 5.\par} {\pard \ql \f0 \sa180 \li0 \fi0 6 > 5.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Backslash: \\\par} {\pard \ql \f0 \sa180 \li0 \fi0 Backtick: `\par} {\pard \ql \f0 \sa180 \li0 \fi0 Asterisk: *\par} {\pard \ql \f0 \sa180 \li0 \fi0 Underscore: _\par} {\pard \ql \f0 \sa180 \li0 \fi0 Left brace: \{\par} {\pard \ql \f0 \sa180 \li0 \fi0 Right brace: \}\par} {\pard \ql \f0 \sa180 \li0 \fi0 Left bracket: [\par} {\pard \ql \f0 \sa180 \li0 \fi0 Right bracket: ]\par} {\pard \ql \f0 \sa180 \li0 \fi0 Left paren: (\par} {\pard \ql \f0 \sa180 \li0 \fi0 Right paren: )\par} {\pard \ql \f0 \sa180 \li0 \fi0 Greater-than: >\par} {\pard \ql \f0 \sa180 \li0 \fi0 Hash: #\par} {\pard \ql \f0 \sa180 \li0 \fi0 Period: .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Bang: !\par} {\pard \ql \f0 \sa180 \li0 \fi0 Plus: +\par} {\pard \ql \f0 \sa180 \li0 \fi0 Minus: -\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Links\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Explicit\par} {\pard \ql \f0 \sa180 \li0 \fi0 Just a {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL and title }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL and title }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL and title }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL and title }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul URL and title }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/with_underscore"}}{\fldrslt{\ul with_underscore }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "mailto:nobody@nowhere.net"}}{\fldrslt{\ul Email link }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK ""}}{\fldrslt{\ul Empty }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Reference\par} {\pard \ql \f0 \sa180 \li0 \fi0 Foo {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul bar }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Foo {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul bar }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Foo {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul bar }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 With {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul embedded [brackets] }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul b }}} by itself should be a link.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Indented {\field{\*\fldinst{HYPERLINK "/url"}}{\fldrslt{\ul once }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Indented {\field{\*\fldinst{HYPERLINK "/url"}}{\fldrslt{\ul twice }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Indented {\field{\*\fldinst{HYPERLINK "/url"}}{\fldrslt{\ul thrice }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 This should [not][] be a link.\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 [not]: /url\par} {\pard \ql \f0 \sa180 \li0 \fi0 Foo {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul bar }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Foo {\field{\*\fldinst{HYPERLINK "/url/"}}{\fldrslt{\ul biz }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 With ampersands\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's a {\field{\*\fldinst{HYPERLINK "http://example.com/?foo=1&bar=2"}}{\fldrslt{\ul link with an ampersand in the URL }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's a link with an amersand in the link text: {\field{\*\fldinst{HYPERLINK "http://att.com/"}}{\fldrslt{\ul AT&T }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's an {\field{\*\fldinst{HYPERLINK "/script?foo=1&bar=2"}}{\fldrslt{\ul inline link }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's an {\field{\*\fldinst{HYPERLINK "/script?foo=1&bar=2"}}{\fldrslt{\ul inline link in pointy braces }}} .\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs32 Autolinks\par} {\pard \ql \f0 \sa180 \li0 \fi0 With an ampersand: {\field{\*\fldinst{HYPERLINK "http://example.com/?foo=1&bar=2"}}{\fldrslt{\ul http://example.com/?foo=1&bar=2 }}} \par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab In a list?\par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab {\field{\*\fldinst{HYPERLINK "http://example.com/"}}{\fldrslt{\ul http://example.com/ }}} \par} {\pard \ql \f0 \sa0 \li360 \fi-360 \bullet \tx360\tab It should.\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 An e-mail address: {\field{\*\fldinst{HYPERLINK "mailto:nobody@nowhere.net"}}{\fldrslt{\ul nobody@nowhere.net }}} \par} {\pard \ql \f0 \sa180 \li720 \fi0 Blockquoted: {\field{\*\fldinst{HYPERLINK "http://example.com/"}}{\fldrslt{\ul http://example.com/ }}} \par} {\pard \ql \f0 \sa180 \li0 \fi0 Auto-links should not occur here: {\f1 }\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 or here: \par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Images\par} {\pard \ql \f0 \sa180 \li0 \fi0 From \u8220"Voyage dans la Lune\u8221" by Georges Melies (1902):\par} {\pard \ql \f0 \sa180 \li0 \fi0 {\pict\jpegblip\picw250\pich250\picwgoal3000\pichgoal3000\bin ffd8ffe000104a46494600010101007800780000ffdb00430006040506050406060506070706080a100a0a09090a140e0f0c1017141818171416161a1d251f1a1b231c1616202c20232627292a29191f2d302d283025282928ffdb0043010707070a080a130a0a13281a161a2828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828282828ffc000110800fa00fa03011100021101031101ffc4001c0000000701010000000000000000000000010203040506070008ffc4003e100002010303020404040502050500030001020300041105122106311322415107617181143291a1234252b1c115f016336272d1082443e1f1265382ffc40017010101010100000000000000000000000000010204ffc4001b11010101010003010000000000000000000001110212213141ffda000c03010002110311003f00dadd18a10a704f6a95ccc57e37750782b0d8d9ea0cd32e7c5446e07e9f4ad723119a7b89e61e348f260719278aad613cbb640002938c76a182b264fc87bd13009c0c019c76e3d68a072e1cf6f4cd502d330c28269a61bb39c923923d4fad44c08dccb95cfd28b8280769ee08a263891e1808739e4f1d8d149392172cc714050dbb9fde8960ed8c60b79b1ed44103b05c331dbdb1dc5026ac1946d20ff8140aa631c773ec738a0346a003bf93e9cf02801895e7b9a01886796c923bd0090a06393c76a0142003ce3d86680d8dd9392303f5341ccc1b3cf7a2c812c37e4923d381429757013209fa511c18146c9247a0f6a007900c0c671c6280854e086c673eb45c27c038fd68aedff2fda836ef881f136f25d5e6b7d1262964aa02b03f98fbf153131935edcc97576f35c33349212cc4f39f7ab26186dfce5b200f73451f7600dcb8cf27e7400c0b291914046c9e0718fde81371b8e7273f4ef4007691919240e714097f31f376e7b5008caee27807b0f5a02c8e1b3c6d27d33cd0201d839523144d1a149ae084b78da47638211771fd050d582c3a0faab5119b6d12f8ab1c06788a0fd4e2ac356fd1fe08754ddccaba849696309e598c9e2103fed1dcfdeadc44fea5ff00a7f956366d375e492403ca935bedcf1eea4ff6ac68a55efc1beb3b552574f8e7009ff933a927ec715bc82b3a8f4d6bba5ca1352d22fe061cf9a0383f71dea5119cc6c0baed3eaac0f1fad40897dcc3d81f7a052366c1007df3400f21edefc5008c28f30c9c5170ee4fc37830086395250a7c66770c18e78da31c0c63de8609b41f7c515c5172a30c3b76344a3e377cb2339cf7a242aea89808cce368272b8c1a2e107c672a49f5c1a181c9c7ae7da8a2119e7b1f5068099ffa68258a132062d8f9e0f34059502b61bf2824e681bb297ced2a71efda80f19c47b9c77fdbe74057c13e539cf3c1a0eeeb9c73f33405ddb4f18249c1e28062b79ae242902024465b9214614649e7bd0362a7249eddc513456e5720f38f5a1a98e96e95d6baa6ebc2d1ad1e65521649bb469f563534d6d7d31f04347d2a2fc5f535db6a0e83718906c887cbbe5a9a8bef44dce9f731ca9a2e89169d6d6f2184b1455dc07b11dcfeb4d16f119c649a681285b03d3e5500f87820ff006a0e098191de80ac9b8904647b55d11da9681a56a31f87a869f6970b8ffe4883629a289aefc16e92d441682da5b098f21ed9f033f353914d19b751fc08d66cc16d12fe2bf45ec92ff0df1fdbfb559ec667aff4eeb1a04db359d3ae6d40eccebe53f46ec7f5ab82263da7dcf3eb5174e5181076918c7de869503232491ee4515c1803824f03b51287f30e0e7d803449494832c157278a2e8c71fcb9f9d144639236824d01e142efb1768cfb9c7ef40512a818de78ff00a682518e7cc30ab9e00a02cce9953247bd41e467191ed9a04205ee99da4e4e3d283a524b0427b5026c18a8e082067db8341ce0e39ed409b6502907391edda80f2dfdc496f0c124ac6184b144cf0a4e338fd2894f7a7342d4ba9b568f4fd261f12571966270a8bfd47d8511bae85f02b47b7fc34bac5d5c5dc88a0c90ab6c8d9bedce3ef4d1ad691a6dae976a96d616d15b409f9638d70054a1dbc68ea51d4329f4619a8022b78e04548515117b05000a035c5c4702a995c26e3819f534047bcb68a458cce866719540724d02e41c0f7a012a40f6141cbc8e7bd01719e38e6838af1c0a04ca8206d3cd037bdb082fad9e0bd8a39e0718649141047d0d5d18f759fc0cd3af164b8e9999acae4e4f81236e898f7c0f55fed574615aee83a96817ef67abda3db4ebdb7f66f983d88a061bb8db9e3d45165076db83c1f950a53780d8247c80a2398f182724f1c7ad080c608cfa7a51a0062adc7afbd0130173bb9c5070f071cb37e82826106e8f615e01c9e680d6b35bc534be3c1e3831b2aa962bb188f2b71df1de819ae4b1048c7f57bd01a58268e332642ae0704f7cf6207af6a01b99e17b7b6416e227407c494139909ed9f4c0a04a4e501e0f1eb40d263e53dce7fa682c9d0bd13abf58dd6db18bc2b157c4975270ab8ef8f563f21447a73a03a1f4de8eb031582b497328066b97fcd21ff038edfde88b7e32703bd64188e7e6283864b73400cd804b67ca3268317eacea6d56ff005233592f8b6303f953fa4af7c2fa93417fe98b763e0ea171297bab98558068f695ce0e08fdbd281e5c6a57ba5e9d14d716ef7774f2ec112601da4f27ec2827ada74bab559a20e148fcae36b0f91140283729c77a0e0a7777a01dac68395719e39a029607cb901b19c501480ab9279f4a086ea8d0b48d76c0586b7143224a76c61ce1831fe93e86b43cd1f12fe19ea7d2533dcdbeebcd20b612651e68f9ece3fcf6fa5067cbcf20ff009a051724905411e94032799060723da8406d6c67e7ea68d0e1770fe5cfb5026c37039ef9a02eca098c91e6e01e71c500b1d8a49c12786cf6a06a4e256008e3d050119958007920e2801154e32fb4120927b014017eb1c523ac5209a356215c291b87be28957ef853f0d66eaa99352d515e1d190f947669ce7b0ffa7e74a8f4be996569a5d9c56b6704705b46bb5238d42851f2ac875712bc70b3c30f892019540704d01ad2669a0491936330c95ce7140b2e4939a03638c7e8680ae485e33bbe540d60d3ada162c90a02c7270a39340a4f28b68da4645007a8f6a069a746f73235ddcefc391e12b2e1916824948742c99382473c73404791c617695279dc0640f9502c578c9efeb4095cb4cb0830ba21cf999c6401f4f5a05061d430c8079a02e03b3004311c7d281b5e3cd676c65489ee594e4aafe6c7ae07a9a0a075bbea3a8ea96f047d3935ebc404f04ad29411e08e011d98fed416fd212ee5b05b4d5ad6300c615807f1171eaa49eff5ad418c7c55f8466dd66d57a521f20cbcd66a7247a9283dbe5418a63862479877cf1f6c5008e400bdf1ce684016fe53dfbd1a73794600e08ce3d6800377c8c7d6800a9cf75fd4503d91492460f7ee3d28247a7b459f5fd592d22711c206f9e563858a31f99cfd050583518ba75247b1d134f9aed21396d4669769931dc01c003f7a329c4d17458ac5b55d36c12e040a3f1da75c1cb04ede2447f7f6a94567ad7a66db4fbbb29ba7d65b8b4bd8ccd09c8231eaa07b8ab04a7c2cf87b3f53ea8d77abc72c1a5dabe2452bb5a561fc83e5ee7e541e988218ed2dd22b7855228d76a46a00000ec00a510bd4dd511f4fe84da95cc31f880022da4902b1e7d3e99ac86fd03d631f565b4ee6d4dbbc649009cab2e48c83f514165b8b94b6895c44f279c280839e78ce28178ae6de46748a789e453865570483ec6812d42e85a421fc37918b00a883924d024c6e99b7a2a966c0009e17dc9f9fed40f81c77e28139218e4ff9815b9cf23340a01c907b9140201038ed402fcafd28386464e4fd33c50272bc60032609cf00fbd024f722dc66f24822ddf972f8feff00e280f69b24844919cac9ce7de83a447f30ded823007b50459d6ecacb528349b979127651b1dc795f1f3f7a0990148054823dc5015d491c0a0c3be337c2ff00c489b5ee9c87172016b9b541c49ff5a8f7f71eb560c1fc43e0a47e1aa94277310431f91fa551c1727f29ed409b641c86e31839a3454805739c1f6a026f1fd740f64665fc8c31cfde82db79bb40e9e8f49b62eb7d7e8b717ec832c91ff247fa1dc7df2281bcc9369d671493c422b7911654c1215f92bb8827bf068624ba635392df5eb4b9924558ee5bc19b71cee43c6dc7cf34c657be8db0b0b9d0f51d2afe668934dbf9628ddb8c2b8c0073f3a80da37546a7d25174fd95dc125c69f7313ee5655dfc313bd483cf07b1f6a68d5b48d5ec758b612e9d7293211c8fe653f35ee2a084eb9e8bb1eafb3582fe496278f3e1c919fcb9f97ad03ee8dd017a6741b6d3229dae161057c5750a48249ec3eb4139238568f6a9e7b103b5037934cb3793c610a2cd9277a8da73f5140ee38f6280c4b11c65b934023006d50050030e4647de80c846de3b500fcf9fbd0197273ed4007b91400e580c8e45074a82400e72682b36fd2162b7f25ddc09af2766ceeb872db79cf00f6a0b3229550140e07007a50092db860673de818df473c862686dad6470d9cce3b7b63e740fa1de6252ebb5bd81cd00bee2d800d003a6464004763ce683ce9f1cbe1f1d3a67ea1d1a30b68edffba814708c7f9c63d0fafceaca31e6dc71e1f07daa82608c83819f7a1a11ce149238fd68d0a579ec682cfd27a7c3a86bd10bc38b3b756b8b93c1fe1a8c91f7381f7a034f752ea5aa5c5eb292f732128037619c018f6ec282e5a2cb047abda74d5ce9b6da80f136de4a496219b3e48c92000323ea73467519d3da5bb757dbda410ac90c77c23058f99007ee7ec31416882ee47d23acb5185caf8bab4691b1efe57fff0038a9457ee75a82f6e7429350466b482f2742c0f74241c80c38c64541a9cfa1e89ac0177d33ab3d8de28f2b5bca429f91140e2c7a9b5ae9fb85b6ea9b46b9b3c796fe040768f76ec0fafb1f9505df4ebdb3d4edd6e74db98ee216fe68ce47d280648f75e2485a44da385ddc13f4a025ddbdbea16a633286566ce55f9c8f6c502ad750db2c514f30dec428247e6340bbf04100b73402afb943ed2b9e30683836defe9403bc1e06734020e06280cafe8683a375941d841c77c1a0151b467b50159f00e4127e5402872371040c5046eb5aadbe9b1c02e2f6dad25b89047099c677b7b0140fe3f1010afc803f3018e68160c3041ee2823f5dba92d34db89a1d9e2843b03b6d05bd013560c1748d57aa2797c6b35bab78e6959dc47231580ff336dcfb03c1a58364b5bbb7d7fa7b7427f1f673830c8664285bd1815238fad20f2c7c41e979ba43aa2e2c1cb1b663bede438f3a13c7dc76fb5515e9065b851f7a02950002a09c51a1b83cf14176e90d3645e9ad7752752aac23b3439c066665c827e944d29a6410aea725c4567135bd840d3c88a723728c29c9efe6c50d3ee9545b0bf8ef2e6e3c2fc2c6f72f2920e5f19039ee4938a9a875d03278377acf52ddf867f036ef71923932bfe51fbd3475cdc369df0db4fb389d4ea37970fa9cc0b00511795ce7d4f181eb4cd2451755fc45ac16d637381b14ca36b641dfce723e4053170d6cb52bbb362f6d3cb19241f2b9029862f09f143549ba7e7d2eef6caf2797c66ee17fdfd69862d1a069da7dfdac579d17adcda5ea9e1a992376c4723e39e3b024fd7e94c458ac3e25dee8d31d3bae74e7b79002bf8b8549471db38f5f4ed4c165e943a06a328d4ba605b4b22a1523c420c64fbaf38a82d36f0ce7cf7463790729b53017e940e0b0ceceed8ce0500e1b70daa08f5c9ed41d271cd0132476e7d7ff00aa069797d2411168ed9a41fcc858211f73c5075acb25ca6fb82aa31e58a36c81f561dcd033d42169e158ac64b98151b3981c2966cf639f4a064c7a8ac55e4865b7d493701e1c8e52403ea3cbfda827e390ca3f2c914aa81991bd281cdacc2747215c60e0ee5c67e940cb51b0b2bcbd824bfb08ee1a252d1caea1821cfa67b1fa504982b2283ce08f518a08abb82f6dd0369a5662081e14ce40c7ae1b04fda82275cb0bfd4f4536f7114589a5412461f3e4ce4e0e060f63f6ab2893d3b4b5b5b78e22ed22aae3cc3cc7e64fad3449a22a461500007602a0cd7e3b74c26b5d2ad79147baf34eccca40e4a7f30ff3f6aba3cd0543267eb5427b86f1f4c76ef45d0eca1ad5ef224d13e1cf4fd9b22192fa67bc955f8c8c617fba9fb510d7a6ed3fd43a735e5b54964be658c048fb6cdd9e7eb8a186bac97d174e6d22e23437b7ac26b95e77c68bf950fa7279e2b22dba45b59e97a669fa4ea36aeff89cea9a90451fc355ff0096ad9f4ce3f41570675d4fa8c77da8de5cde5be26bc653171ca47dc1f6c9fed5562b97f70276808da7c24f0c1c63804e33fa8a2928c0e0383c8f7ed41d92a41393f4a2548595c2c37493db4cd04e8a08f139566edfef3445b6e7aeaf65d2df48ea2b11776ae02a93e564c772adef409f4ee8ba9a21d73a36fa579ad9f325afe599171ed9c30a960d5ba0fe2843abb47a6f510fc26a4c36890f9558fcc6783506a1147b510024e30339ce680d2c6ae9861eb9a009178a0205443b989e39cd01d8075e3047ce80563057ca381ed4011c4531e503d85013c91b804a21279c903341131cda8c3abdc8650f6d20c4321232adec3dc504bab2c113c9293bb1963df3408dd4b75e1efb2856463dbc43b4631fad047e9177ad4fe32ea16b1db4b8fe1aa92571f5f5a0916bc8e0895af5c46c17cd8c9ff7da80f6d736f7f6915c59cab35bc837238ed8a072a31c1ef4062870718a06f7702dc5b3c522ee4752ae0fa8230683c75d6ba3b74ef535fe984929149e4278ca9e47edfdab42058003763ed409f88ffd6dfad06b1f12ae612fa0c76e0b471e9916d23f973eb4158d3efeff004a984da5debc1295d8e4018dbf3145d583a2ad96f356bbd7f5d90dc59587f1e79a6392f28fcaa3ee47159444ea3aa5ddfc7acf50dcdc344d7a4dbc317f52641200f6000fdeb41b5ef51d8eab672ffa9e971c97c11638268e431a46000012a3b9a351567db823b11f3ef40948e428048207a8340ab48ae83cb83ee0f3428a982719edf3e68c9cc97d3fe15ad8c9be138f2bf38e7b8f6ef40f7a5f55bdd3f56b46d3649127f1405f08e7249c76f5fa50689d48ba5f545cdcbdb462cba9206411b2b055bb07d4fb1c73528d4fa8f52d62cf47b6b8d2e65fc458c49f8a818795c151939f977a823ba0fe253750eb7fe937b04293f9f6c90be41dbdc7ff006283473c1efc1a06f69776d73bbf0f2aca32572bc80470450284a46dfca19f819f5a04e799614def26c0bdce09cfd85045dc75769d12dc3c3e2491db0dd3c85195235f7c91cfd066ae0cdba9be31f4ec61a386c1ef9d4ee473e45cfb1cf34c101d3ff1ac9d481d46c628ed24751881880833f988e7b0fa5328dfed2f2def2ce2b9b79925b791772ca87208f7a60182ee2b95cc0c48f53823fbd40ac658b30f4f4a086d4ee1d75bb6b78f4e965596366fc5211b23238008fde81f43692da5bc30d97831a0397dc09e3d714087506bf61a2c4cd77324726d2caaec141f9fd2ae0c435bf8c57173ad7876f7a2daca10489121244cdf319ce3dbf5a834fe81f881a6f57bcb6ba7c53c72c11873e28cee1db391dbef4199ff00ea4348116a5a66a8a8a04aad04847a90723f6ad7d18c312ddc02a3815423ba0f63fa541687bd9efe1b533b3c9e0a78473e899e318a09bd0ba6eef543e3b2bd8e9b10064bd9e4da001dc81401aeeb29a984d0ba7d5e1d06d4e6594f06523bc8e7f5c0ac8af752dfc17d7090d9218ec6d9447129ee71fcc4fb9cd6842ab10dc0014f3e5a2c1704b671dfdc734525226dc939e283a362c7f940344a380393df144733e2276e38f5efcd01b4bbbfc3dda4a9298a44395902e4a9c70682660d4265d62de40b1bdc1545054f95c8fe627df141af7c3af8808f3dd68dd5d2a45765884b8908d8c3b6c27b7a77a945d7a5fa474bd2ba8e4d5748b28624955d5d8b13b79ee9e983d8d40a753758c7a46b96f6114725dc92279a2810b3a64f94900763cfafa503fd3b59b79ed84da34713c0cd890f0a158fa1f981de826e1b548959fc4dc5cee24b6467e59ed4101ff19e9f676baa5d6a72c50adb4ad1ac790ccc076200f7ad41e7df881d79a87576a5f87b0f161d381db1c2a36e7e6d8ff3416bf87ff082c6f208ef7a82f22b9761bd6d619785f6dc477fa53705ab57f83bd297ceb1e9caf67708db9c4526723e849e3e94f212dd25d117fd29a8c09a76b534fa39cf8b6b71ced38e36fb73417f52e64548e34007e673e9f21ef590a1c918c90718dc281a69b68f67118d9da5058b798f6fa7fe280daadd1b2d36eae70710c4d263df0a4d583cc7a668fd4bf11b5837d7c93dcd9a3146959822a0e781f4cfa55161e9dd7fa67a4f55b9e9aea3e9f81fc09ca0ba118998fcdb2338c7b528d39f4cd2ba76e2d357d292df4eb391809963420ce1b1b576fa1e7359119f1eb4e17dd033ca172d6b2a4df303383fdeb5c8f2eef3bce4e0e335684cb0c9f354160d36f64b0baf16072b91b5f03391f43c51aab23a5debe91c4fad4d73689e6fc3a290573ff4f03e59f4a3280d67581ce916567f84b58ce0a1fccec3d58fa9a084de08c90464e4d1a8e419059b201f4a05630a176918efc50176293872c17bf14042aa0125b03db14046c60b60123fde6827fa0c68edd5365ff11346ba6292ee64194240c807e59a32b7fc51bfe8bd5ed5db424860beb62b89218422ce09c11c01dbbd0660ae110bf1bf2154838dbebfefeb41a8f4cdac7f117458f4d9ecd2df53b4cf81a822808c47255c0f7c8e7fb54a2ec2cfabba3b4b4b8d3af12eedad40926b0f070a13f9b633649f7a82eba6ea4357d321d4ecad512daf20df26e016507fa4fbfaf3e98f9d067dd2bd2faac9aa4d72d72d1e9510ca46a7631c7a320e18f1dfd7bd059afb7da816d23de4ba5de211346a1e4785f190548e4648c63b64e6b43ce9d5baafe3b539c5b452dbda46c638a167cb281c73ee4ff9340e3a3fa5f5aea4ba58f4bb57dbfcf2b02a8bf7f7a0de3a5fa0b50d2a2d92eb3e048c0a97c867dbedcf6a944e5cf4f6b76d1b3d8ea42795066266c87c81c65b9cfaf15048e83af3cd64abac08edaf01546c38dae4e0657ee6826e5b892de3702292e2545ddb55700fd0fbfca81c4b3bc718716eef9eeaa402280d14ab3c0b2c65c06fe571823ed40df56b217fa6dd5ab9216689a33f2c8c558307e83b8d77a37aaa7d22f2512c28768800c9954671b3d33ebef568d0ef7a7749eb0b5bbbb162d657b32b46d2e1564c8ed9c5644d1b0b9bbd261d2a440af6cb0e2e5b1e7dbc1238e0f7a0375b696daa7496a3a4dac8a92cf078685b271db04d391e40d5ec4586a1716de2a49e0c8c85d3b120f715ba1899173ff305413070abd89cfe9f5a2d3ee9c8639fa874eb6b804c52dc46b20c9f302c3bd11e84d47e1af4d5dc6521d3e3b662c19a58721ff5a9a321f89bd27a374b456d158dccd34d333332c9b4b2afbe47a7cb1f7aa33d2bc0d8c0f1c8f6a2c14b6d501b39cf63450897380c319e3de8065031c038f7ed40d8faf1ce41e4d004876a8dc3cc7e743025c956c818028c904579e7f0e15695c9c0541924f6c00283d0bf07f42d6b48820b8d62d20b2b58d656404959e52f83c8ff00fcfafbd4a35bb06f12391a48dd55cee2b2f3818ed8f6a8158a159890f02242079147623e631c502b0db436d1ecb7458d4738038fb0a087d6eeb508f48bb7d32d95750752b6c26c905b3ddb6f61eb574794f5cb6b9d0fa9678b512b25d24bbe52b8c1638278fbd582c57ff12afaed45b5bc0d0d8a8c08a2731ee3eec5793f40450466a1d59af446293c186cd53ca0c36eab93dc649e49fbd048e89f1675ed35e301e293919dcbf9867b37cbe94a35fe94ea4d33aba6824306dc48015750d86c6e247b0cf63591a40b8dc23fc30f14138dcac3000f9d03687547f12e8dd5af816b13148dddbcd29039c0f6f6f7a0eb5d62caf5636825db70c9bc4328f0dc0271c8a090627d3073ce681acf6505ccf14d35bc2f2c2731bb28254fb8a075144a83ca806792400334049ee6281e2496408656d880ff0031f61fa50446bd76058ea1b9e21025a3bb48afe71df9c7b71de9c8f196a0de23ca7b827d4f7add117e0cbfd4b5059392369663ff004e71c51aa97e8f555eadd258f2bf8a889cff00dc28cbd0bf123a926e96d163bdb74490bca2321c678209ff001591e71eafd7a7d7ef45cde2c20aae144638033fb9ad2e1b5e69d058da431ccf21d4a5c3b4631b62523807feaf5c7a50222f2d648c25f5aeec8c2cd19dae3d3e87e944d3eb7e90d425b49ef2292de38224f1505c3f8724a9eeaa7bd0d57a60406059436306868a7803839c7ad1a158039c13f4a33a716767f8cb9b6b55e1ae2458813e9938cd07a9f42d0b4de99b4b7d1f41b58ff19b03c93ba06607fa8b1f5f619a5b8266d74a65d42da6ba90cce996dcdc8c9fff006a5a2c2635083b05ef83eb5028076341db4b1ed9f7a04651fc41db18ed419d75b744dbea335fcb0db0335f2057901c05da73c8f9d5d18a75174a3f4c47335e35da4ce418a489374254f707d463d33565d1529b569a489a17944b06ec8057d71dcd037b4b6b8bfba31584124b27e62a8a4f1ea68357f83da7ea5a76bfe0912453ccabb49194653cb60f6ce3dfda983d196cd108c2401711f9768e306b2297d73fc6d02773a8b591922693c5004bb9d72542fa2f6efde8314ff867aeeec27500b77bb5670e36ca19b1dff2e7f2fd2837ce8bd5dd348b78b552219022870d9c46e792a4f6c608a0b846c8e03232b29ec41cd0199f1410fd4b24b1e8f712c0a5e4452d851e6c639dbf3238a0afa42ba77475e4ba8470896681da45180b18da76af3c9029c8f26dc1df2b9c606e273e86b743331924f27f4a82c12280e59b008e79f6a2d4d74188ff00e30d203a82ad7519c1ff00b860d11ba7c5e86c9fa3afae6f4091e043e021270b21e01c7dcd6479ab4dd3aeb56be4b7b184cf2b301b57d07bfd2b4bad0fe25e9f6960ba7c7a55ac50cd750335ccaade7723b83b8f6e38a2207a5ba4e7ea3d93780cb616ca53781f99fbff009a0b675a5be9765d43a75a6ad3b25adb4185429b831c70303dfdfd2831eb8954ca48f3827819c71ed406b2b1b9bf9a5fc1c4ce2253238047957dc9345d122b792eee522811a495ce1157b93ed444ff0049f476b1aaf51c761345269d25be269259570c833c6077249e062a68f53e8ef0da69509d4ae225b92a04af232ab16f98cf1f4a5a266d4dbca8af13a329ecca723f51502d14f0cb9f05d1c8ee01c91f6a0393b4edfe63c8a031608859b38f97340d84d04e5846eae50f9829ce3eb400fb24466041f5e3d2823f56d22db57b192d6e61468a41c823ff0035651916bbf04ada7badda5cad6d1b72c09dc33f2a6875d25f0865d06fe2bc6d4c4d3282026cca8cfafcfd29a34cd234a10c768f711a78f1bb392a3001208e3ec69a26a58d640c832091c90706a084ea1d3eeafdadf4f86da3166c0b4b397c18f046140f5ce4d04f4702436e91c28a9122e028ed8a0a9f5a5b6a09a1bc5a135bc72cce048b3c5bc15c638f9d59043fc2db997481aa69dae49e1cb6bb643239211939e467818f97bd305965ebce9a10bc8da9dbaa2679dd9ce3d8530572cfac87566ab05ae9f1490692b9696e1f833738555f96793504df5f25945d2576b7ec16dc46792381c7b7ad5e60f234980e42f6c9c56a82ec3eff00bd4124e49700f1c646e3cd169ce9575f83d52cee324347323f6e3861ff008a23d47d4ba6a75074fdcd8ef317e2e2ff0098bdd4706a60c3f4ae8cd5f44eb8fc3e97248a638cbc73bf90483d463b373e9574685abf42a6b5649fea72bbdeac4a8d3b018cfae31f7a6895b6b29b41d30d8e9f6bbed9213e1b7a994e724fcbb5064bd7835a9752d3af75d8116354778f660788cbd9483dbb0a0cd20b2b8d43528ad2088bdcccf854039cff00e2827a0d34e9da1de896f2182492efc0976f998aa827d3d334113a74aa9a9298628e74570478bc0c7cf1da83724bb8246d3e6416b0384da61b5501c9f5c3704f152c037561a95f5fce61d3ad6db4ab950f34b331dd9f4191db8fdcd406d67a675ab4b6d325d1af248272a43430315ddec7038f6ad4b3f448bf47eb71cb69abddebf21d5e26896203846c30c8603b9c6452d9835901405660376319ac84bf13180779d8bb82827d4fb0a06f777367a75acd7170f1430a9f331200cfceae061a0cf6dac692d7365266191db0578f5edf3a6075a6c9278b3433188a467860d96fbd40fe540471409aa0c1140750001ed8ed4058e15133c983960077edf6a06faade5c5b7822d2d926766cb967da2341dd8f0727d85033d27597d62e2ee3163756915bbf8799d71e2f19dcbf2a092b88dd9a311950a0e5b70ce47fe6ac18af53f5b69da9752dd69da9ca906876e24465d9e69881c6ff005c679c0aa2bfd267a347512c93dbb5d42d90d3c800b68c9ce0ec3cfa528db74ad034db5905ee8be1ac728dc153984f3f980f4fb56453be2de8f647a6aff53796596f0aed46798ec033ce149c0fb0ad71479c9bb9dc3bf3c55a0b95f65a825150b481a407b93c0fda8a29c06671dc93803bd131eafd0af6dffe18d2ee25982a4b04603b7a9c631fad03bbe586381bc5945b96385718c827db3eb5288eb8ba934eb15fc3c535f05427796dcccdec7150637d5bd55d5362b7975aa4d0d919018adec8637807bb60723000e4f7cd58203538aefa8aeb478a7b9beba924547b8774cf8608036a80704639cf1f9855d1a7f4c68b67a03de5e5d59dad8d988c62e1c0f107a1e7fdf7a082ea6d07a6e3e99375a7cb6b3db093c727701e2360f7f53dfb50653d4130d42ee18f48b3f0232a15218936963ebf5fbd06dbf0cfa74855b9d46e04b730c6144691e12307d33ea7de8348ba6b5478a279a004f98c479247b81f5a9438805ac0be2e02e73c9ef8fbd40c2346d43578eefc40da7da1dc8b8eefea4fcb9fef419beabf12a4bcebcb2d2fa7ee0dc58492084b30236bb6467dce383f6a0b87556a67a7f4d95a0bbb5468816f0a69c78b2e072572719ce78357079dfab3af2e7a92c963b88d94abbbf91cedc93edf418aa2c5f0dbe2a6a9a0c90d8de34773a6a8da1186d6403fa48fec682d9adeb7a9b4c9d572dacc9a6c9700456e5ca910e000ecbd8e580352fb1ae7476bd6dd49a325e5a9f3025245fe961dea097523cc0919a032af039a006936c81423104649c703ef40dcce64bc3035a87b6f0c378f9fe7cf2b8fdf340a4b6e25962915d94a67807839f7a043586922b5636ec44c061063f31f6ab079d7fe19b7eb2d4efeef55d5d74f992e9a0fc3a441dcb13927b838c9aa2d4bf042c618e178efee6e18104870172318edf5c1e6945bbe1a748ea7d2315edbea3a99bcb190030c401010e4e783ee0fa56455be3d6b90c1a6268d69e17f1486900ee98ec29ccc183119419e7e55ba11f089f523ef5058363a8059fb8e31e9421b491056c01819e28d3d0ff07eea3d53a1e3b6b8db235aca63c139c0eea68ca47a9fa6ef757b83ff00bf68ad428c2f248c7a8f9fcea518df516adac74e7544f63a2ea172f1800291e6cee19ec78cd5826344e85b6bad25ba8fade5b99dae0ee11efc71e858f7e7d054a2d7d39a75ae8f7b6b00b8917f1516624b78429da327cec493db1db1d8540cf4aea28f58d6aeae2f6dd64b498082d880488d149fcea7d4939ab04175e6850a8d32de3b78e380c8de32c4db4e18e430fef543cf86fd0d691b4fabdf6648b3b2db69ce7dd87be68342d2f4fb9b5b891af1a28a2dc05bc5036d001e0eef7352884b961a2ea9aa7555c885e08d45b5bc52b61b686c120fb939fb541276bd4b61d53624d942e2f6200bc32290633e99f4233416dd3ad3f0d611c0c77b632e71dc9ef41156dd27a45addcb3dbd9c513b1dd941821bdc7b558333b9f873757fd69a85e3f813e9c7723b5d93265d872473c11544a68ff08fa75e290b42ec4e4124e70738fa5048e89f0f745d2aeadd2decedda6525c975121183c77f7a945c754d0e0d563682ed43425369403bff00bcd58308ba7d5fe13f5a05889974a9d8b46aede4914f707d88ff001528ddf4fd7edb54d1a1d56c312dab2e64dbc9418e78f5c541296d70b716d1cd6f8789977230ecc280cb7519b816f212b205de4e0843ce300f6cfcb39a0545c42cee88e0b458ddec33ee680eac92266360debc7b5056fad2d354b9b189745744be121daf27e550548ce3d4d58324d07a725e98ea2b7ff5381f5169a7579d021fe13904ee43ddfbe49038ab46e76cf05cc714f6d309232a4a98ce54fd6b2196bb7f2e9b631b2c427b891b6851db3eff002007341e5bf887aa2ea3d4f77378be381e42fdb711ed5a1554395caf1cd07617dcd04fc85402101da791421b49920331381c60d1a69bf02f56f03a925b12c162b98c955f775e47df19a32d99b518268e4491668704a79d4aeec7b7bd4a30feb7e9144d76e265697c3e2693631674273803e556087d76f35fd49859e9925ccf611141106f2e182e3241f727f5a94681a268f79ad1b1b8b9dd66b1c2b1ce9bb06361c1e7bf3fe6a096b0d3ba57488e485b52b40909c386901607d47bf7a0ae758eb69ac4d15be81a748f0a9c35cc90b2eff4c03c1c638a0b77405c5d5d45f87be5fe359a88b81b401dc1c7d38fb50586fed18ea3015790091591e447c1518c8c7a0a0a5754d8c9d49a8d9f4ee9dba0b3b5224b9692327728f627e7c6682f9a7e996b6b3a8b6b748a348820c7720761412c064e3041ce282b5d4bd73d3bd3f33daea97ac2e540dd0a292dc8cd043c1f15ba2a7923b65bb910371b9a12141f9d02edf13ba2ade56857551e5e77244c54fd0e280746ebfe99bbbd655d56dcdc9ce08465565f4ee3bfca82d53eb3a6dac3e25c5f5ba646402e33fa77a0aff5b74ad8757e9ca972844aa37c520fcca7d3f5ab067bd369a8f467544d626c98e9f7118f0200e4465c903049c8c9e6ad1b24334b6fa6249716cab20037c309dd83db03b5640dddac3764a4f02cb1103863919fa7a1a06d6f600c37162911b7b252b87dc773f1927393f4a079f868edae1ae6328a8b1ed38e30050226e85d5dc1f879011b3c47c2f604719f9d01eff4f4b83e3c6b18bb452b1cac9b8a83de80b16e8208a3b7b58e1407cc061427cc0ff1560ce7a8f592d69a97504cad2dac01a2b53900c3e9e51ea58f727d0551e73bfb86b99a49a46dcf21c96340dc13804f20f6f9501c0e3b8a0963316fcc4607007f57bd084d64dec01200ce483468ff0040d525d1755b4d4206ff0095207c11dc67ff0019a18f56584f6daad9dade4211e39104a8ded9152b235cd8c530613229c8c1c8ef50472e81690ee00322b0c100f0debdbb7ca8111ace856371358cba85aa5cc407891ccf83f2ef4048b4ad2e59bf116769672c72f99dd1437239078e2824a4d3e1b94559234110e781839fa0a0561b38ad532a12319c86c6307e740a9732a3a00cac870cd8e0faf0681be8b6db965bb909df3c85806eeabced5a09523647e6e0fef419a6adf116daf7ac34be9dd1da686e7f1ca2e243b76320ce57df9ff1560cc3e3f470ff00c78255b842b35bc6c4af9b6e323d3e95467b6365f8dbcf062beb68c119595d8aaff6e282422e9899b4f6bb5d46cda2562a76316c1078f4a0859e1b9b762c0bf94f0e84feb4125a57505c58ea70dd5d0174a986d92b1c13f6f5a0de7a5be366877260b5d42dee2d2423124a487507ebdf15289dd3fac7a7bab6feded74d61733473acdb5a162142ff00313d81ed505fa58fc6d809380c1b9f5c502e0e05040ea367a85dea454de2ff00a610375b04c16c7a16ef8340b5f6930dce9375636acf6a278f04c5dd4f1dbf4a084e91d06f3a52dee62bbd4a2b882494ced3c8a448063b63b638fde803ab7ae749b2b3096d792c93c8c109b55dcd18ce3710473ffdd043dc758dc5869044565aa5dda4c3c2b7bc78c1f14e3963db03e7c0ab066bf1327d41ba76ca6bc48ecad24c456f6b0c87cf8e4bbfa138c0fa9aa3297c83dd4e28395811cf2680a5b93c7ed413cd1ff0f3c797b8031406645236b0508406f30e68ba49c051b97d0e0e7d28ad57e19f575c5be8f269515dac772877c11bc464dea7ba8c739ce78f9d3193bb8ebfea2bcbd6b5b6b8b58bb7f13c2f0ce31cf0deb4c0f2dbad6d743d2ee99efae752d6c02a86e0054524f6383c7ff94c0b6af274c75149a46a5a82c46f1e1479fc3190bd8156fbe7f4a960bf74e9d253f1167a3ac09e0856610e3041ec7f6c540f67b892cee7f8d18368232ef2af2508c7047cf340ead5bf130accc9b1186541e723d09ffc5033bbb1b82d74d6b37f1244daa1b38073df3f4a08eeb1d3b50d4fa6a5b4d32f12cef1902ee73e523d476fde8306eb0d3fabfa4ba92c278af67bb7281606472f90bdd58558253a6afb40ea1d62283a8b461a66a6f931cf6a7c2466f7cfb939e7b5515fbed3747b5eb8f06eb78d35080a2ec9719c76f98049a0b4ebdd37d1bad869acbf0b03c5c16b29444adf50ded41995f68564a263a66b31cd02be152505493f51c1a088bab69ad1bc179e320f07c37c8a0692b46c4995f0381db39a0b2fc34e971d57d4705bc8db6c50ef9dd97b81fcbf7381528f5ae97a1d8e996d1db69b0c7648855b10a81b80f43c739c54134147b9a036063279fb5046e957726a0f2cfe04915b06db1788305ffeac7a0a00d72f8d9c491c06337533050ac7185cf2df6a06da2da4293488f34973328c34aea428c9ec3eded40ee7d2ad249448f6b133820ee2833df3fde819ea96897461b05b87815f2ee919e5d47704fa039ab079b3e326b70eafd4ef6d6650d8e9ebf868b69c8247723efebf2aa280eb9193ebedc5002a124e015340018fb8fde82cf32b1603d0678cd02406dce3008e47ce81b499c331383c9c9f5a2e9c69377369f7d6f796a4acf148acb83fb511e91b3b3d0bab745b7d45acedd8e3732b71b1fd73f7a5a19eafd09a56a0a96b1c705b49c48510761ce4fcfbd4d0d752826b2b583476fc3daacb295b79d768de8a32b1e71f989e49f6a7d14dd1af5ba275a45b8b093c054492ea769092373765c1da4679fbd306e36ba9595fe9f0dcdbcc92c33e1579cf27d0d409ea178f68521b6b76926ee8a7853f7ff140bc768d78f6f73748d1cd103b543f0091cf6efc502f7319dac194371d8b6326829f0c501d7ae6fa568d5d4942c806d4db81839f53c8cd59456fae6e628749b5bab8b1865b08e4726588ec11e7f2e49071c93da9a31dd4341d675e9a5bad374f9858162d0b4ac70e18f0573df35a0c759f87bd53a404f174f965dfff00f479b1ef570576e34bd4b4cc0bdb3b9b7258a00e846e3f2a94376475cee4914af7ca9150685f09ba61efb52fc7dd69bf8eb7c158d1d0b47bb38f37efde968d6eeb4eb5e91d6ad25b660aee59974db6881690918e31ce39279e062a5a34bb57b88adedd1e379679065d80036679e6a07e8391bce7e940c659ef5afe1286de3b16f2b8903094b7b2fa7ce81eb380c4260ed193f2a0cd6fa5d4a4ea0fc7bdadcce923158a3039db83c038e3ef41a0e96b2ad8a35e009291b8a939d9f227e43bd590436bbd6fa269202c974b7123602c76e779624e00e29833bf897d493e896525dbcb2a6b5a9c3e1456b91b6d60cf989c7f31f7a60c02490961ebcf3eb541308e39e067b507007b96007a67fb50178f97eb4165ce18165c2927b773fad023202d9c8dbb7818ff003408300b87f2f1c107d0d0c15a4f2e339c90467f6a18bdfc2cea8ff4bd561b4b9ba686d6e64552c4f954e7d7e46a60f4688d240af1b2bc6cbf5047ca960617ba658de1b792f2d94a5ab33461b18524633fa1a81b5c8b5168967369d23c0e0a24622dc981d81c76aba29df0bb48d660d52fceb88d069f04aeb69130037127f37b9c0ed9a8350781240bbc06da72323b1f7a0eb8816e633192ebc8c9472a78fa50349b4c83c068e24f0ddbcc1c13b837be4d055b57e98b996d4db5b4a893dc1e6620b6ccf2c467efc504ce97a38d3f4d874bf09af6d46e2f25cb82724e791db15650a43f878b51fc34f3da8f132b6d6a98c80a39ff007e99aba249631b58b9047239ec3e55368aeeb7d2da6f52c0eb7f16e87f2c6e836ba90724ab7a67b55d115ac7c3e8aed2182def4c56a14096368959a423d77e3229a27b41e9d8343b01069c8a8dc9660aa3713df3c64d4a1c695d3d6b67a8cba94b9b8d4e61869e4e4a8c636a7f4afcaa09a485519caae19b966f7a0435196582c656b74df3e308beec7b50629375775b691ac5bdb6b16d6378779f019b00a31cf391c9c2f1daae0b35ef52f5374de88d77aa45a6cd25ddc0108694ee2188c28007603d6a0d16c92430a4b2ed3230dc401855cfa0a0a07c45d7b5db9d462e9ee960b14b2ee134ef8c850012147ec78ab0670b643a2efae753d72686e6e2da211db42176079c8e768f65e39f7aa332d6f58bbd635096f6fe6692695b24f603d801e82823cb900ee00e68006460051dfd680ed9f0c905b713d8d006d5f5419fa505a18f94e40501b1b81a04186d62402c87be3d6810b81290aea8467201231cd1749dbc437f9f1e201db3de8ba07dc0175c027f28a335b17c26f888d6b6d0e8fabf892a29c453b1e547f49f7a946d6424f08236491c833ee0835073294888894120700f0280813c40a6711bc8843e00fca7d3ef40e41dc081f9a811681c6f7565329185623b7e9de812b3bcf11ff0b74563bd50494cf120071b97e5fda80d7577046c9019d5669dbc340324eec67fb734103d5da96bf67a7cf0e916f6e2765f25ddc4c11107ab1c8c647cce2816d3ec7f0f6564cae6e67da375e6d52cc4af2e4fb13ed4145f899d47b3499f4bb6d46cda49b69b92921565c3648e3dd40c81cd5c0ae89f13ec246d3e379ed2d6da180b5d34849da1780b128e49271c9f4a60ba685d5fa36bc42d95c324ec7090cc9b1d87b81ed50588958977cacaaa3b9341c655f12348d1dcb8dc1946540f99a019e2134454eeda7bed3839cd052fe2136b536b5d3563a1ca53c49da4b9507198940ce7e5c9fbe281c6b7a974cf4ee4ea7242d76dc784a3c595b3e9b464e3f6ad0ac745ccbd4fadcbabea42da56959a382ce7460d6b1a93c01f97272093ebf6a82f1ad6af0e9da5cb3cecf6902216919f82aa3818c7a9f4c530649a9f5269ba7429d472239bc991a1b0d3c3152880f0f23039e7bf3de90635ab6a377aa5ebdcdecef2c9239e59f3827e5ed54302195fcc38cd01245395c1f5f4a05b606538e483c501b6939e3b5077860f3914165754c33e549000dbe87de813b820c27fa7baafb8a04a69c98e281e42618c795338033df1f3a06c03e4e029247007ad010093c35674da71f977640340081a190658e41c820f141b0fc33f8926c218b4ed609366a02249bb2d19ce3ea4528dbece68eead926b7916689c643a9e0d643387521fea2f693c2d6efc786ee46d9bfed3eff2a04669edf5295ff057a60bd865309246d3bbbedc1efef41d63a8dec9ab4fa7dd4510fc3c69234ca186e2d9c003b7a67bd034bad0a5bb96e25d575267889cc1b54446d9bd0a37bfbfbd02925945a72cba8dddc48b3f87b1e58f23c623f292bdb7fa7cf38a0a5750f54ebba56a9a67fc516b6d6fd3970ea9234677c8dc7f38f6e4640ce282d1ac4b16bfa72c1d2bad430cd1ba822061865f5007d3daac19cf547c189357d561bbd3eee683c62cd786e9b73337b8c7bd512bd39f06adedec2de0d5ae639da372e6485363107f97767b505cee755d03a5e58ac228659af123184b7b733322e38c91dbf5a943ab3d52e64b49ee755d2e64950e238e35f10c884e17cbe87dc540e6d7509a4f110e9f7566a471712850abf6ce463e6280bacea36fd33a4497f773cf32c698dcc4beee33938edc7ad05534aea683ae61d64c4d2a69b6b88d16d5ca5c303f3e386cf61db140e27b5e99e96b64bdd562b6b30aa36c6c37cac7dc9eec6b42c1a66a962fa70beb6b516d0cbe76322f86c78f6c66831bf8b5d5d2dfa35a5dce60b1933b6ce3c788769f2b331ec1b8fd2831b79649984b239773c1dc68129725c1c640e73400ec781d8fb1a03c4a85d0c8582640257bd01e51fc42236263c9c67be280429c6037eb405dbf5fd682c2a0bb976cf07d3fc5009279ef8ec4e68193a9902b28e7dc71fb501d95b098e0f6dd9e0d0049131019b047b8390281bb292484e47c8500c4f242c3076bf704704739a0be7c3febfbae9a5daf23cd017c7e19fb107bb67d0f6fd6837cd2757d1fab34f4f05e37dde630b1c3a91edf4f7159103d6eb7da65fdbdf59dadb5e2460ac876ed9e1c8c060f9efe9c8a0a75cfc42d5742d2ee5a7e9dbb494b6d6b9bc930cce4f940e3cd81ed4160e98f88315e689fff0022b57664199cc5196f0c7a164ef8f98cd0589baffa68590985eb15c0db1985839f6c2919340b69d03f5285bdd6f4bf021424db4329cb153fccc3d09c76a090d3340d2f479a7bab3b38e2924e5e451cfd280d7dafe936f6c5e4bd89813b02a36589ce318a0358dc35cc4e17f9bf234cdbb78fa0c607a7340e6cec20b1596610c6934b8323226379edda81da8dcb9ec40a042f50b5bb21645473b58b11dbd7bfca8304f8add5d67a9ea8ba5d8ea72c1a4d8a952f10f2c920e368cf71e99fad5833dd0754d6ed66bdb2e9a91a5babb2a310465a57c1ddc1038e7bd5171d3748b8d46ee1ff005298dc6a764c27d4eeaee7fe1c01795881c9e7804fe940dbe287c4b6d75a1b1d1c986d62277c91bf131f4c0f6fad0663737135d3b497124924871f98e7803007d2811dc5b83903dc0a0333f03be7de8122df2c9a05a11e5f51f7a05ce7071804fca8033e5da0734020b0183bb23e5416269577ed0e5323078ceeefdff6a03dbcd62914c2f629a47c622689800879e4fbd046f9d8a2a03e31385c0e73da8b83ca590947dcaead8208e73da8849b3e19ce704f7c5015586d006431f5cf61f3a04ee586ff002481c8fe6191408f0011eb8e30682774dea9bbb5784492ca6385832e1ca95e3d2834be9df8c312e2db5eb4375080337000f1303d18763591a469baef4d755989ec6f6dae5a23e20b599406dd8e080ddbed41272f4dd8caf1c86d163910f9595882a3d718a035edd695d3b6a926b57d0ac65b10b4e06eedd863bf141077fd7af2782bd3fa26a1a8891d57c630948c0279393dcd04cf5875258f4de9f0cb7b7b6d66d2b81ba752d85f5214724fed41036bd79d2fe319d7a8f4b9c81e58de2f04827b9ce09a07a3acecf54b790685ace8697606009e52c377b7f2e682b097d7d36acf0f55df5edbdc0977412468cb6ce3be10af3c63b9c8a0b0751f505be9690dd5d752436f62a3fe4c6448f3b7b0c64e38f615734651f107e3045ac42b67a7693018633b965bc1bc838ee173807bf7cd33065baaeb1a95f2c11dfcd2bc51fe48880aa3e8a062a8b059f595df4ae9a74de9e9ec499d43c97b1427c6e47e525bb63e4282ad3ea3712893c599dbc4259c1627713c927de81043950df97db1406da8411c92063be280230839627078e79a0390a71b5bb5003a8c1232338e4507025573e9fbd02a0e41dc0e680c3691cf714053bb34160895dc16f291d98d02322aa39f3e14707ffaa06f202a5bb0c7201f4a343aca51090497efdfbfce89840c8db8e46573923ff14410b00490d9f5c1a0425dd8ce4673e873cd0265e4dbe7041ed814009b8cbb8e5863bd07163b7716e0607b6698060b96b7b9478dc8643918247ee39a60b7e97f133a8b4e0c63d4ee597380923970a3ef4c0e13e25dfcfab457ba95bdbddb212016501867b9cfbfda982f907c74b282da34874a9048aa479c83838edc62982b7ac7c42d235cd67f15ac5b40c366418a2cb0c1c81e6f5e31db14c160d035de8cd4a3f18ea96562cc37359dfe9cac887fef039fd6b39446f56ea5d13a9dca4579a922496b1975b8d22dfc3566cf9557230703be715ac1431d4d2275325d7fae6b4f6f182a93ef1e32a9f41938f6a60afeb1a95c5fea53dccf772cf2c8c489240031f627e7565c0d67bbf160487c1801073bc0c31f91f953420f2bc8c7c52cc540032738a809905c0f4fa501940208e73df34028e703938a0577ae013f4a001300db4f03b71407461ce0502dca8c9c7dcf6a003fafcbdcd0070bc1e0fd734070db467b8a04cb9c9e68274b93bcb1daa40200ed4099765249ec476cf340849b8b264823bf34689ee009cb671df1409bc8e8b8e770e3ec68984d9c953cf97be2860b248caaebc107dc67f7a184c31232db88fd451031ce50e76039f5c8045026efb8f93279e0fd680b239504f0483d88ef409ee25bb90c79c0e050151c6e21b39ce783eb40adbcc2cefa17bdb61322387781c950e3dbdf9c8a066f28790b22e013db3dbef54726081e63c6460d34191b1bb0720f634060e7600412c781502409c8e3d7b500ed71dbef8ed40243f181c0a02e5d4e0fad006f644e4819e3b501f7e3049e7b501bc43b4e391da80558003392d40a23305e320d02e64cf998e1bf5a032b0c927b8e68049c8c8e71c6280377043118f4e680bbff00de0504ddbb3128371c1c64668024e59f3cd02521254e4fad1a2107e48fe6a6809ddb9e78a029e1463d05027ffc744a6c3857c7b1a205ff00e637fbf4a02b12b1794e39f4a02024e7249ed409924720906800005173fd7404989698ee39e4f7a04cf723d07a501fff0097ed406ffe36a018ff00281e99a037f4d0731f3bfd28007e53400ff99a810248c0cf140bc60123233cff008a0557f9beb4056eff007a07109243e79a03778b27bfbd02b128c27039a054001b818a06609de793da815006070283ffd9}\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here is a movie {\pict\jpegblip\picw20\pich22\picwgoal400\pichgoal440\bin ffd8ffe000104a46494600010101004800480000fffe0050546869732061727420697320696e20746865207075626c696320646f6d61696e2e204b6576696e204875676865732c206b6576696e68406569742e636f6d2c2053657074656d6265722031393935ffdb00430001010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101ffdb00430101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101ffc00011080016001403012200021101031101ffc4001a000100020301000000000000000000000000080905060a07ffc400231000010501000300010500000000000000060304050708020001090a11153976b7ffc400160101010100000000000000000000000000060800ffc400261101000102050109000000000000000000010200030405061121b33134365154717475b4ffda000c03010002110311003f00a90cf388f366a62aa720ed6ae07f96901f3831d973452b8cf36fe3570fc908e46d466433e5dd954f2e96992d9e498c7753faa44916e016ca91cc7d88b38fe60a5b97737defcbcc539c98d336a57f4fc2ca9a486bf07ab575ad9a3af4df221d8215e36df86c4504ff0024574551b3d687ee0575757b3ad64e311ee62bd94158d37e24198c43973099f1fc0c41614d950246513a081abf76cfe7061f6863281e6352fd1670949c148dd6dfb0d25f5b3689b1d5c965b0eacbf4e0932ad28e22ab9ae945633f4744bd3c8cee0a7fdf085b9000f449c5f7afa30b83e0b6fd7b0c8429c9467ff9715347c891e25fa24a205861aa715e6a09bd0488237dc2723414d9891381524e8ca7c0894664f835653631ab55ee7e3de433e4ff001b30949124e4c10c8b6ad0a479b3f9c937b2cf5bc0095ad600a0a41a0e9faee174a1c605e161c6c7a313539650b0113190f1a8368e60d5b24f30ff008ea7f0bf867fa6595feeb6978f1fe0f9c26177f4d63a51a9235184750e7d18811339cd000000c75f000e00380380ae390c350def826ed42ad051fa6f501c50f9b699c3b69cbeb76476d202bf3ac985b6e0e968be66572893e6a744540bd9722e5c87956848629bc2559306bd113e8653d3b6aff651dfad7a3ac8b02958cba02a93ccf525757039bae6cff090e1d90688e8aa233ee86a4c4a3e0586d6b2340522e47dcb7d0046d8a5acb05a123ee25d2b230b2ada6e2e2f9ede3c05202520ec2487b0d56562529d8b3393bca76adca4ec1bca508abb001babc007915d84fe3dd14e207e3c62f8379da2a3b861fb6629d28dba53b6ea388ebfed866bf6dfb553455e91ed547ae92e9445253a4fdf3efb4f8ebdfbe7d3c78f1ee0bb9e13e358e942a4ed49e22cff00eeb35fdd7ebfffd9} icon.\par} {\pard \qc \f0 \sa180 \li0 \fi0 \emdash\emdash\emdash\emdash\emdash\par} {\pard \ql \f0 \sa180 \li0 \fi0 \b \fs36 Footnotes\par} {\pard \ql \f0 \sa180 \li0 \fi0 Here is a footnote reference,{\super\chftn}{\*\footnote\chftn\~\plain\pard {\pard \ql \f0 \sa180 \li0 \fi0 Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.\par} } and another.{\super\chftn}{\*\footnote\chftn\~\plain\pard {\pard \ql \f0 \sa180 \li0 \fi0 Here\u8217's the long note. This one contains multiple blocks.\par} {\pard \ql \f0 \sa180 \li0 \fi0 Subsequent blocks are indented to show that they belong to the footnote (as with list items).\par} {\pard \ql \f0 \sa180 \li0 \fi0 \f1 \{ \}\par} {\pard \ql \f0 \sa180 \li0 \fi0 If you want, you can indent every line, but you can also be lazy and just indent the first line of each block.\par} } This should {\i not} be a footnote reference, because it contains a space.[^my note] Here is an inline note.{\super\chftn}{\*\footnote\chftn\~\plain\pard {\pard \ql \f0 \sa180 \li0 \fi0 This is {\i easier} to type. Inline notes may contain {\field{\*\fldinst{HYPERLINK "http://google.com"}}{\fldrslt{\ul links }}} and {\f1 ]} verbatim characters, as well as [bracketed text].\par} }\par} {\pard \ql \f0 \sa180 \li720 \fi0 Notes can go in quotes.{\super\chftn}{\*\footnote\chftn\~\plain\pard {\pard \ql \f0 \sa180 \li0 \fi0 In quote.\par} }\par} {\pard \ql \f0 \sa0 \li360 \fi-360 1.\tx360\tab And in list items.{\super\chftn}{\*\footnote\chftn\~\plain\pard {\pard \ql \f0 \sa180 \li0 \fi0 In list.\par} }\sa180\par} {\pard \ql \f0 \sa180 \li0 \fi0 This paragraph should not be part of the note, as it is not indented.\par} } pandoc-1.16.0.2~dfsg/tests/writer.dokuwiki0000644000000000000000000002506712645626061017213 0ustar rootrootThis is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. ---- ====== Headers ====== ===== Level 2 with an embedded link ===== ==== Level 3 with emphasis ==== === Level 4 === == Level 5 == ====== Level 1 ====== ===== Level 2 with emphasis ===== ==== Level 3 ==== with no blank line ===== Level 2 ===== with no blank line ---- ====== Paragraphs ====== Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break\\ here. ---- ====== Block Quotes ====== E-mail style: > This is a block quote. It is pretty short.
              Code in a block quote: sub status { print "working"; } A list: - item one - item two Nested block quotes: > nested > nested
              This should not be a block quote: 2 > 1. And a following paragraph. ---- ====== Code Blocks ====== Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ ---- ====== Lists ====== ===== Unordered ===== Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: * Plus 1 * Plus 2 * Plus 3 Pluses loose: * Plus 1 * Plus 2 * Plus 3 Minuses tight: * Minus 1 * Minus 2 * Minus 3 Minuses loose: * Minus 1 * Minus 2 * Minus 3 ===== Ordered ===== Tight: - First - Second - Third and: - One - Two - Three Loose using tabs: - First - Second - Third and using spaces: - One - Two - Three Multiple paragraphs:
              1. Item 1, graf one.

                Item 1. graf two. The quick brown fox jumped over the lazy dog’s back.

              2. Item 2.

              3. Item 3.

              ===== Nested ===== * Tab * Tab * Tab Here’s another: - First - Second: * Fee * Fie * Foe - Third Same thing but with paragraphs: - First - Second: * Fee * Fie * Foe - Third ===== Tabs and spaces ===== * this is a list item indented with tabs * this is a list item indented with spaces * this is an example list item indented with tabs * this is an example list item indented with spaces ===== Fancy list markers =====
              1. begins with 2
              2. and now 3

                with a continuation

                1. sublist with roman numerals, starting with 4
                2. more items
                  1. a subsublist
                  2. a subsublist
              Nesting:
              1. Upper Alpha
                1. Upper Roman.
                  1. Decimal start with 6
                    1. Lower alpha with paren
              Autonumbering: - Autonumber. - More. - Nested. Should not be a list item: M.A. 2007 B. Williams ---- ====== Definition Lists ====== Tight using spaces: * **apple** red fruit * **orange** orange fruit * **banana** yellow fruit Tight using tabs: * **apple** red fruit * **orange** orange fruit * **banana** yellow fruit Loose: * **apple** red fruit * **orange** orange fruit * **banana** yellow fruit Multiple blocks with italics:
              //apple//

              red fruit

              contains seeds, crisp, pleasant to taste

              //orange//

              orange fruit

              { orange code block } >

              orange block quote

              Multiple definitions, tight: * **apple** red fruitcomputer * **orange** orange fruitbank Multiple definitions, loose: * **apple** red fruitcomputer * **orange** orange fruitbank Blank line after term, indented marker, alternate markers: * **apple** red fruitcomputer * **orange** orange fruit - sublist - sublist ====== HTML Blocks ====== Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table:
              This is //emphasized// And this is **strong**
              Here’s a simple block: foo This should be a code block, though:
              foo
              As should this:
              foo
              Now, nested: foo This should just be an HTML comment: Multiline: Code block: Just plain comment, with trailing spaces on the line: Code:
              Hr’s:








              ---- ====== Inline Markup ====== This is //emphasized//, and so //is this//. This is **strong**, and so **is this**. An //[[url|emphasized link]]//. **//This is strong and em.//** So is **//this//** word. **//This is strong and em.//** So is **//this//** word. This is code: ''%%>%%'', ''%%$%%'', ''%%\%%'', ''%%\$%%'', ''%%%%''. This is //strikeout//. Superscripts: abcd a//hello// ahello there. Subscripts: H2O, H23O, Hmany of themO. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ---- ====== Smart quotes, ellipses, dashes ====== “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘''%%code%%''’ and a “[[http://example.com/?foo=1&bar=2|quoted link]]”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ---- ====== LaTeX ====== * * $2+2=4$ * $x \in y$ * $\alpha \wedge \omega$ * $223$ * $p$-Tree * Here’s some display math: $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$ * Here’s one that has a line break in it: $\alpha + \omega \times x^2$. These shouldn’t be math: * To get the famous equation, write ''%%$e = mc^2$%%''. * $22,000 is a //lot// of money. So is $34,000. (It worked if “lot” is emphasized.) * Shoes ($20) and socks ($5). * Escaped ''%%$%%'': $73 //this should be emphasized// 23$. Here’s a LaTeX table: ---- ====== Special Characters ====== Here is some unicode: * I hat: Î * o umlaut: ö * section: § * set membership: ∈ * copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - ---- ====== Links ====== ===== Explicit ===== Just a [[url/|URL]]. [[url/|URL and title]]. [[url/|URL and title]]. [[url/|URL and title]]. [[url/|URL and title]] [[url/|URL and title]] [[url/with_underscore|with_underscore]] [[mailto:nobody@nowhere.net|Email link]] [[|Empty]]. ===== Reference ===== Foo [[url/|bar]]. Foo [[url/|bar]]. Foo [[url/|bar]]. With [[url/|embedded [brackets]]]. [[url/|b]] by itself should be a link. Indented [[url|once]]. Indented [[url|twice]]. Indented [[url|thrice]]. This should [not][] be a link. [not]: /url Foo [[url/|bar]]. Foo [[url/|biz]]. ===== With ampersands ===== Here’s a [[http://example.com/?foo=1&bar=2|link with an ampersand in the URL]]. Here’s a link with an amersand in the link text: [[http://att.com/|AT&T]]. Here’s an [[script?foo=1&bar=2|inline link]]. Here’s an [[script?foo=1&bar=2|inline link in pointy braces]]. ===== Autolinks ===== With an ampersand: http://example.com/?foo=1&bar=2 * In a list? * http://example.com/ * It should. An e-mail address: > Blockquoted: http://example.com/ Auto-links should not occur here: ''%%%%'' or here: ---- ====== Images ====== From “Voyage dans la Lune” by Georges Melies (1902): {{:lalune.jpg|Voyage dans la Lune lalune}} Here is a movie {{:movie.jpg|movie}} icon. ---- ====== Footnotes ====== Here is a footnote reference,((Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. )) and another.((Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. )) This should //not// be a footnote reference, because it contains a space.[^my note] Here is an inline note.((This is //easier// to type. Inline notes may contain [[http://google.com|links]] and ''%%]%%'' verbatim characters, as well as [bracketed text]. )) > Notes can go in quotes.((In quote. > )) - And in list items.((In list.)) This paragraph should not be part of the note, as it is not indented. pandoc-1.16.0.2~dfsg/tests/writer.rst0000644000000000000000000002503612645626061016171 0ustar rootroot================= Pandoc Test Suite ================= :Author: John MacFarlane :Author: Anonymous :Date: July 17, 2006 .. role:: math(raw) :format: html latex .. .. role:: raw-latex(raw) :format: latex .. This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. -------------- Headers ======= Level 2 with an `embedded link `__ ---------------------------------------- Level 3 with *emphasis* ~~~~~~~~~~~~~~~~~~~~~~~ Level 4 ^^^^^^^ Level 5 ''''''' Level 1 ======= Level 2 with *emphasis* ----------------------- Level 3 ~~~~~~~ with no blank line Level 2 ------- with no blank line -------------- Paragraphs ========== Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. \* criminey. | There should be a hard line break | here. -------------- Block Quotes ============ E-mail style: This is a block quote. It is pretty short. Code in a block quote: :: sub status { print "working"; } A list: 1. item one 2. item two Nested block quotes: nested nested This should not be a block quote: 2 > 1. And a following paragraph. -------------- Code Blocks =========== Code: :: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: :: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ -------------- Lists ===== Unordered --------- Asterisks tight: - asterisk 1 - asterisk 2 - asterisk 3 Asterisks loose: - asterisk 1 - asterisk 2 - asterisk 3 Pluses tight: - Plus 1 - Plus 2 - Plus 3 Pluses loose: - Plus 1 - Plus 2 - Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 Ordered ------- Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. 2. Item 2. 3. Item 3. Nested ------ - Tab - Tab - Tab Here’s another: 1. First 2. Second: - Fee - Fie - Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: - Fee - Fie - Foe 3. Third Tabs and spaces --------------- - this is a list item indented with tabs - this is a list item indented with spaces - this is an example list item indented with tabs - this is an example list item indented with spaces Fancy list markers ------------------ (2) begins with 2 (3) and now 3 with a continuation iv. sublist with roman numerals, starting with 4 v. more items (A) a subsublist (B) a subsublist Nesting: A. Upper Alpha I. Upper Roman. (6) Decimal start with 6 c) Lower alpha with paren Autonumbering: #. Autonumber. #. More. #. Nested. Should not be a list item: M.A. 2007 B. Williams -------------- Definition Lists ================ Tight using spaces: apple red fruit orange orange fruit banana yellow fruit Tight using tabs: apple red fruit orange orange fruit banana yellow fruit Loose: apple red fruit orange orange fruit banana yellow fruit Multiple blocks with italics: *apple* red fruit contains seeds, crisp, pleasant to taste *orange* orange fruit :: { orange code block } orange block quote Multiple definitions, tight: apple red fruit computer orange orange fruit bank Multiple definitions, loose: apple red fruit computer orange orange fruit bank Blank line after term, indented marker, alternate markers: apple red fruit computer orange orange fruit 1. sublist 2. sublist HTML Blocks =========== Simple block on one line: .. raw:: html
              foo .. raw:: html
              And nested without indentation: .. raw:: html
              .. raw:: html
              .. raw:: html
              foo .. raw:: html
              .. raw:: html
              .. raw:: html
              bar .. raw:: html
              .. raw:: html
              Interpreted markdown in a table: .. raw:: html .. raw:: html .. raw:: html .. raw:: html .. raw:: html .. raw:: html
              This is *emphasized* .. raw:: html And this is **strong** .. raw:: html
              .. raw:: html Here’s a simple block: .. raw:: html
              foo .. raw:: html
              This should be a code block, though: ::
              foo
              As should this: ::
              foo
              Now, nested: .. raw:: html
              .. raw:: html
              .. raw:: html
              foo .. raw:: html
              .. raw:: html
              .. raw:: html
              This should just be an HTML comment: .. raw:: html Multiline: .. raw:: html .. raw:: html Code block: :: Just plain comment, with trailing spaces on the line: .. raw:: html Code: ::
              Hr’s: .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              .. raw:: html
              -------------- Inline Markup ============= This is *emphasized*, and so *is this*. This is **strong**, and so **is this**. An *`emphasized link `__*. ***This is strong and em.*** So is ***this*** word. ***This is strong and em.*** So is ***this*** word. This is code: ``>``, ``$``, ``\``, ``\$``, ````. [STRIKEOUT:This is *strikeout*.] Superscripts: a\ :sup:`bc`\ d a\ :sup:`*hello*` a\ :sup:`hello there`. Subscripts: H\ :sub:`2`\ O, H\ :sub:`23`\ O, H\ :sub:`many of them`\ O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. -------------- Smart quotes, ellipses, dashes ============================== “Hello,” said the spider. “‘Shelob’ is my name.” ‘A’, ‘B’, and ‘C’ are letters. ‘Oak,’ ‘elm,’ and ‘beech’ are names of trees. So is ‘pine.’ ‘He said, “I want to go.”’ Were you alive in the 70’s? Here is some quoted ‘``code``’ and a “`quoted link `__”. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. -------------- LaTeX ===== - :raw-latex:`\cite[22-23]{smith.1899}` - :math:`2+2=4` - :math:`x \in y` - :math:`\alpha \wedge \omega` - :math:`223` - :math:`p`-Tree - Here’s some display math: .. math:: \frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h} - Here’s one that has a line break in it: :math:`\alpha + \omega \times x^2`. These shouldn’t be math: - To get the famous equation, write ``$e = mc^2$``. - $22,000 is a *lot* of money. So is $34,000. (It worked if “lot” is emphasized.) - Shoes ($20) and socks ($5). - Escaped ``$``: $73 *this should be emphasized* 23$. Here’s a LaTeX table: .. raw:: latex \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} -------------- Special Characters ================== Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \\ Backtick: \` Asterisk: \* Underscore: \_ Left brace: { Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - -------------- Links ===== Explicit -------- Just a `URL `__. `URL and title `__. `URL and title `__. `URL and title `__. `URL and title `__ `URL and title `__ `with\_underscore `__ `Email link `__ `Empty <>`__. Reference --------- Foo `bar `__. Foo `bar `__. Foo `bar `__. With `embedded [brackets] `__. `b `__ by itself should be a link. Indented `once `__. Indented `twice `__. Indented `thrice `__. This should [not][] be a link. :: [not]: /url Foo `bar `__. Foo `biz `__. With ampersands --------------- Here’s a `link with an ampersand in the URL `__. Here’s a link with an amersand in the link text: `AT&T `__. Here’s an `inline link `__. Here’s an `inline link in pointy braces `__. Autolinks --------- With an ampersand: http://example.com/?foo=1&bar=2 - In a list? - http://example.com/ - It should. An e-mail address: nobody@nowhere.net Blockquoted: http://example.com/ Auto-links should not occur here: ```` :: or here: -------------- Images ====== From “Voyage dans la Lune” by Georges Melies (1902): .. figure:: lalune.jpg :alt: Voyage dans la Lune lalune Here is a movie |movie| icon. -------------- Footnotes ========= Here is a footnote reference, [1]_ and another. [2]_ This should *not* be a footnote reference, because it contains a space.[^my note] Here is an inline note. [3]_ Notes can go in quotes. [4]_ 1. And in list items. [5]_ This paragraph should not be part of the note, as it is not indented. .. [1] Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. .. [2] Here’s the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). :: { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. .. [3] This is *easier* to type. Inline notes may contain `links `__ and ``]`` verbatim characters, as well as [bracketed text]. .. [4] In quote. .. [5] In list. .. |movie| image:: movie.jpg pandoc-1.16.0.2~dfsg/tests/docbook-reader.native0000644000000000000000000006424112645626061020214 0ustar rootrootPandoc (Meta {unMeta = fromList [("author",MetaList [MetaInlines [Str "John",SoftBreak,Str "MacFarlane"],MetaInlines [Str "Anonymous"]]),("date",MetaInlines [Str "July",Space,Str "17,",Space,Str "2006"]),("title",MetaInlines [Str "Pandoc",Space,Str "Test",Space,Str "Suite"])]}) [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "set",Space,Str "of",Space,Str "tests",Space,Str "for",Space,Str "pandoc.",Space,Str "Most",Space,Str "of",Space,Str "them",Space,Str "are",Space,Str "adapted",Space,Str "from",Space,Str "John",SoftBreak,Str "Gruber\8217s",Space,Str "markdown",Space,Str "test",Space,Str "suite."] ,Header 1 ("headers",[],[]) [Str "Headers"] ,Header 2 ("level-2-with-an-embedded-link",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Str "an",Space,Link ("",[],[]) [Str "embedded",Space,Str "link"] ("/url","")] ,Header 3 ("level-3-with-emphasis",[],[]) [Str "Level",Space,Str "3",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 4 ("level-4",[],[]) [Str "Level",Space,Str "4"] ,Header 5 ("level-5",[],[]) [Str "Level",Space,Str "5"] ,Para [Str "Hi."] ,Header 1 ("level-1",[],[]) [Str "Level",Space,Str "1"] ,Header 2 ("level-2-with-emphasis",[],[]) [Str "Level",Space,Str "2",Space,Str "with",Space,Emph [Str "emphasis"]] ,Header 3 ("level-3",[],[]) [Str "Level",Space,Str "3"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 2 ("level-2",[],[]) [Str "Level",Space,Str "2"] ,Para [Str "with",Space,Str "no",Space,Str "blank",Space,Str "line"] ,Header 1 ("paragraphs",[],[]) [Str "Paragraphs"] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "regular",Space,Str "paragraph."] ,Para [Str "In",Space,Str "Markdown",Space,Str "1.0.0",Space,Str "and",Space,Str "earlier.",Space,Str "Version",Space,Str "8.",Space,Str "This",Space,Str "line",Space,Str "turns",Space,Str "into",Space,Str "a",Space,Str "list",SoftBreak,Str "item.",Space,Str "Because",Space,Str "a",Space,Str "hard-wrapped",Space,Str "line",Space,Str "in",Space,Str "the",Space,Str "middle",Space,Str "of",Space,Str "a",Space,Str "paragraph",Space,Str "looked",Space,Str "like",SoftBreak,Str "a",Space,Str "list",Space,Str "item."] ,Para [Str "Here\8217s",Space,Str "one",Space,Str "with",Space,Str "a",Space,Str "bullet.",Space,Str "*",Space,Str "criminey."] ,Header 1 ("block-quotes",[],[]) [Str "Block",Space,Str "Quotes"] ,Para [Str "E-mail",Space,Str "style:"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "block",Space,Str "quote.",Space,Str "It",Space,Str "is",Space,Str "pretty",Space,Str "short."]] ,BlockQuote [Para [Str "Code",Space,Str "in",Space,Str "a",Space,Str "block",Space,Str "quote:"] ,CodeBlock ("",[],[]) "sub status {\n print \"working\";\n}" ,CodeBlock ("",[],[]) "% ls" ,Para [Str "A",Space,Str "list:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "item",Space,Str "one"]] ,[Para [Str "item",Space,Str "two"]]] ,Para [Str "Nested",Space,Str "block",Space,Str "quotes:"] ,BlockQuote [Para [Str "nested"]] ,BlockQuote [Para [Str "nested"]]] ,Para [Str "This",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "block",Space,Str "quote:",Space,Str "2",Space,Str ">",Space,Str "1."] ,Para [Str "And",Space,Str "a",Space,Str "following",Space,Str "paragraph."] ,Header 1 ("code-blocks",[],[]) [Str "Code",Space,Str "Blocks"] ,Para [Str "Code:"] ,CodeBlock ("",[],[]) "---- (should be four hyphens)\n\nsub status {\n print \"working\";\n}\n\nthis code block is indented by one tab" ,Para [Str "And:"] ,CodeBlock ("",[],[]) " this code block is indented by two tabs\n\nThese should not be escaped: \\$ \\\\ \\> \\[ \\{" ,Header 1 ("lists",[],[]) [Str "Lists"] ,Header 2 ("unordered",[],[]) [Str "Unordered"] ,Para [Str "Asterisks",Space,Str "loose:"] ,BulletList [[Para [Str "asterisk",Space,Str "1"]] ,[Para [Str "asterisk",Space,Str "2"]] ,[Para [Str "asterisk",Space,Str "3"]]] ,Para [Str "Pluses",Space,Str "loose:"] ,BulletList [[Para [Str "Plus",Space,Str "1"]] ,[Para [Str "Plus",Space,Str "2"]] ,[Para [Str "Plus",Space,Str "3"]]] ,Para [Str "Minuses",Space,Str "loose:"] ,BulletList [[Para [Str "Minus",Space,Str "1"]] ,[Para [Str "Minus",Space,Str "2"]] ,[Para [Str "Minus",Space,Str "3"]]] ,Header 2 ("ordered",[],[]) [Str "Ordered"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "First"]] ,[Para [Str "Second"]] ,[Para [Str "Third"]]] ,Para [Str "and",Space,Str "using",Space,Str "spaces:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "One"]] ,[Para [Str "Two"]] ,[Para [Str "Three"]]] ,Para [Str "Multiple",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "Item",Space,Str "1,",Space,Str "graf",Space,Str "one."] ,Para [Str "Item",Space,Str "1.",Space,Str "graf",Space,Str "two.",Space,Str "The",Space,Str "quick",Space,Str "brown",Space,Str "fox",Space,Str "jumped",Space,Str "over",Space,Str "the",Space,Str "lazy",Space,Str "dog\8217s",SoftBreak,Str "back."]] ,[Para [Str "Item",Space,Str "2."]] ,[Para [Str "Item",Space,Str "3."]]] ,Header 2 ("nested",[],[]) [Str "Nested"] ,BulletList [[Para [Str "Tab"] ,BulletList [[Para [Str "Tab"] ,BulletList [[Para [Str "Tab"]]]]]]] ,Para [Str "Here\8217s",Space,Str "another:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Para [Str "Fee"]] ,[Para [Str "Fie"]] ,[Para [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Para [Str "Same",Space,Str "thing",Space,Str "but",Space,Str "with",Space,Str "paragraphs:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "First"]] ,[Para [Str "Second:"] ,BulletList [[Para [Str "Fee"]] ,[Para [Str "Fie"]] ,[Para [Str "Foe"]]]] ,[Para [Str "Third"]]] ,Header 2 ("tabs-and-spaces",[],[]) [Str "Tabs",Space,Str "and",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "a",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"] ,BulletList [[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "tabs"]] ,[Para [Str "this",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "list",Space,Str "item",Space,Str "indented",Space,Str "with",Space,Str "spaces"]]]]] ,Header 2 ("fancy-list-markers",[],[]) [Str "Fancy",Space,Str "list",Space,Str "markers"] ,OrderedList (2,Decimal,DefaultDelim) [[Para [Str "begins",Space,Str "with",Space,Str "2"]] ,[Para [Str "and",Space,Str "now",Space,Str "3"] ,Para [Str "with",Space,Str "a",Space,Str "continuation"] ,OrderedList (4,LowerRoman,DefaultDelim) [[Para [Str "sublist",Space,Str "with",Space,Str "roman",Space,Str "numerals,",Space,Str "starting",Space,Str "with",Space,Str "4"]] ,[Para [Str "more",Space,Str "items"] ,OrderedList (1,UpperAlpha,DefaultDelim) [[Para [Str "a",Space,Str "subsublist"]] ,[Para [Str "a",Space,Str "subsublist"]]]]]]] ,Para [Str "Nesting:"] ,OrderedList (1,UpperAlpha,DefaultDelim) [[Para [Str "Upper",Space,Str "Alpha"] ,OrderedList (1,UpperRoman,DefaultDelim) [[Para [Str "Upper",Space,Str "Roman."] ,OrderedList (6,Decimal,DefaultDelim) [[Para [Str "Decimal",Space,Str "start",Space,Str "with",Space,Str "6"] ,OrderedList (3,LowerAlpha,DefaultDelim) [[Para [Str "Lower",Space,Str "alpha",Space,Str "with",Space,Str "paren"]]]]]]]]] ,Para [Str "Autonumbering:"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "Autonumber."]] ,[Para [Str "More."] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "Nested."]]]]] ,Para [Str "Should",Space,Str "not",Space,Str "be",Space,Str "a",Space,Str "list",Space,Str "item:"] ,Para [Str "M.A.\160\&2007"] ,Para [Str "B.",Space,Str "Williams"] ,Header 2 ("callout",[],[]) [Str "Callout"] ,Para [Str "Simple."] ,BulletList [[Para [Str "A",Space,Code ("",[],[]) "__letrec",Space,Str "is",Space,Str "equivalent",Space,Str "to",Space,Str "a",Space,Str "normal",SoftBreak,Str "Haskell",Space,Str "LET."]] ,[Para [Str "GHC",Space,Str "compiled",Space,Str "the",Space,Str "body",Space,Str "of",Space,Str "our",Space,Str "list",Space,Str "comprehension",Space,Str "into",SoftBreak,Str "a",Space,Str "loop",Space,Str "named",Space,Code ("",[],[]) "go_s1YC",Str "."]] ,[Para [Str "If",Space,Str "our",Space,Str "CASE",Space,Str "expression",Space,Str "matches",Space,Str "the",Space,Str "empty",Space,Str "list,",Space,Str "we",SoftBreak,Str "return",Space,Str "the",Space,Str "empty",Space,Str "list.",Space,Str "This",Space,Str "is",Space,Str "reassuringly",SoftBreak,Str "familiar."]]] ,Header 1 ("definition-lists",[],[]) [Str "Definition",Space,Str "Lists"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]]]) ,([Str "banana"], [[Para [Str "yellow",Space,Str "fruit"]]])] ,Para [Str "Multiple",Space,Str "blocks",Space,Str "with",Space,Str "italics:"] ,DefinitionList [([Emph [Str "apple"]], [[Para [Str "red",Space,Str "fruit"] ,Para [Str "contains",Space,Str "seeds,",Space,Str "crisp,",Space,Str "pleasant",Space,Str "to",Space,Str "taste"]]]) ,([Emph [Str "orange"]], [[Para [Str "orange",Space,Str "fruit"] ,CodeBlock ("",[],[]) "{ orange code block }" ,BlockQuote [Para [Str "orange",Space,Str "block",Space,Str "quote"]]]])] ,Para [Str "Multiple",Space,Str "definitions,",Space,Str "loose:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"]] ,[Para [Str "bank"]]])] ,Para [Str "Blank",Space,Str "line",Space,Str "after",Space,Str "term,",Space,Str "indented",Space,Str "marker,",Space,Str "alternate",Space,Str "markers:"] ,DefinitionList [([Str "apple"], [[Para [Str "red",Space,Str "fruit"]] ,[Para [Str "computer"]]]) ,([Str "orange"], [[Para [Str "orange",Space,Str "fruit"] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "sublist"]] ,[Para [Str "sublist"]]]]])] ,Header 1 ("inline-markup",[],[]) [Str "Inline",Space,Str "Markup"] ,Para [Str "This",Space,Str "is",Space,Emph [Str "emphasized"],Str ",",Space,Str "and",Space,Str "so",Space,Emph [Str "is",SoftBreak,Str "this"],Str "."] ,Para [Str "This",Space,Str "is",Space,Strong [Str "strong"],Str ",",Space,Str "and",Space,Str "so",SoftBreak,Strong [Str "is",Space,Str "this"],Str "."] ,Para [Str "An",Space,Emph [Link ("",[],[]) [Str "emphasized",Space,Str "link"] ("/url","")],Str "."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",SoftBreak,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Strong [Emph [Str "This",Space,Str "is",Space,Str "strong",Space,Str "and",SoftBreak,Str "em."]]] ,Para [Str "So",Space,Str "is",Space,Strong [Emph [Str "this"]],Space,Str "word."] ,Para [Str "This",Space,Str "is",Space,Str "code:",Space,Code ("",[],[]) ">",Str ",",Space,Code ("",[],[]) "$",Str ",",SoftBreak,Code ("",[],[]) "\\",Str ",",Space,Code ("",[],[]) "\\$",Str ",",SoftBreak,Code ("",[],[]) "",Str "."] ,Para [Str "More",Space,Str "code:",Space,Code ("",[],[]) "Class",Space,Str "and",Space,Code ("",[],[]) "Type"] ,Para [Strikeout [Str "This",Space,Str "is",SoftBreak,Emph [Str "strikeout"],Str "."]] ,Para [Str "Superscripts:",Space,Str "a",Superscript [Str "bc"],Str "d",SoftBreak,Str "a",Superscript [Emph [Str "hello"]],SoftBreak,Str "a",Superscript [Str "hello\160there"],Str "."] ,Para [Str "Subscripts:",Space,Str "H",Subscript [Str "2"],Str "O,",Space,Str "H",Subscript [Str "23"],Str "O,",SoftBreak,Str "H",Subscript [Str "many\160of\160them"],Str "O."] ,Para [Str "These",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "superscripts",Space,Str "or",Space,Str "subscripts,",Space,Str "because",Space,Str "of",Space,Str "the",Space,Str "unescaped",SoftBreak,Str "spaces:",Space,Str "a^b",Space,Str "c^d,",Space,Str "a~b",Space,Str "c~d."] ,Header 1 ("smart-quotes-ellipses-dashes",[],[]) [Str "Smart",Space,Str "quotes,",Space,Str "ellipses,",Space,Str "dashes"] ,Para [Quoted DoubleQuote [Str "Hello,"],Space,Str "said",Space,Str "the",Space,Str "spider.",Space,Quoted DoubleQuote [Quoted SingleQuote [Str "Shelob"],Space,Str "is",Space,Str "my",SoftBreak,Str "name."]] ,Para [Quoted DoubleQuote [Str "A"],Str ",",Space,Quoted DoubleQuote [Str "B"],Str ",",Space,Str "and",Space,Quoted DoubleQuote [Str "C"],Space,Str "are",Space,Str "letters."] ,Para [Quoted DoubleQuote [Str "He",Space,Str "said,",Space,Quoted SingleQuote [Str "I",Space,Str "want",Space,Str "to",Space,Str "go."]],Space,Str "Were",Space,Str "you",Space,Str "alive",Space,Str "in",Space,Str "the",SoftBreak,Str "70\8217s?"] ,Para [Str "Some",Space,Str "dashes:",Space,Str "one\8212two",Space,Str "\8212",Space,Str "three\8212four",Space,Str "\8212",Space,Str "five."] ,Para [Str "Dashes",Space,Str "between",Space,Str "numbers:",Space,Str "5\8211\&7,",Space,Str "255\8211\&66,",Space,Str "1987\8211\&1999."] ,Para [Str "Ellipses\8230and\8230and\8230."] ,Header 1 ("math",[],[]) [] ,Para [Math DisplayMath "e = mc^{2}",Math DisplayMath "1",SoftBreak,Math InlineMath "e = mc^{2}",SoftBreak,Math DisplayMath "e = mc^{2}"] ,Header 1 ("special-characters",[],[]) [Str "Special",Space,Str "Characters"] ,Para [Str "Here",Space,Str "is",Space,Str "some",Space,Str "unicode:"] ,BulletList [[Para [Str "I",Space,Str "hat:",Space,Str "\206"]] ,[Para [Str "o",Space,Str "umlaut:",Space,Str "\246"]] ,[Para [Str "section:",Space,Str "\167"]] ,[Para [Str "set",Space,Str "membership:",Space,Str "\8712"]] ,[Para [Str "copyright:",Space,Str "\169"]]] ,Para [Str "AT&T",Space,Str "has",Space,Str "an",Space,Str "ampersand",Space,Str "in",Space,Str "their",Space,Str "name."] ,Para [Str "AT&T",Space,Str "is",Space,Str "another",Space,Str "way",Space,Str "to",Space,Str "write",Space,Str "it."] ,Para [Str "This",Space,Str "&",Space,Str "that."] ,Para [Str "4",Space,Str "<",Space,Str "5."] ,Para [Str "6",Space,Str ">",Space,Str "5."] ,Para [Str "Backslash:",Space,Str "\\"] ,Para [Str "Backtick:",Space,Str "`"] ,Para [Str "Asterisk:",Space,Str "*"] ,Para [Str "Underscore:",Space,Str "_"] ,Para [Str "Left",Space,Str "brace:",Space,Str "{"] ,Para [Str "Right",Space,Str "brace:",Space,Str "}"] ,Para [Str "Left",Space,Str "bracket:",Space,Str "["] ,Para [Str "Right",Space,Str "bracket:",Space,Str "]"] ,Para [Str "Left",Space,Str "paren:",Space,Str "("] ,Para [Str "Right",Space,Str "paren:",Space,Str ")"] ,Para [Str "Greater-than:",Space,Str ">"] ,Para [Str "Hash:",Space,Str "#"] ,Para [Str "Period:",Space,Str "."] ,Para [Str "Bang:",Space,Str "!"] ,Para [Str "Plus:",Space,Str "+"] ,Para [Str "Minus:",Space,Str "-"] ,Header 1 ("links",[],[]) [Str "Links"] ,Header 2 ("explicit",[],[]) [Str "Explicit"] ,Para [Str "Just",Space,Str "a",Space,Link ("",[],[]) [Str "URL"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","")] ,Para [Link ("",[],[]) [Str "URL",Space,Str "and",Space,Str "title"] ("/url/","")] ,Para [Link ("",[],[]) [Str "with_underscore"] ("/url/with_underscore","")] ,Para [Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net","")] ,Para [Link ("",[],[]) [Str "Empty"] ("",""),Str "."] ,Header 2 ("reference",[],[]) [Str "Reference"] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "With",Space,Link ("",[],[]) [Str "embedded",Space,Str "[brackets]"] ("/url/",""),Str "."] ,Para [Link ("",[],[]) [Str "b"] ("/url/",""),Space,Str "by",Space,Str "itself",Space,Str "should",Space,Str "be",Space,Str "a",Space,Str "link."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "once"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "twice"] ("/url",""),Str "."] ,Para [Str "Indented",Space,Link ("",[],[]) [Str "thrice"] ("/url",""),Str "."] ,Para [Str "This",Space,Str "should",Space,Str "[not][]",Space,Str "be",Space,Str "a",Space,Str "link."] ,CodeBlock ("",[],[]) "[not]: /url" ,Para [Str "Foo",Space,Link ("",[],[]) [Str "bar"] ("/url/",""),Str "."] ,Para [Str "Foo",Space,Link ("",[],[]) [Str "biz"] ("/url/",""),Str "."] ,Header 2 ("with-ampersands",[],[]) [Str "With",Space,Str "ampersands"] ,Para [Str "Here\8217s",Space,Str "a",Space,Link ("",[],[]) [Str "link",Space,Str "with",Space,Str "an",SoftBreak,Str "ampersand",Space,Str "in",Space,Str "the",Space,Str "URL"] ("http://example.com/?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "a",Space,Str "link",Space,Str "with",Space,Str "an",Space,Str "amersand",Space,Str "in",Space,Str "the",Space,Str "link",Space,Str "text:",SoftBreak,Link ("",[],[]) [Str "AT&T"] ("http://att.com/",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link"] ("/script?foo=1&bar=2",""),Str "."] ,Para [Str "Here\8217s",Space,Str "an",Space,Link ("",[],[]) [Str "inline",Space,Str "link",Space,Str "in",Space,Str "pointy",SoftBreak,Str "braces"] ("/script?foo=1&bar=2",""),Str "."] ,Header 2 ("autolinks",[],[]) [Str "Autolinks"] ,Para [Str "With",Space,Str "an",Space,Str "ampersand:",SoftBreak,Link ("",[],[]) [Str "http://example.com/?foo=1&bar=2"] ("http://example.com/?foo=1&bar=2","")] ,BulletList [[Para [Str "In",Space,Str "a",Space,Str "list?"]] ,[Para [Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,[Para [Str "It",Space,Str "should."]]] ,Para [Str "An",Space,Str "e-mail",Space,Str "address:",Space,Link ("",[],[]) [Str "nobody@nowhere.net"] ("mailto:nobody@nowhere.net","")] ,BlockQuote [Para [Str "Blockquoted:",SoftBreak,Link ("",[],[]) [Str "http://example.com/"] ("http://example.com/","")]] ,Para [Str "Auto-links",Space,Str "should",Space,Str "not",Space,Str "occur",Space,Str "here:",SoftBreak,Code ("",[],[]) ""] ,CodeBlock ("",[],[]) "or here: " ,Header 1 ("images",[],[]) [Str "Images"] ,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"] ,Para [Image ("",[],[]) [Str "lalune",Space,Str "fig",Space,Str "caption"] ("lalune.jpg","fig:")] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image ("",[],[]) [] ("movie.jpg",""),Space,Str "icon.",SoftBreak,Str "And",Space,Str "here",Space,Str "a",Space,Str "second",Space,Str "movie",Space,Image ("",[],[]) [Str "alt",Space,Str "text"] ("movie.jpg",""),Space,Str "icon.",SoftBreak,Str "And",Space,Str "here",Space,Str "a",Space,Str "third",Space,Str "movie",Space,Image ("",[],[]) [Str "alt",Space,Str "text"] ("movie.jpg",""),Space,Str "icon."] ,Para [Image ("",[],[]) [Str "lalune",Space,Str "no",Space,Str "figure",Space,Str "alt",Space,Str "text"] ("lalune.jpg","")] ,Header 1 ("footnotes",[],[]) [Str "Footnotes"] ,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "footnote",Space,Str "reference,",Note [Para [Str "Here",Space,Str "is",Space,Str "the",Space,Str "footnote.",Space,Str "It",Space,Str "can",Space,Str "go",Space,Str "anywhere",Space,Str "after",Space,Str "the",Space,Str "footnote",Space,Str "reference.",SoftBreak,Str "It",Space,Str "need",Space,Str "not",Space,Str "be",Space,Str "placed",Space,Str "at",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "document."]],Space,Str "and",Space,Str "another.",Note [Para [Str "Here\8217s",Space,Str "the",Space,Str "long",Space,Str "note.",Space,Str "This",Space,Str "one",Space,Str "contains",Space,Str "multiple",Space,Str "blocks."],Para [Str "Subsequent",Space,Str "blocks",Space,Str "are",Space,Str "indented",Space,Str "to",Space,Str "show",Space,Str "that",Space,Str "they",Space,Str "belong",Space,Str "to",Space,Str "the",SoftBreak,Str "footnote",Space,Str "(as",Space,Str "with",Space,Str "list",Space,Str "items)."],CodeBlock ("",[],[]) " { }",Para [Str "If",Space,Str "you",Space,Str "want,",Space,Str "you",Space,Str "can",Space,Str "indent",Space,Str "every",Space,Str "line,",Space,Str "but",Space,Str "you",Space,Str "can",Space,Str "also",Space,Str "be",Space,Str "lazy",Space,Str "and",SoftBreak,Str "just",Space,Str "indent",Space,Str "the",Space,Str "first",Space,Str "line",Space,Str "of",Space,Str "each",Space,Str "block."]],Space,Str "This",Space,Str "should",Space,Emph [Str "not"],Space,Str "be",Space,Str "a",Space,Str "footnote",Space,Str "reference,",SoftBreak,Str "because",Space,Str "it",Space,Str "contains",Space,Str "a",Space,Str "space.[^my",Space,Str "note]",Space,Str "Here",Space,Str "is",Space,Str "an",Space,Str "inline",Space,Str "note.",Note [Para [Str "This",Space,Str "is",Space,Emph [Str "easier"],Space,Str "to",Space,Str "type.",Space,Str "Inline",Space,Str "notes",Space,Str "may",Space,Str "contain",SoftBreak,Link ("",[],[]) [Str "links"] ("http://google.com",""),Space,Str "and",Space,Code ("",[],[]) "]",SoftBreak,Str "verbatim",Space,Str "characters,",Space,Str "as",Space,Str "well",Space,Str "as",Space,Str "[bracketed",Space,Str "text]."]]] ,BlockQuote [Para [Str "Notes",Space,Str "can",Space,Str "go",Space,Str "in",Space,Str "quotes.",Note [Para [Str "In",Space,Str "quote."]]]] ,OrderedList (1,Decimal,DefaultDelim) [[Para [Str "And",Space,Str "in",Space,Str "list",Space,Str "items.",Note [Para [Str "In",Space,Str "list."]]]]] ,Para [Str "This",Space,Str "paragraph",Space,Str "should",Space,Str "not",Space,Str "be",Space,Str "part",Space,Str "of",Space,Str "the",Space,Str "note,",Space,Str "as",Space,Str "it",Space,Str "is",Space,Str "not",Space,Str "indented."] ,Header 1 ("tables",[],[]) [Str "Tables"] ,Para [Str "Simple",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] [AlignRight,AlignLeft,AlignCenter,AlignLeft] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignRight,AlignLeft,AlignCenter,AlignLeft] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Simple",Space,Str "table",Space,Str "indented",Space,Str "two",Space,Str "spaces:"] ,Table [Str "Demonstration",Space,Str "of",Space,Str "simple",Space,Str "table",Space,Str "syntax."] [AlignRight,AlignLeft,AlignCenter,AlignLeft] [0.0,0.0,0.0,0.0] [[Plain [Str "Right"]] ,[Plain [Str "Left"]] ,[Plain [Str "Center"]] ,[Plain [Str "Default"]]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "with",Space,Str "caption:"] ,Table [Str "Here's",Space,Str "the",Space,Str "caption.",Space,Str "It",Space,Str "may",Space,Str "span",Space,Str "multiple",Space,Str "lines."] [AlignCenter,AlignLeft,AlignRight,AlignLeft] [0.2,0.2,0.3,0.3] [[Plain [Str "Centered",Space,Str "Header"]] ,[Plain [Str "Left",Space,Str "Aligned"]] ,[Plain [Str "Right",Space,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",Space,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "caption:"] ,Table [] [AlignCenter,AlignLeft,AlignRight,AlignLeft] [0.1,0.2,0.3,0.4] [[Plain [Str "Centered",Space,Str "Header"]] ,[Plain [Str "Left",Space,Str "Aligned"]] ,[Plain [Str "Right",Space,Str "Aligned"]] ,[Plain [Str "Default",Space,Str "aligned"]]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",Space,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]] ,Para [Str "Table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignRight,AlignLeft,AlignCenter,AlignRight] [0.0,0.0,0.0,0.0] [[] ,[] ,[] ,[]] [[[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]] ,[Plain [Str "12"]]] ,[[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]] ,[Plain [Str "123"]]] ,[[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]] ,[Plain [Str "1"]]]] ,Para [Str "Multiline",Space,Str "table",Space,Str "without",Space,Str "column",Space,Str "headers:"] ,Table [] [AlignCenter,AlignLeft,AlignRight,AlignLeft] [0.25,0.25,0.25,0.25] [[] ,[] ,[] ,[]] [[[Plain [Str "First"]] ,[Plain [Str "row"]] ,[Plain [Str "12.0"]] ,[Plain [Str "Example",Space,Str "of",Space,Str "a",Space,Str "row",Space,Str "that",Space,Str "spans",Space,Str "multiple",Space,Str "lines."]]] ,[[Plain [Str "Second"]] ,[Plain [Str "row"]] ,[Plain [Str "5.0"]] ,[Plain [Str "Here's",Space,Str "another",Space,Str "one.",Space,Str "Note",Space,Str "the",Space,Str "blank",Space,Str "line",Space,Str "between",Space,Str "rows."]]]]] pandoc-1.16.0.2~dfsg/tests/bodybg.gif0000644000000000000000000002360712645626061016062 0ustar rootrootGIF89aN絽ֽ!,N!u@BlM|?) Bc(, Fo1DEe,pmg٢pڈԸ< (8 e= qXdK Pq<8k:a D9U3 G  ;W[hQ[ L H5 2"A0g#p~T+uABU*4QmWJ`P2PUB t 恭tIJm!P:h( |!u nE Y$PLB,&^ C[b0KvsLP$ ԙ, x³(c- + f OR4ZC 7%# \ ;]?Z Cp6h,8X@7BUF-J@pFgyr_8`@Yh6Ɂbts%!QZP!uUw&H XBb Hw`aS,eF|@|< u%`2VNx@ژJU%T$M^;Ҁ<d$!^" p!{UsїbLg7p04X #SVksEA5CAd 玐**3haߎ4< E9X9{04C)މ{@,g#4o+'cp眫Z\M#@ 8L)o@^<YA~ N(7qfh(3B\a)ihƠ0@X(>$Qy)@"YL {4(Icɣg0.BQJC.!B%8 G?a FP^Tc e$WY5\8B9Ⳗdry#f E&dp Tk02o47q9m,4A_Q ![3PBkHF/ ~*@a:+9u?BFcŒ znB#RX"$ x8h|M8Ih^hTEbXmrBjl Hp`&Low`VGT@preXf[6@C$-42x'%ɐ\KQ4PX`n>|#^8t3/pB8[`X=T- =mF)z13NpAJkh!y8U&C+,C# `Plc!Lh6(=(J wڃ] 6g[DvY~롙 zTt0)O(UVix~6fzLC#P@ h7rʛr8uޭZ3am3ƍ) qDErg P;JB"@ɑ#ۦj0 +Cr(#R֐l$/P eY9;.}0FЙ[:/ Xl$X'p`8Qsp$l(\B [uVwzBfAs;8S%$:p 7C$ȿ\9f0m0 \jmDV-GzmrUtR<P:0:J mƼN1ރ `5P]~re"1~OM 3@"À u(JJ9P RSCRFsF` 4#4qA| PU9%# ԭ]*OֿB(C:z1NW <l$uauYC 0"j) u@ujϯģuZ([B1;@D4PD`  L2Z^ cf Fa'J3GP0ju<ǖPApP-G3?VBN,(t4yّmyzw1krݼM~ o:*uZ\g$0 M}zŭ}6gx鍹@1AGb.i.[pX. F1'v)*2DCF( &hf;ELJAv09#OT?jęH~l "pWQ)#^ !2¤U~. L%+ >Iu+LGAx{ُ#N!HnFp 0L[ʃ+AcY(KdH)Q ]Ao$%HyQaMVj tJ;cz QG(lT~_ MsH A$Do[|ohj`z1Z!~K J0a Z / 8D;4.?C !Sq[(I[ `">hm h 4RgY&L岙<(&m3eRH`)jb`tD`> qh DEaP @@|$P00H%$)PT$%,Ply~,Q-A8P=<)M-,yBXX5B@,,4r%QPp&v{R%Ԫ94<0@ شD$JT҆" Wes \8 vp; <*Hd5CÃզ4L>r@fΙy:Da*$g+0G n<vj&Pxv. J;z3pp zY0V+m>p-1Tʃ$Qع.߼ iv@&J;\l8P_!LnCR83 r{84l_= \}X@IA7l1"VJ<ޒOV? M5L[xKih?3n e m5ې3 C{GFژgd݃G.B+N^=xgќ z .Oq4ؾ/*Ңҭ]n|&xfg!;ɳHCOӻam] hmF30 㯠 vdG$/߫Dcȧ8oy , ;] l44zB#BD>]J8aFD;%B rHm5 ܠ/ѲWd$pU8EhxkPC]V >zTPKZ`$H 0%%eB頀*(٨Bl'3 j2IƈF]rXe(,- /r0n&z$&sH(Zgf 00L6@^f8P-m'ic_(cUf`d3J"i+(R]d  (ʤ VHK w+D ,X2lԧr3FsbXa+ ZD 5 9s*FgU>ؕ'R&)OcZ`VD\M4p'R*D"HnD3ֶnFe)in  `0\ui0s*:vaaDz4oT Z ņ`Y%WwB0v5HH  &a<)RrBx%"a*h.E 7αi@[ e7@rH>iz S*!RLQ l3$ 5%#9P[8/`n}~gOTE۠e" )atDĐpY@4PRi/KYh9FF@?TRڀFCaNN]v)}T  4.P~uA(_[vuh,Լ@U<dN؁G m&`_˷f9Ճ{y^!.ۜqe8,T7REō|&,5=YZXB`C48(X~ED `C^ D`t 7 bcY `PpAi|C)' 8(!Z3m`Ef[5a2 A] ufCf>L '" JP,z &$9pOu$"P񕔴G"UDb(ً̢qI -a !%(rb)>i>@,>#+ :E/fI)`h" ![c~.^F:I`<^m":^c11_N z=b>7y0$$e#"!E睢Vf$ɣz]mfZUPh2 wӽWej'M)L]s*}~RNP}'q%c-mڌ'"|.h~Vd0 ԧ>m8焖<\_'vΰh(]P [g-\u5a(2'e(3f (Y7h >ߎeV wf(B v v ܭYY(0X+5 6'A]]OliNQb6 m_¡(qU&>Vd_hƩi+t6"8VqcDʌ2ԜY1JF<@>]NL6+dD֌f(Ky<&7Yb)Pݤ՟9"-g[X(bfR d$<\He>LVah~?:,'|-#[E7i ebGYJl>`2Q}k (O)֙PRW!~e(a֞ î΋db\V)r=S$)µ NKEHl]aݵfTr^f=Z-iv!ōӣ$-Zkǒ&n[(F[вJ-n`4j*KR[:b&[!ł`n1֝&:d!1f\- -6˨2"B\^Bw*( c zG/ܪbY6 Qo͹R*V],$}Ʌa¡ѥ^ hwT/f҂9PL/(pUOlZN0-yX O=^́p:%1Pff\eڠf"b bިMnGs%X܂%H0[*f c`5 O.p+\Qo ZRZdO$$K.e8$%U()';pandoc-1.16.0.2~dfsg/tests/s5-basic.html0000644000000000000000000000400612645626061016411 0ustar rootroot My S5 Document

              My S5 Document

              Sam Smith
              Jen Jones

              July 15, 2006

              First slide

              • first bullet
              • second bullet

              Math

              • $\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$
              pandoc-1.16.0.2~dfsg/tests/writer.opml0000644000000000000000000003424712645626061016334 0ustar rootroot Pandoc Test Suite Mon, 17 Jul 2006 00:00:00 UTC John MacFarlane; Anonymous pandoc-1.16.0.2~dfsg/tests/testsuite.txt0000644000000000000000000002203212645626061016706 0ustar rootroot% Pandoc Test Suite % John MacFarlane; Anonymous % July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber's markdown test suite. ----- # Headers ## Level 2 with an [embedded link](/url) ### Level 3 with *emphasis* #### Level 4 ##### Level 5 Level 1 ======= Level 2 with *emphasis* ----------------------- ### Level 3 with no blank line Level 2 ------- with no blank line ---------- # Paragraphs Here's a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here's one with a bullet. * criminey. There should be a hard line break here. --- # Block Quotes E-mail style: > This is a block quote. > It is pretty short. > Code in a block quote: > > sub status { > print "working"; > } > > A list: > > 1. item one > 2. item two > > Nested block quotes: > > > nested > >> nested > This should not be a block quote: 2 > 1. And a following paragraph. * * * * # Code Blocks Code: ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab And: this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ ___________ # Lists ## Unordered Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: + Plus 1 + Plus 2 + Plus 3 Pluses loose: + Plus 1 + Plus 2 + Plus 3 Minuses tight: - Minus 1 - Minus 2 - Minus 3 Minuses loose: - Minus 1 - Minus 2 - Minus 3 ## Ordered Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. Item 1. graf two. The quick brown fox jumped over the lazy dog's back. 2. Item 2. 3. Item 3. ## Nested * Tab * Tab * Tab Here's another: 1. First 2. Second: * Fee * Fie * Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: * Fee * Fie * Foe 3. Third ## Tabs and spaces + this is a list item indented with tabs + this is a list item indented with spaces + this is an example list item indented with tabs + this is an example list item indented with spaces ## Fancy list markers (2) begins with 2 (3) and now 3 with a continuation iv. sublist with roman numerals, starting with 4 v. more items (A) a subsublist (B) a subsublist Nesting: A. Upper Alpha I. Upper Roman. (6) Decimal start with 6 c) Lower alpha with paren Autonumbering: #. Autonumber. #. More. #. Nested. Should not be a list item: M.A. 2007 B. Williams * * * * * # Definition Lists Tight using spaces: apple : red fruit orange : orange fruit banana : yellow fruit Tight using tabs: apple : red fruit orange : orange fruit banana : yellow fruit Loose: apple : red fruit orange : orange fruit banana : yellow fruit Multiple blocks with italics: *apple* : red fruit contains seeds, crisp, pleasant to taste *orange* : orange fruit { orange code block } > orange block quote Multiple definitions, tight: apple : red fruit : computer orange : orange fruit : bank Multiple definitions, loose: apple : red fruit : computer orange : orange fruit : bank Blank line after term, indented marker, alternate markers: apple ~ red fruit ~ computer orange ~ orange fruit 1. sublist 2. sublist # HTML Blocks Simple block on one line:
              foo
              And nested without indentation:
              foo
              bar
              Interpreted markdown in a table:
              This is *emphasized* And this is **strong**
              Here's a simple block:
              foo
              This should be a code block, though:
              foo
              As should this:
              foo
              Now, nested:
              foo
              This should just be an HTML comment: Multiline: Code block: Just plain comment, with trailing spaces on the line: Code:
              Hr's:








              ----- # Inline Markup This is *emphasized*, and so _is this_. This is **strong**, and so __is this__. An *[emphasized link](/url)*. ***This is strong and em.*** So is ***this*** word. ___This is strong and em.___ So is ___this___ word. This is code: `>`, `$`, `\`, `\$`, ``. ~~This is *strikeout*.~~ Superscripts: a^bc^d a^*hello*^ a^hello\ there^. Subscripts: H~2~O, H~23~O, H~many\ of\ them~O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ----- # Smart quotes, ellipses, dashes "Hello," said the spider. "'Shelob' is my name." 'A', 'B', and 'C' are letters. 'Oak,' 'elm,' and 'beech' are names of trees. So is 'pine.' 'He said, "I want to go."' Were you alive in the 70's? Here is some quoted '`code`' and a "[quoted link][1]". Some dashes: one---two --- three---four --- five. Dashes between numbers: 5--7, 255--66, 1987--1999. Ellipses...and...and.... ----- # LaTeX - \cite[22-23]{smith.1899} - $2+2=4$ - $x \in y$ - $\alpha \wedge \omega$ - $223$ - $p$-Tree - Here's some display math: $$\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}$$ - Here's one that has a line break in it: $\alpha + \omega \times x^2$. These shouldn't be math: - To get the famous equation, write `$e = mc^2$`. - $22,000 is a *lot* of money. So is $34,000. (It worked if "lot" is emphasized.) - Shoes ($20) and socks ($5). - Escaped `$`: $73 *this should be emphasized* 23\$. Here's a LaTeX table: \begin{tabular}{|l|l|}\hline Animal & Number \\ \hline Dog & 2 \\ Cat & 1 \\ \hline \end{tabular} * * * * * # Special Characters Here is some unicode: - I hat: Î - o umlaut: ö - section: § - set membership: ∈ - copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \\ Backtick: \` Asterisk: \* Underscore: \_ Left brace: \{ Right brace: \} Left bracket: \[ Right bracket: \] Left paren: \( Right paren: \) Greater-than: \> Hash: \# Period: \. Bang: \! Plus: \+ Minus: \- - - - - - - - - - - - - - # Links ## Explicit Just a [URL](/url/). [URL and title](/url/ "title"). [URL and title](/url/ "title preceded by two spaces"). [URL and title](/url/ "title preceded by a tab"). [URL and title](/url/ "title with "quotes" in it") [URL and title](/url/ 'title with single quotes') [with\_underscore](/url/with_underscore) [Email link](mailto:nobody@nowhere.net) [Empty](). ## Reference Foo [bar] [a]. Foo [bar][a]. Foo [bar] [a]. [a]: /url/ With [embedded [brackets]] [b]. [b] by itself should be a link. Indented [once][]. Indented [twice][]. Indented [thrice][]. This should [not][] be a link. [once]: /url [twice]: /url [thrice]: /url [not]: /url [b]: /url/ Foo [bar][]. Foo [biz](/url/ "Title with "quote" inside"). [bar]: /url/ "Title with "quotes" inside" ## With ampersands Here's a [link with an ampersand in the URL] [1]. Here's a link with an amersand in the link text: [AT&T] [2]. Here's an [inline link](/script?foo=1&bar=2). Here's an [inline link in pointy braces](). [1]: http://example.com/?foo=1&bar=2 [2]: http://att.com/ "AT&T" ## Autolinks With an ampersand: * In a list? * * It should. An e-mail address: > Blockquoted: Auto-links should not occur here: `` or here: ---- # Images From "Voyage dans la Lune" by Georges Melies (1902): ![lalune][] [lalune]: lalune.jpg "Voyage dans la Lune" Here is a movie ![movie](movie.jpg) icon. ---- # Footnotes Here is a footnote reference,[^1] and another.[^longnote] This should *not* be a footnote reference, because it contains a space.[^my note] Here is an inline note.^[This is *easier* to type. Inline notes may contain [links](http://google.com) and `]` verbatim characters, as well as [bracketed text].] > Notes can go in quotes.^[In quote.] 1. And in list items.^[In list.] [^longnote]: Here's the long note. This one contains multiple blocks. Subsequent blocks are indented to show that they belong to the footnote (as with list items). { } If you want, you can indent every line, but you can also be lazy and just indent the first line of each block. This paragraph should not be part of the note, as it is not indented. [^1]: Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document. pandoc-1.16.0.2~dfsg/tests/tables.rst0000644000000000000000000000764112645626061016131 0ustar rootrootSimple table with caption: +---------+--------+----------+-----------+ | Right | Left | Center | Default | +=========+========+==========+===========+ | 12 | 12 | 12 | 12 | +---------+--------+----------+-----------+ | 123 | 123 | 123 | 123 | +---------+--------+----------+-----------+ | 1 | 1 | 1 | 1 | +---------+--------+----------+-----------+ Table: Demonstration of simple table syntax. Simple table without caption: +---------+--------+----------+-----------+ | Right | Left | Center | Default | +=========+========+==========+===========+ | 12 | 12 | 12 | 12 | +---------+--------+----------+-----------+ | 123 | 123 | 123 | 123 | +---------+--------+----------+-----------+ | 1 | 1 | 1 | 1 | +---------+--------+----------+-----------+ Simple table indented two spaces: +---------+--------+----------+-----------+ | Right | Left | Center | Default | +=========+========+==========+===========+ | 12 | 12 | 12 | 12 | +---------+--------+----------+-----------+ | 123 | 123 | 123 | 123 | +---------+--------+----------+-----------+ | 1 | 1 | 1 | 1 | +---------+--------+----------+-----------+ Table: Demonstration of simple table syntax. Multiline table with caption: +-------------+------------+--------------+----------------------------+ | Centered | Left | Right | Default aligned | | Header | Aligned | Aligned | | +=============+============+==============+============================+ | First | row | 12.0 | Example of a row that | | | | | spans multiple lines. | +-------------+------------+--------------+----------------------------+ | Second | row | 5.0 | Here's another one. Note | | | | | the blank line between | | | | | rows. | +-------------+------------+--------------+----------------------------+ Table: Here's the caption. It may span multiple lines. Multiline table without caption: +-------------+------------+--------------+----------------------------+ | Centered | Left | Right | Default aligned | | Header | Aligned | Aligned | | +=============+============+==============+============================+ | First | row | 12.0 | Example of a row that | | | | | spans multiple lines. | +-------------+------------+--------------+----------------------------+ | Second | row | 5.0 | Here's another one. Note | | | | | the blank line between | | | | | rows. | +-------------+------------+--------------+----------------------------+ Table without column headers: +-------+-------+-------+-------+ | 12 | 12 | 12 | 12 | +-------+-------+-------+-------+ | 123 | 123 | 123 | 123 | +-------+-------+-------+-------+ | 1 | 1 | 1 | 1 | +-------+-------+-------+-------+ Multiline table without column headers: +-------------+------------+--------------+----------------------------+ | First | row | 12.0 | Example of a row that | | | | | spans multiple lines. | +-------------+------------+--------------+----------------------------+ | Second | row | 5.0 | Here's another one. Note | | | | | the blank line between | | | | | rows. | +-------------+------------+--------------+----------------------------+ pandoc-1.16.0.2~dfsg/tests/docx/0000755000000000000000000000000012647223655015056 5ustar rootrootpandoc-1.16.0.2~dfsg/tests/docx/image_vml.native0000644000000000000000000000032412645626061020221 0ustar rootroot[Header 1 ("vml-image",[],[]) [Strong [Str "VML",Space,Str "Image"]] ,BlockQuote [Para [Str "It",Space,Str "should",Space,Str "follow",Space,Str "below:"] ,Para [Image ("",[],[]) [] ("media/image4.jpeg","")]]] pandoc-1.16.0.2~dfsg/tests/docx/drop_cap.native0000644000000000000000000000033612645626061020053 0ustar rootroot[Para [Str "Drop",Space,Str "cap."] ,Para [Str "Next",Space,Str "paragraph."] ,Para [Str "Drop",Space,Str "cap",Space,Str "in",Space,Str "margin."] ,Para [Str "Drop",Space,Str "cap",Space,Str "(not",Space,Str "really)."]] pandoc-1.16.0.2~dfsg/tests/docx/metadata.native0000644000000000000000000000152512645626061020045 0ustar rootrootPandoc (Meta {unMeta = fromList [("abstract",MetaInlines [Str "This",Space,Str "is",Space,Str "a",Space,Str "test",Space,Str "of",Space,Str "how",Space,Str "this",Space,Str "all",Space,Str "works.",Space,Str "I\8217ve",Space,Str "skipped",Space,Str "lines",Space,Str "here,",Space,Str "which",Space,Str "pandoc",Space,Str "doesn\8217t",Space,Str "do,",Space,Str "but",Space,Str "which",Space,Str "shouldn\8217t",Space,Str "make",Space,Str "a",Space,Str "difference."]),("author",MetaList [MetaInlines [Str "Mary",Space,Str "Ann",Space,Str "Evans"],MetaInlines [Str "Aurore",Space,Str "Dupin"]]),("date",MetaInlines [Str "July",Space,Str "28,",Space,Str "2014"]),("title",MetaInlines [Str "This",Space,Str "Is",Space,Str "the",Space,Str "Title"])]}) [Para [Str "And",Space,Str "now",Space,Str "this",Space,Str "is",Space,Str "normal",Space,Str "text."]] pandoc-1.16.0.2~dfsg/tests/docx/inline_images_writer.native0000644000000000000000000000071012645626061022457 0ustar rootroot[Para [Str "This",Space,Str "picture",Space,Image ("",[],[("width","0.4166666666666667in"),("height","0.4166666666666667in")]) [] ("media/rId26.jpg",""),Space,Str "is",Space,Str "an",Space,Str "identicon."] ,Para [Str "Here",Space,Str "is",Space,Link ("",[],[]) [Str "one",Space,Image ("",[],[("width","0.4166666666666667in"),("height","0.4166666666666667in")]) [] ("media/rId26.jpg",""),Space,Str "that"] ("http://www.google.com",""),Space,Str "links."]] pandoc-1.16.0.2~dfsg/tests/docx/metadata_after_normal.native0000644000000000000000000000271212645626061022575 0ustar rootrootPandoc (Meta {unMeta = fromList [("abstract",MetaInlines [Str "This",Space,Str "is",Space,Str "a",Space,Str "test",Space,Str "of",Space,Str "how",Space,Str "this",Space,Str "all",Space,Str "works.",Space,Str "I\8217ve",Space,Str "skipped",Space,Str "lines",Space,Str "here,",Space,Str "which",Space,Str "pandoc",Space,Str "doesn\8217t",Space,Str "do,",Space,Str "but",Space,Str "which",Space,Str "shouldn\8217t",Space,Str "make",Space,Str "a",Space,Str "difference."]),("author",MetaList [MetaInlines [Str "Mary",Space,Str "Ann",Space,Str "Evans"],MetaInlines [Str "Aurore",Space,Str "Dupin"]]),("date",MetaInlines [Str "July",Space,Str "28,",Space,Str "2014"]),("title",MetaInlines [Str "This",Space,Str "Is",Space,Str "the",Space,Str "Title"])]}) [Para [Str "And",Space,Str "now",Space,Str "this",Space,Str "is",Space,Str "normal",Space,Str "text."] ,Para [Str "This",Space,Str "Is",Space,Str "the",Space,Str "Title"] ,Para [Str "Mary",Space,Str "Ann",Space,Str "Evans"] ,Para [Str "Aurore",Space,Str "Dupin"] ,Para [Str "July",Space,Str "28,",Space,Str "2014"] ,Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "test",Space,Str "of",Space,Str "how",Space,Str "this",Space,Str "all",Space,Str "works.",Space,Str "I\8217ve",Space,Str "skipped",Space,Str "lines",Space,Str "here,",Space,Str "which",Space,Str "pandoc",Space,Str "doesn\8217t",Space,Str "do,",Space,Str "but",Space,Str "which",Space,Str "shouldn\8217t",Space,Str "make",Space,Str "a",Space,Str "difference."]] pandoc-1.16.0.2~dfsg/tests/docx/already_auto_ident.docx0000644000000000000000000002041712645626061021571 0ustar rootrootPKFD ]$[Content_Types].xmlN0E|E-Jܲ@5*Q>u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPKFD? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,d3\h<@#HP:lhv".lѕ:i˃Kun$b77*Ei 0`r~?PKFDz0word/_rels/document.xml.relsӻN0N(邐NrrE)зE8E ,ٲ7o5Ot~4Z@P7u/z}my$)Lh= k0g}3>3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PKFD4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PKFDOihword/numbering.xmlŕn0 { FiU[NӴC6RPhsBPŅ &ߎīEpJJf(ȣJ&o_SYKو*p{!򜡓1c] zVTBP)A ,+U֪*֐)8}?0P(RFxw]!If%Z3D!Yy؆D -v"{Ck6b+L7Ss饏y7{99=tKYcDvW7PVx"边[]uv &(,$,A,10$0a „I<&&Ma(6 :|Q?&/9|w_Q qg4Y6b/ǃoZ<$L )yQ!yPwo;vleDS)>ČQSu$T+|\璬j@wl/lwk_]JD vjI@O6- +hGjv6hBݚzZ-F@IO-{T;H o9嵝?ㅧ ( Q8ubDa'fYhK+_32/F8rhP{DC^銹0cR^U /QbX#iҞt:W('F@6iqΝ&ݍ^_#& ,v>~M8v#H;E!ufW@哉s O0QN,41 Dy! u}z#(bGyCGbP]k?dFUw2JYwkN7<j[Rğ@B@Ff)p{95R[:iNiNrӜ6iӜQ#4Msͩ/PKFD(*bsword/footnotes.xmlj {"xϚC)ٽ,}FL>~- =D<_aj!xDc{/>?7qr-5%I^IIIfAerŻ̀CB0a{A(V&la9o lX܋44DU^Jǭz_b S}{i54P?֛!S/ﯿ=/PKFDudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PKDdNFddocProps/app.xmlRN0+܉Kyr]!)-{X8enӆ 8fm1Vq5/ pkUo.˵l (piUv9%cIuT!i|e67Qp[.|~#ӠhX_Sݗπ~bVG gCEئ4jE#mξPq麓}Mq񂳡"*!K$9>M5mCodÆ%3>&.9W8B<.Jq׋&HWQ2$V>RĶ>(`:PoOKgikӃ8GV5~1y88k ~E&@=T̰'PKD= word/theme/theme1.xmlYMo6Wl+u:E֦ CDKl(Q $ qaݰ ð@ l_EeSۊ5GKҾ|8"1iܵ أ>u{4бl~pnEHt7` H6l{r4A|7,BY` I)ƚA[ Z&!0JEZs"?b }Oi 8?>}!$]K ȅ|ѵe`QCֈC7' ,Lg^]jhf?pJ =Oz,Î+jqYz6 MCk*UKNcլ%]U nIX[" / ,̖)*0JPl2ޣl(*PY&Г>$x̰7^s_K1Q)1/prO<8v ƁN{=!pۏ5H#?47أQA3RF!:e+8aJ2"o &`Uy`D^ޫ&0 w(%=̎]WXLF?= LY(Df(FB&]+NAbs`Fx,̬k8 mDhQbTPL 1 Eͫp*`dFDހ"4?c^%\ȤP0F-6|] ! e7 :tC%fqXv0Ak&˄>w0g\q%}3e^_ծ#٭[hײ;>;֨d,kc=r2=yN]%oɯX+7Z jOLȾtͥPN"'$s}`zCH=R\vABIXK՜[&%g5FURk]z]uN\Qs_b*Z37{ ?~.a)*>2k>:SvX7cm//.WGkMLDcH<(qDKsrn% b0W*qBmތa/fM&530G?c2e{PZΪ\2oX]2Y&_>$!˾W@WυjgN_ZoKZt Jn Ne"%!L2ikC,~ ^=e!ChW䞞"͙w|yS̓"2JZ E[cMkl ˇ9wRU,b[auXe_6knȋH?d##vDd KB'_XZKeSGN]Rx.(<]CSm//X[OUt|O*ߖW)fx"G.|S6&G#Hf5u;3 .jtkg]wkK}5p?ӳPKDҟVword/settings.xmlUMo0WD9/%|Z-PCBMwǙG!KN NjhO'f2[u 2fz꾿-[{w3 :Sw@ [Q%LLJ$aT1& Rt+3HKV'BҝԴ7l+`yz2m͆&_^pw+KWk+ n dM5yN3QF/!p E Sw߸]r "Ã6 25".@΀㋠VkE BNIay,pɸ{W<_4oC}t qFjGFٱ"9X$ 3BkoPo™89ԹPƦBA7o)KQJry\Lita` _1jv * 8źڽJit<gwG~1b/hp~vGC3iϟ 0*m128wyT$>BXj"w i%K'oY+𚜺dl1 wQ˚\l"6ߠmAgR!1#\ ɲӸFEa‰ bM\uOqCh].jkF\b[_c jlhamhh[r,Dr.sj԰ BxQm5ϙ6!d(FV/}PKDTΜword/webSettings.xml];0DrOl(M"L$loBAA9FS6/ ,Js-GJo$:+bG)1!VJ)-R4 @`M'a:h}T LqkwWa gsZ^;PKFD ]$[Content_Types].xmlPKFD? _rels/.relsPKFD~Fword/document.xmlPKFDz0@word/_rels/document.xml.relsPKFD4o}uword/_rels/footnotes.xml.relsPKFDOihword/numbering.xmlPKFDa|9word/styles.xmlPKFD(*bs word/footnotes.xmlPKFDudocProps/core.xmlPKDdNFddocProps/app.xmlPKD= nword/theme/theme1.xmlPKD{H: word/fontTable.xmlPKDҟVword/settings.xmlPKDTΜword/webSettings.xmlPKmpandoc-1.16.0.2~dfsg/tests/docx/char_styles.native0000644000000000000000000000122312645626061020600 0ustar rootroot[Para [Emph [Str "This",Space,Str "is",Space,Str "all",Space,Str "in",Space,Str "an"],Space,Emph [Strong [Str "italic",Space,Str "style"],Str "."]] ,Para [Emph [Str "This",Space,Str "is",Space,Str "an",Space,Str "italic"],Space,Str "style",Space,Emph [Str "with",Space,Str "some"],Space,Str "words",Space,Emph [Str "unitalicized."]] ,Para [Strong [Str "This",Space,Str "is",Space,Str "all",Space,Str "in",Space,Str "a",Space,Emph [Str "strong",Space,Str "style"],Str "."]] ,Para [Strong [Str "This",Space,Str "is",Space,Str "a",Space,Str "strong"],Space,Str "style",Space,Strong [Str "with",Space,Str "some"],Space,Str "words",Space,Strong [Str "ubolded."]]] pandoc-1.16.0.2~dfsg/tests/docx/unicode.docx0000644000000000000000000002636212645626061017370 0ustar rootrootPK Eword/UT S=Sux PK!o%Ȋ=word/stylesWithEffects.xmlUT Sux [s8wf{/{vr%3M $Vq~79D} Ds9OT*&_܇'箣43*ㇿz*QğҘw1Pb"r|ꭅ A%RT)C"(j"ܜ\ mʋ|L,bhFRdP2-*T-BƔIW!KV5s2DS!ڍ$kg+I?(bLbIaYeƷ7uniUcvj7q=1ڽ5e<$ybzBEd22=d3`"5]4*;w<,?YO7y\1לD ̽;Ț;͗,`f`P\öUF|?M\"OYWޒwxQNrYjjnjP&l\Qu+ͺZz6d\e^x9K߄H6'fn27w i tN&e+ - Յ# 7fyX8 7cy@8 ٛw;ϼ,p11o41oǼ p1o޼!x `7cPgol#SHU zX%J K`uŗB<:a"b"/yi%rMA{ >d<ͅ%1znOPE7泞,8K)?*\KjA(?4,_SyUojrCpCU|ȶCagq[gGr+ŏ_Ҕd䳈Ȍu9LgV^(%"i4K]_9Z9^ۼFo?osxAe9d^ZPԲsO:ܪ@~ɼ?㋞U,.&Kw/?PK!Nword/webSettings.xmlUT Sux J0;wӊmDV>@N`&fu2Iclo(4Z`walnu I&SF@Զ=? J 5FM)Zk5Eq FrɣFï$9A_:2|B,ܒ#kE 2(?|6ɂHƅ_LBCZe-Tn^h13}i`um.O'PK E% word/document.xmlUT SSux Vˎ0QִIKA43Hulk ,!Σɔ2馎{9T8 4w;murWwcцȐﮘvO' :O4H,3wc4MXJt;Tȴ)D[ LeZ#9 . 2&q3S{)QyB>傛b ݹA Z )A! o2*=je< 7 dPTWF,qwI(?wx#bpY?ʚ~^)g5FXXVLJipKPd*P:؎te1peYxՄ/GZ+8|~tv|^̅i0ceU Gl 2}FjNz1{^ՠ'hbsLxhSj@t2U :ø!NJ0 ])¢y_ vrI6&ֆ57D+65q/d[{K~eVp Q_;Vez"s*+LH~FJN 6OFr[Z\.wI^r5MFqS$筏1oIްNQ"|+"-˹X=8hY M Ic35!Һ IDrPdӶX^ ސ+>JÎ0-GP?UimMw|J^fQȰIDv@G,>,İTpeUeo]gBLz٧+Q5`&vfe\t ="u^iOujrYwVehF _KfQ߮9]4Jxwo,{62>ƣ%tZYef!g׌&0GcjE.=dŊHM2:8Sx`N>ɥjY':byǗϞOOr RpR/G|Wfo~i*<}-@iD$A 02臘q qS3lI9P xu|a(ƊaTq\cMmYǁٸL; XԤ J{|DAQOpɇ ݡ1%}:Pfk4LLBKٻڜ23JJi GFqtuB.T: O4X=6HȄ9ב;| q}qc?#Xset;$Cpܷ)Q[4 $3 ܏6$.O#nFM@Ͽ}?mxzzfWÅO~vx@C'.~^?%Y7ڙh{H;TFˌ%`2dBM~ea ή'`,PHp G k|J!lΝ*~؜F Rg5VfƜxFkkjֲ }p*iTsӰP0#~\,k/ O9@|u4k7v"+̹kReJr;j戫 SPM>?َB,o69Zpw5/AsE׹Ԓ][ͽ~]CSm/d?Y|plh̔_9݃Cig[PK!_CNword/settings.xmlUT Sux Vmo6>`9:E[xP&7);ߑ#g E?z{s޾{Rrte6(pj&94ghXfGpٻ_y{(xOfnD!+Uv2]܅T'ns(˼Oba2kQ} g6>f s3M@1GTn'KF#ru0)θ 8`4=@ij=羠c(r4T9tԽ Ք %ɮIQ_QCij+ɑ<t<@ eg#QCEHY >6Օ7jV5hF&;n6T#j6Z?Ѵy) Pigԇ_B7+T c뼠Q?P 28ZX-'%/®V~4Y~ Kɴ(~u+/3W1Ţ 笪 L#y2U`uX5yF@L։;)&労ùp6, C_Ei>> s 'v(LfSh/T][WKӺ8Z?1ihϡQ,#ڂzH `ͬ$To'LO<}qEvsM;.~&܌ÀMvbw%l6`lEv4OH)_5혅nLэ%<Ѧ.<[{7*[˸^.ۗ8, (vt#HQ [`~%qPK!ɩword/fontTable.xmlUT Sux Kn0zX:9p "Yh!_.#tmΓmFhT'ކ˵JP0cꜫUfgSYGTNV,A[f:.rփƒ&t}ҒIbGb 68X/Ψq|w[?xz]+Mג)מ ਕ-yewnkjmhʬ$joDFS._Z3)'iy!K{p^+"ALK@E,؆gq3"HKb,s "T[sk@-w< Y.q>0P @X{%ljY n`JlwH\nYn@=ý}RB<3 )5%uΌU;/YMyv}|* *TV\2ݰ%QG1Q[Ex Wi}O&s")((xKd'I6"GH4:m$G}C; PK!Y;word/styles.xmlUT Sux ]S8wf4_ivLii׊Ěڒג _+GGWIJ>+9~!M,W\E8z3 &,»ۏGa4I`?x{cT`:K"EcFfLkD|3HIȎL3'\?4ldr\9e$-R&t5~(JbVv/(%eJNZ/%\leF\*o4URfhXJ0HFȜ3yF(|gf.["Ѫ/GĮ4*9߻2H0s%8[}I̜ )5on[|+?=⯄fBFx>6wk9v@Vzo,]]:pM¾ ھ `훿1oǼ{߼<p1oǼ/ 7fyX8 7cy@8K7cy@8}[@A0oͼ,4p1oǼ p7o;ϼ,p1b y(h `7cy@8 7cy!x `7cyOy( 7fy@8 7cy@m7cy@P&,~gk3A R`ݓ**yh% >m^{?\y3cf>Q]n Wg=2ibm5EذfTSA=UU Oni9~;Kw0n]V?8GAե/gԟW"2MՑF$l;^$&uowMZgGί2Wy`ۋoQ+7 ޛUAhwBQϙ0-ڏڰV@dzf^|vqzDRPK F E word/_rels/UT 4aSSux PK!|;9word/_rels/document.xml.relsUT Sux MO0 Hwv@h.+ qRh*1+Уm}Db}0 ȒZ cKۓK`-d, 02?>Za-).ʴTDAUȐmhI%oz%Yιg@V*N6 znHOb%]'Y+Ph.8Mrz1RWcx4Thh#*~>%.зg3s8A;Kk{߭1)%^qsU;wPK! $f[Content_Types].xmlUT Sux MO@&f]`pP<*vJ7Wv"1\lg}fN2:Y@ٜ.KJW(;)cIDa !?Y{ mY9#bv u&, u /RfmpTv'!Fs]e;m)#Vǐ엶=  n[0}7Vr'b;Vgd͡H#DNi`o|H')ؓ7t PK F E docProps/UT 4aSSux PK!4JdocProps/app.xmlUT Sux Sn0 ?7J(FŐba[mϚL;dIؠ׏YwOIk#l߈l. &T7X~E&+Ǎ8aإ1\q k)9`Ӟ3uH&S#C][wI.k*bP\E`:5B= Zfs :sϣ~PK!lA<}docProps/core.xmlUT Sux ]k0%mDB[a^M̱kXAYkV˼e>yxI^F$)@s# ^s`Px(rn)7^&)چ`)ƞoA1nÍq*lfIΰ wFtR >(폫{jP$!p߼'W`&zz6M4Y \Rw\p`\ ؐ㫏kêFx<\qw;ӞiDԖG^ribɜf4MZ:qgA70/PK F E_rels/UT 4aSSux PK!N _rels/.relsUT Sux j0 @ѽQN/c[ILj<]aGӓzsFu]U ^[x1xp f#I)ʃY*D i")c$qU~31jH[{=E~ f?3-޲]Tꓸ2j),l0/%b zʼn, /|f\Z?6!Y_o]APK EAword/UTSux PK!o%Ȋ=?word/stylesWithEffects.xmlUTux PK!Nword/webSettings.xmlUTux PK E% dword/document.xmlUTSux PK F E A word/theme/UT4aSux PK!0C) word/theme/theme1.xmlUTux PK!_CN&word/settings.xmlUTux PK!ɩword/fontTable.xmlUTux PK!Y;word/styles.xmlUTux PK F E Aword/_rels/UT4aSux PK!|;9word/_rels/document.xml.relsUTux PK! $f- [Content_Types].xmlUTux PK F E A!docProps/UT4aSux PK!4J#"docProps/app.xmlUTux PK!lA<}6$docProps/core.xmlUTux PK F EA%_rels/UT4aSux PK!N %_rels/.relsUTux PK+'pandoc-1.16.0.2~dfsg/tests/docx/i18n_blocks.native0000644000000000000000000000101012645626061020366 0ustar rootroot[Header 1 ("this-is-heading-1",[],[]) [Str "This",Space,Str "is",Space,Str "Heading",Space,Str "1"] ,Header 2 ("this-is-heading-2",[],[]) [Str "This",Space,Str "is",Space,Str "Heading",Space,Str "2"] ,BlockQuote [Para [Str "This",Space,Str "is",Space,Str "Quote"] ,Para [Str "This",Space,Str "is",Space,Str "Block",Space,Str "Text"]] ,BulletList [[Para [Str "This",Space,Str "is",Space,Str "list",Space,Str "item",Space,Str "1"]] ,[Para [Str "This",Space,Str "is",Space,Str "list",Space,Str "item",Space,Str "2"]]]] pandoc-1.16.0.2~dfsg/tests/docx/normalize.native0000644000000000000000000000026712645626061020267 0ustar rootroot[Para [Str "These",Space,Str "are",Space,Str "different",Space,Str "fonts."] ,Para [Strong [Str "These",Space,Emph [Str "are",Space,Strikeout [Str "different"]],Space,Str "fonts."]]] pandoc-1.16.0.2~dfsg/tests/docx/inline_images.native0000644000000000000000000000071212645626061021065 0ustar rootroot[Para [Str "This",Space,Str "picture",Space,Image ("",[],[("width","0.8888888888888888in"),("height","0.8888888888888888in")]) [] ("media/image1.jpg",""),Space,Str "is",Space,Str "an",Space,Str "identicon."] ,Para [Str "Here",Space,Str "is",Space,Link ("",[],[]) [Str "one",Space,Image ("",[],[("width","0.8888888888888888in"),("height","0.8888888888888888in")]) [] ("media/image2.jpg",""),Space,Str "that"] ("http://www.google.com",""),Space,Str "links."]] pandoc-1.16.0.2~dfsg/tests/docx/codeblock.docx0000644000000000000000000002042112645626061017655 0ustar rootrootPK]D ]$[Content_Types].xmlN0E|E-Jܲ@5*Q>u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPK]D? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,:-rCVt):fvu{8PB՟9`R=mW0NK4-i0`ƞ1( ^6&2z%A9ц7NxIa-^v-Q#)9`r3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PK]D4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PK]Dkgword/numbering.xmlŕo0+HP,(P--v1\{i\ZtY3yLUQcm/R6"c dHkX)`3#$-6_2a*[;iq" CvKo1g>Ea_u_80 ghJ,ƿԖѴQ)3$|B&@݈P .  9YaE|!s U[Nwj4DtnPL_^ 7AuTw9T5_ `8*F-I/J.vwj%f{B}:ᦨnTtJ%d}| 1v\u+x\^%Y}]LQ}qY) vjiXG=z@Úh^g> tCvq@ [@/B/XƝrVP^3^xJbʉ«ה(FI 3>Ix8e_aiZ w-#%K\훣&{-Ӗh.@+)ONۙ$biXX?оz^';T0 q~Dů[n!įj=LJ''N4nPM0*8iߵǭ,{|}6Trlۮ)k;e}uT+&TC(_1Ncߝt:1. ۽=l IC*м>;Na{Wj<\ޯ qԯk)azKvZ)$xl jv뎨/,D";{M= wM9}ó-gHqh2n0̳*\=8/WMc>a)r4U+,V'ie괎h߫A&lPcڅyS/LI/DxF?5O^$(ΐCHw=ioPdO(dH(gƴ16 %Cyr,RiM: Ge~- =D<_aj!xDc{/>?7qr-5%I^IIIfAerŻ̀CB0a{A(V&la9o lX܋44DU^Jǭz_b S}{i54P?֛!S/ﯿ=/PK]DudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PK]DdNFddocProps/app.xmlRN0+܉Kyr]!)-{X8enӆ 8fm1Vq5/ pkUo.˵l (piUv9%cIuT!i|e67Qp[.|~#ӠhX_Sݗπ~bVG gCEئ4jE#mξPq麓}Mq񂳡"*!K$9>M5mCodÆ%3>&.9W8B<.Jq׋&HWQ2$V>RĶ>(`:PoOKgikӃ8GV5~1y88k ~E&@=T̰'PK]D= word/theme/theme1.xmlYMo6Wl+u:E֦ CDKl(Q $ qaݰ ð@ l_EeSۊ5GKҾ|8"1iܵ أ>u{4бl~pnEHt7` H6l{r4A|7,BY` I)ƚA[ Z&!0JEZs"?b }Oi 8?>}!$]K ȅ|ѵe`QCֈC7' ,Lg^]jhf?pJ =Oz,Î+jqYz6 MCk*UKNcլ%]U nIX[" / ,̖)*0JPl2ޣl(*PY&Г>$x̰7^s_K1Q)1/prO<8v ƁN{=!pۏ5H#?47أQA3RF!:e+8aJ2"o &`Uy`D^ޫ&0 w(%=̎]WXLF?= LY(Df(FB&]+NAbs`Fx,̬k8 mDhQbTPL 1 Eͫp*`dFDހ"4?c^%\ȤP0F-6|] ! e7 :tC%fqXv0Ak&˄>w0g\q%}3e^_ծ#٭[hײ;>;֨d,kc=r2=yN]%oɯX+7Z jOLȾtͥPN"'$s}`zCH=R\vABIXK՜[&%g5FURk]z]uN\Qs_b*Z37{ ?~.a)*>2k>:SvX7cm//.WGkMLDcH<(qDKsrn% b0W*qBmތa/fM&530G?c2e{PZΪ\2oX]2Y&_>$!˾W@WυjgN_ZoKZt Jn Ne"%!L2ikC,~ ^=e!ChW䞞"͙w|yS̓"2JZ E[cMkl ˇ9wRU,b[auXe_6knȋH?d##vDd KB'_XZKeSGN]Rx.(<]CSm//X[OUt|O*ߖW)fx"G.|S6&G#Hf5u;3 .jtkg]wkK}5p?ӳPK]DҟVword/settings.xmlUMo0WD9/%|Z-PCBMwǙG!KN NjhO'f2[u 2fz꾿-[{w3 :Sw@ [Q%LLJ$aT1& Rt+3HKV'BҝԴ7l+`yz2m͆&_^pw+KWk+ n dM5yN3QF/!p E Sw߸]r "Ã6 25".@΀㋠VkE BNIay,pɸ{W<_4oC}t qFjGFٱ"9X$ 3BkoPo™89ԹPƦBA7o)KQJry\Lita` _1jv * 8źڽJit<gwG~1b/hp~vGC3iϟ 0*m128wyT$>BXj"w i%K'oY+𚜺dl1 wQ˚\l"6ߠmAgR!1#\ ɲӸFEa‰ bM\uOqCh].jkF\b[_c jlhamhh[r,Dr.sj԰ BxQm5ϙ6!d(FV/}PK]DTΜword/webSettings.xml];0DrOl(M"L$loBAA9FS6/ ,Js-GJo$:+bG)1!VJ)-R4 @`M'a:h}T LqkwWa gsZ^;PK]D ]$[Content_Types].xmlPK]D? _rels/.relsPK]D}word/document.xmlPK]Dz0dword/_rels/document.xml.relsPK]D4o}word/_rels/footnotes.xml.relsPK]DkgCword/numbering.xmlPK]DY.word/styles.xmlPK]D(*bs word/footnotes.xmlPK]DudocProps/core.xmlPK]DdNFddocProps/app.xmlPK]D= pword/theme/theme1.xmlPK]D{H: word/fontTable.xmlPK]DҟVword/settings.xmlPK]DTΜword/webSettings.xmlPKopandoc-1.16.0.2~dfsg/tests/docx/track_changes_insertion.docx0000644000000000000000000003123412645626061022622 0ustar rootrootPK! $[Content_Types].xml (MO@&Wz0ƔM.C~dgJKZ2 3J<*kROz,#m,eEDi l Fˋt#6"w9:0t[E[?N1~piMPir1/C4^C,_R&+Hd\CBwPV*h"|x0gV5iy$4V"eˤ9BA )jT(y>vw餶ثv(SLqWUDX˿Qw4S^ 0F"м\gsldYdLuH݂c9>(hVDۈ5{A7t PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!|;9"word/_rels/document.xml.rels (MO0&һV]ٲ5٫-Sht ʢ.MfIZUq"=loO.Y$m.+gAT!,MQH(XI\qZbaG;_K /x#Փ,/d}?eh 7)mg;kk4Df2/wBmw4A^#࣡FkPܚHxȽAt~9' ozWnMtVWkJlNWz^>\PK!u-Tword/document.xmlUn0?ے1A,ȡ@^ $ )+wH-v R@Er͛7졮-F\xKŒ,H`,@%y䆜~9m XSsi&m[Za%ւi0):<-,Eqƍx?RCz +]SkzӨ +jZT>"v4``I-Ӟd$\ҎP?  v>by@R]Eˁ$u5ص*N)皶X bdS]u:1^K9Ә 9|L}qF||_ihHGϡ]͈.;EsS38w%U5K +dIN$YaXCF)6vI8Y\a紩ۉNMt%Hkо85p4 )52$47\o9Yݗ–󲝯"2phcKve1ɸn-Q{%h>QDidm `e|#NRظwg|$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK!EYǓword/settings.xmlVn8}_`AsIBƻ ⶨı o )+wHJQt`>3á XdGyle/YXG$%\Iş&BRUsNYfbʭ284]&UBƙ;d)EI` 1w0?m~/,u6 pj5c01mJNKqolnP:|^o~\|=X2R'QrSW 6DkhtEr\a(N閣ntuჴX j<̲IvaM|˔XKdPK!ua=word/stylesWithEffects.xmlmS8}CH4P7m60Zm@>$[1vl߮v_A7yI*dp'#O"zXwp4cS{H瀧ҋm-MImxPxL:;d8d+2;DzRNx|ƣeՙ;V=Z݅˒26ёV"_+1`82D|ey& 6YXt'mH'|p5 &B& kńKųh#|G)wϿ ]Xde\B<+SIA:*P.vޘ5~ol8S]wt`LET @%z:p;l.ýЌڨT%>LUuGɪ*(( HxF~{G49cZUtgD@Q@+ZsxZwK,*ùp\fT;Ξ!7,1 ;q>%v=W1v0odĹO&ߤ4^xdl U텝LzL_D砳gl7"˩AF΍\ChLzP `=mi.t*M+:>Ӹ;d85'+d蕇9y[."Q"1'\z憩Sr.v:Ja(zc!'&{SBDX3k@d;0h{|2ЂP{гRn"sIeaiE=~GG аVHGDSp:Ipו\i% ^ד!3{N\,WU\BoBPqG V|E}x߶@(o,nDu >^׎dnw{(ދ3~g$xx9զp9K!l+fMCvIČ)W/e2n5|;=fj%L}@\{CQ^'QxR7o-I9M%iκvw?oPK!yI}docProps/core.xml (QO M -ŐK%&h|#p %]9| Ϋf%`D# ](@NѪʅeq .(I$τ->0b,:Lwz5۶y#m܏*J*s)pCJ0U*O܇MN;M|࠺w*ieՏ64İl[y?lרH2l-#佋uq ?s%P/?LPK!Oz Gp:word/styles.xmlMs6Ȓ\D8NҸNdO IhH%bA4i&s}Ż zsGJ'KdP%ۥswˍHBD.{o^˫۳G2@M&y_T&pX̶XdQTV2_(VfNX&O2E;kk: L28rba(VAs1/ĚcGgDgbNO0rɍG&UV\WNLݞe2T04ȩsFkb5gW6\ເ wŅoƘWiWi;ly[=ZtG9+ .4ؓO{?O<%OٱxQGFMTcaZEbb*]5{e_g-G\&sI.=m2"\cxXcU@hX)dZ}SD:dxqdز\V1L;2/\x%`IX\hMf$PѩղnXMjǨu *Woh&ohxCo VśW8_KPU 68+~3:=v&Pj7ŽNxX 'jRqěG qěG qě.ěbkCU&PM+mxRqt&Pj7ŽNMPE*PU7p`arsG #8M#p'[JM7ĖTo O7NƟ. ;@M&Pѩ js;@5V)`&8#oh&w?d<&PjjU \&!xf.pɍqOXkp8)θKD{$x-381_xqJ-@釾>PK!TG[word/fontTable.xmlܔn0}{,JVȁTEdhi"*I[;Pth.yY V렝j}.y|݈Y1m!:9LR5rw99',Dkf|+i l了&LQPWp U"#x1FSvR0if)8*i[~[<ӊ2c"Ჱ=#VFŶq {$R:zJY r/@$ NIgHeIC},O4!0,ĕN597*ddECUfCQ* Qd(>4Un@rҧ\ KPUV#qֹ&dAR{vM?}yps}=Z>!x58HK9߰VőM":4<<58W,w(AdKz ]`)jХocS4Y} JxGyRz^)pl7߷k[ ݸ!CS"`SdÿTL4ijnb5f#ȌPK!14ǪdocProps/app.xml (Sn0 ?7JFŐba[ mϚL'dIؠ׏WvO4HKod[׋ټi[͗uHVYp]1;>`$.=QX {fv|qwwxs|~%е^a=v\^g}9,>XE(g9D@I(LOܫ̍|l1UT:"!X'Qu7ܾʿ(K٢~r qvQ)V7|m)Hap5X%zYW?Tlֺ>h#6-mHecro΍˲e6kfrsu ?.JQj!t>(w'L7yQ^=<'?o<-*\XRmpZ}HwnMVn-")/ZwB`4 sDXj;A*ʝc֝4[S9> {V4pW&A|d?PK!N _rels/.rels (j0 @ѽQN/c[ILj<]aGӓzsFu]U ^[x1xp f#I)ʃY*D i")c$qU~31jH[{=E~ f?3-޲]Tꓸ2j),l0/%b zʼn, /|f\Z?6!Y_o]APK!word/_rels/document.xml.rels (j0{-;mC s)\[d{CcMZ}EJӃ3bgz;5$uoZ'ijA#zw7TbhXqЄ:-)HAVEH%w ȯ2ٮv#b?ٶi _mhFH6!SIIB4*\}u.l|!8[s˘fpf6 Y ٚx '~PK!O word/document.xmlVn0?;+&Ms(ɹ)J"Hʊ]4@Ā/ ,gwv9 D*=~X$2Ĥ pGLxN3+N BVx֪4 . GSG2)&Q-u $nfJKL_"t5TDK͑G]DMkʨw %CCom3x4aQ6ˎd-g]i5ը'<&oG6cQGqL/}vpDEC9Hn2y_UV{-+ճfN;"J3*qPњADP:\@YlF)tbM^DqIf[QGmE!pv}NwϜ֠ btOҤ%I0k&-c( &L?oE5BŒy1IV֪qcpbN`%5'eTv!"Qt7rZ6FV֙eUOmL.eQsGh`fE*:Y5gQoM(w#ubqLz@iY1@|% %zWhMi?9r`1455 OB_-$gJ,%H˯Rf@648oDV K, l0I^0 p3^j‘Qm2#f>e4 M{gH[8=3IR@DdD޵ -QkZW dVmh*71. [kj[77*R32>(=mbhPXS),F),ڝ0s7j.Kp֚Oz_Iu Weg~ Q~A&Q/d@ȷ{[3 kMKUsWĶmhUI5GP-7%qb>p&Q5MӬic,Bu4!*sQ)Ṧ5w4rEGnqͰ"P0*fs;ACPŗӠֲV P#t`I=T2`,J|덺0m.`ԾHg=|֟Nl0~ PK![m word/webSettings.xmlJ1;,Y-T>@ζL&̤kH/I23; X֌ yZj|pm*).-]قl7=,)*IYků )Cǎ]ђWnfW"Pv\Wf) u]pK~ʮ2D):dSx<>=t!3 ue'Q>w'@ܯ[D@'3S̀r >`N| v1RpPK!2ߦ+aYk4C-cI+e]oc~O#i̐+I:r SkP_Ȫwc?Xf7W _e?c|鍩3O"8y#OydJ<4%x3N:E'9D媜tx-E0R?B 8li?ս灗#C\TS]eP"(5 Cck|5$&YƬPy[|Oxy +.qL2-V< V<2ᐜ.e71̗ K󥁂y:e::%3ÿ<̗)/?S0_~`l.b /3$OI y[iIN\ލ"nHy:8.qDLgު&Y>(c=[ 8ʲ~63u'G*\$ G4n+򶌧Wt.`X71íՂf>߯gi2+UEʣkƻۍ73^GKXv,fyӚe[<#]#zgq6/Z7Hk&۸a&*AO^Dޡ$+QW'ssp8ܛ*hږ%om2KܼlI4#>ȾQ{I5o6PnhGҔ(]m%Khmީ5ϳ~+t=x/ Y[O&wmre5++B`UƧ*+]\O,㳒y٤%g6]e([D mR?Y}˨sajS۶L>Ǵrx ЉhsEkLVCkyyvm՘ťt{W"b +R?\ؽLOʧIZS5v);C~ }=a:Y׳;:iXd[n#訏~ozELͿ4jb[r=X.߸|c|y"6y`"Ř(6Kd"'dUN j]w$=2M0#ua >/n\Y=v2nc L fr(:W;ԸR~S?1ل}UDvҠPC gJCAV}֮jvY :xzGIV\G4INiD?'RZb%{ǯߵyTʩ7,a=YeToVj-F=׉A}mQ 뱰~{ N~su ^n,>ޖ<}CpfS6s]AƯ9InWߵL^3 AxclPm 5>tkd){PK!vC7docProps/core.xml (N0Y TUJTJ,*faא8m{TK@o xp,Q9T=D|x>'< NAQ" Yd+c4+$ ?$LŬ] `O&fjf֪cfS3 鋇ΩbE1F'Zk`:"Z 9Dg 3  d@JkA݆F ;WtYgFt²,Z#mj(d+(M8 ^>2'Gl{%>f-tꮫ+w[]'wSܝq/~Ocu .вee^0-f:n{7j8 KIdaW;?9nMYV~}:B0"!B>xc# 0_ a>q h+PK!vC9j!word/numbering.xmlZˎ6?(aM St-˴MD$3L>_(E~%wL9S͆/%yIϻ_qB#Jw$ ] Z=zV'1Y)%ph=z/vsDÎA.K֚l`y81J'tD w-l|M` ?l*so4DᘋWq̾l;=9g :6 JwPYh{M 2Ce6%eizƵv4-Nu]fLXkP _W(R#^3>Hpȡc#juܗU3q~gtfɗ"U|<`>LD N+BYImW'[2 fE޵ҭ^͐~2cF@o6GH#!D(iګu[?Z|(li͹(VƉxYGQ'ٷX}{uNgLȌ!1G[<ό10Y#6^ǚܜߞ߾_˛ oѺϏX; N'tuq^+#NSվ)'/-81L巋燆"҈ <<7Dnh!'[=#}gD*`^^;J騂v`궯]Jܖ]G%L_TYo[`X V[*qzEV.pTPK! word/fontTable.xmlԔۊ0 }qNf%u7P(n鵢ȱFěN&)1ZHG3xQ2r ){ ff%zJ~ш~!+=څI+T ;(@%+ZsjC 2BEZ%Ƣ:U5S5>S%~@< !0#gE"yo* IMnX "LmSYߊHVrߢ:f M^q~-mqrǡiu@@aЅjψDO/ P_^H`#i%EP[iҭ_{O<6L/ȗ9иy%t@`?,l!96T6.ortNfdwsGX%, <ӿӧ]Sc=%N2OPK-!2oWf[Content_Types].xmlPK-!N _rels/.relsPK-!word/_rels/document.xml.relsPK-!O  word/document.xmlPK-!:K word/theme/theme1.xmlPK-!-)2O hword/settings.xmlPK-![m word/webSettings.xmlPK-!u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPK}D? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PK}D4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PK}D^{iword/numbering.xmlŕn0 {(5ᣔUU4M;tB"%%vo?'+tM\`bJ\@-צTň*Ju~iuYF7 e %3 bJKfaORU΍L)HHiB$+^CMv0Vܾ7=vE(Sk&9Fąd#l[._5D+&X ȭ]¡ۻxϯ} ݯy팅oʸ]urLN:ᙩ~#Չ/H0 "D ` 'a x%M Lc`i`t&10I`OGd8]g@_OkX)`3#$-6_2a*[;iq" CvKo1g>Ea_u_80 ghJ,ƿԖѴQ)3$|B&@݈P .  9YaE|!s U[Nwj4DtnPL_^ 7AuTw9T5_ `8*F-I/J.vwj%f{B}:ᦨnTtJ%d}| 1v\u+x\^%Y}]LQ}qY) vjiXG=z@Úh^g> tCvq@ [@/B/XƝrVP^3^xJbʉ«ה(FI 3>Ix8e_aiZ w-#%K\훣&{-Ӗh.@+)ONۙ$biXX?оz^';T0 q~Dů[n!įj=LJ''N4nPM0*8iߵǭ,{|}6Trlۮ)k;e}uT+&TC(_1Ncߝt:1. ۽=l IC*м>;Na{Wj<\ޯ qԯk)azKvZ)$xl jv뎨/,D";{M= wM9}ó-gHqh2n0̳*\=8/WMc>a)r4U+,V'ie괎h߫A&lPcڅyS/LI/DxF?5O^$(ΐCHw=ioPdO(dH(gƴ16 %Cyr,RiM: Ge~- =D<_aj!xDc{/>?7qr-5%I^IIIfAerŻ̀CB0a{A(V&la9o lX܋44DU^Jǭz_b S}{i54P?֛!S/ﯿ=/PK}DudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PK}DdNFddocProps/app.xmlRN0+܉Kyr]!)-{X8enӆ 8fm1Vq5/ pkUo.˵l (piUv9%cIuT!i|e67Qp[.|~#ӠhX_Sݗπ~bVG gCEئ4jE#mξPq麓}Mq񂳡"*!K$9>M5mCodÆ%3>&.9W8B<.Jq׋&HWQ2$V>RĶ>(`:PoOKgikӃ8GV5~1y88k ~E&@=T̰'PK}D= word/theme/theme1.xmlYMo6Wl+u:E֦ CDKl(Q $ qaݰ ð@ l_EeSۊ5GKҾ|8"1iܵ أ>u{4бl~pnEHt7` H6l{r4A|7,BY` I)ƚA[ Z&!0JEZs"?b }Oi 8?>}!$]K ȅ|ѵe`QCֈC7' ,Lg^]jhf?pJ =Oz,Î+jqYz6 MCk*UKNcլ%]U nIX[" / ,̖)*0JPl2ޣl(*PY&Г>$x̰7^s_K1Q)1/prO<8v ƁN{=!pۏ5H#?47أQA3RF!:e+8aJ2"o &`Uy`D^ޫ&0 w(%=̎]WXLF?= LY(Df(FB&]+NAbs`Fx,̬k8 mDhQbTPL 1 Eͫp*`dFDހ"4?c^%\ȤP0F-6|] ! e7 :tC%fqXv0Ak&˄>w0g\q%}3e^_ծ#٭[hײ;>;֨d,kc=r2=yN]%oɯX+7Z jOLȾtͥPN"'$s}`zCH=R\vABIXK՜[&%g5FURk]z]uN\Qs_b*Z37{ ?~.a)*>2k>:SvX7cm//.WGkMLDcH<(qDKsrn% b0W*qBmތa/fM&530G?c2e{PZΪ\2oX]2Y&_>$!˾W@WυjgN_ZoKZt Jn Ne"%!L2ikC,~ ^=e!ChW䞞"͙w|yS̓"2JZ E[cMkl ˇ9wRU,b[auXe_6knȋH?d##vDd KB'_XZKeSGN]Rx.(<]CSm//X[OUt|O*ߖW)fx"G.|S6&G#Hf5u;3 .jtkg]wkK}5p?ӳPK}DҟVword/settings.xmlUMo0WD9/%|Z-PCBMwǙG!KN NjhO'f2[u 2fz꾿-[{w3 :Sw@ [Q%LLJ$aT1& Rt+3HKV'BҝԴ7l+`yz2m͆&_^pw+KWk+ n dM5yN3QF/!p E Sw߸]r "Ã6 25".@΀㋠VkE BNIay,pɸ{W<_4oC}t qFjGFٱ"9X$ 3BkoPo™89ԹPƦBA7o)KQJry\Lita` _1jv * 8źڽJit<gwG~1b/hp~vGC3iϟ 0*m128wyT$>BXj"w i%K'oY+𚜺dl1 wQ˚\l"6ߠmAgR!1#\ ɲӸFEa‰ bM\uOqCh].jkF\b[_c jlhamhh[r,Dr.sj԰ BxQm5ϙ6!d(FV/}PK}DTΜword/webSettings.xml];0DrOl(M"L$loBAA9FS6/ ,Js-GJo$:+bG)1!VJ)-R4 @`M'a:h}T LqkwWa gsZ^;PK}D ]$[Content_Types].xmlPK}D? _rels/.relsPK}Ddd#word/document.xmlPK}Dz0Xword/_rels/document.xml.relsPK}D4o}word/_rels/footnotes.xml.relsPK}D^{i7word/numbering.xmlPK}DY.word/styles.xmlPK}D(*bs word/footnotes.xmlPK}DudocProps/core.xmlPK}DdNFddocProps/app.xmlPK}D= fword/theme/theme1.xmlPK}D{H: word/fontTable.xmlPK}DҟV}word/settings.xmlPK}DTΜword/webSettings.xmlPKepandoc-1.16.0.2~dfsg/tests/docx/track_changes_deletion.docx0000644000000000000000000003204612645626061022415 0ustar rootrootPK! $[Content_Types].xml (MO@&Wz0ƔM.C~dgJKZ2 3J<*kROz,#m,eEDi l Fˋt#6"w9:0t[E[?N1~piMPir1/C4^C,_R&+Hd\CBwPV*h"|x0gV5iy$4V"eˤ9BA )jT(y>vw餶ثv(SLqWUDX˿Qw4S^ 0F"м\gsldYdLuH݂c9>(hVDۈ5{A7t PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!|;9"word/_rels/document.xml.rels (MO0&һV]ٲ5٫-Sht ʢ.MfIZUq"=loO.Y$m.+gAT!,MQH(XI\qZbaG;_K /x#Փ,/d}?eh 7)mg;kk4Df2/wBmw4A^#࣡FkPܚHxȽAt~9' ozWnMtVWkJlNWz^>\PK!"ļiword/document.xmlUMo0!hJQ.aj^2$Hl6߱-UUZ )=7puTRLh)^.$0R/WuJ@!IjŦV%ahX5Ê3-*Yi8FSZ20bK ic4@`LZ3:+5@tE-_bGFNF%4 !> }╺MuW 5A SpQ4XtoVeWQ|T5{#WHl|pw%(zKLsx5;&墇5rz:^{,w1O`M;fN8U@%JdTH2a=UP'8l_SEtKs覴n,^\|ڥ汐/8NI8 ;['ukɵj IxuA+$N~l&V}HlF.nl!q~)(Rj]<&r%8?: q~̡|cJg"'?MP x!uʻwW'tbeKi0@fgFci*`Ab6Ujc߅/%[p=nB4 <JZ+w n4lgRڃ|cg[VKi-ٝ\ YM.l$zolo!fPK!0C)word/theme/theme1.xmlYOo6w toc'vuر-MniP@I}úama[إ4:lЯGRX^6؊>$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK!word/settings.xmlVn8}_ 蹎$IB"Mı o )+f -djf\>{w/xcUZiUɮJޮo:")JB_v6C3 iKV9]fmw =R$*t ׋V Mkg-4ݨ*,G Z:)vZ&yI܈^t!bfcJv&7,q79?W^n(,re%y6kq@raMzG,μ+y8͙[i)ްnjYIeHÑTCJϑQߔPj0- iX֎8@ygˁ Ȭ*qw_`n9A_^>HE ,;ddz wo[ͲIv2N'CËdpᶘ^U蟓JbhQ%lVe[&qe}ͨ ~ /O=|a=:oIJΠ{W.CIe y9)% :xPK!Nword/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK!3/ju@word/stylesWithEffects.xml[ms8~3'4fvҤ/i}sKV c0'!}Vvo= W̝]GFZ̽x뤙"P2u߽7giQz{3wehzk0Djz*Q%x2ƿDy2MBD"usqa]eX+"KUr7 Er@z,2~ ǧ5s7It+t`KΌBG"Y׬T&QDҵox40q]fCI ϚLe"[5q{6ci߭W'6crhV &#+e[S\ȇ>g6U'I, ƧyeRZ"zgWwJ"''H-PRyr%6A:',uD PH }#V"B_;h f~lMr`eXt' !mx+Ww/ ^\Ă۫W 0}Zc\'Fc_ʿ2Mr;#2t.S(OAX3%vWh QA6V3PA ȉ^9+Z t-*rYq_ī"0xŴp;5S >n YE+jAӹ#+j!ѹ+j\Qo犚;[WxEǸľJeMzR]^jkDkG֪md9,2H/'y(}:u_x-R]@=F~?NPLlƒvOUs#G*gnNtgn9p0%aӛw째.$6e/robkS 7W P-:.gWL —}Lߔ'o c|4ˊCJ);w/T&(r 4IlHbt=Q-2P0(lt[NބaA#V?eI|b,mϚ|ܰPHgu8r%thh GE;>P W @ |5ҿ82شllf@0P$9uvPnPީ2[7 XMVChQS9FfȞ Caț4 yw7pMbs2yp 竾*7 ߌRڿ@M@a{ X8 ,Kuaț4 y!o0M @ɻd8&`rj @lz@e&7%o_NM@a{BJb;eɛS8caps  Caț4 yw7pMbs2y`Mbs^dM@a;Nw*jyvP˒7 7ypK8 C!o0MO Ñ7 SMbӃ*7 {s䗓7:yPީ%oA,Kuațٛ @8@E7 C!oP XlnZ&o,P @lnl(z! [ d'QsȕLPv XX@lwh /_gSjD8t|p>: ݛ7=Tn$8zf1r- tkWmWź&bSU>Qo@ąu(o XtD@$^nl[2 53sGULooSW Bsԥ!l3*ZywqIQB ir1V26O8jOCYhh.d_7o I]9m7$]׆Ptn;b"_ z-}]s4b$2@kϏO>Nkj\m'ab" ;3FU(t`Wgy~99s綉ӌo-~vxۤ,Yyٺ⾽48f6]dG?PK!]_J}docProps/core.xml (QO M -!mٓKLq]G,ۿ[>^^ȗGUGN6@$IQ7B@oU|"n4-ۛ /1`v7cKCqX|(m 㟬+L0pHDg#|ٺ;Lr^蕉SI2as)[AG'Gc۶I;coϯݮ82r 7][`͜_]$[{xZ^hCCQK.iBey.nCtNh~twubvM>)PK!=word/styles.xmlěs8oԱLN6GZ's2ȱ.|VX``7й#iWŎۇ8~4S:'@*7^$N�?HfH8<_FY^LR2"۬E*RhrxxfR\@&IGNZg[kk: שdڋJqPTgzɌFt888Mt*,+\Mg2J \$ϼSJ]ÒXgI|#EeJo~(y| d ?2't!?l[ v"ndrp3/f#2M ;Ez0?3F8Ҍ;+Z0#01F#ep27fi& l.+31 wd8G4\^J3+ÄƹGl&YPM&ço@o2@C &rt";QO *6ERVRM[A8Mǫ<QMoZLGll\6p%dMZuMgZtDgZt9GͿ=jljj6#i иƻMzZvX76Tޟ ;Q/m/&{SU$Q(SZ>X2ܾet[?UWr;a' ޼'nt'!.ۥ!X=g!/ѱqQ}wu82.S@·o|LMEϴOM\ϴ_Ҽi{M{\G:]n蔇){;m MDb;|s)O:ʠa)sa;"{cƌ& V?eآ]Pg1n2@va ޡmt=i<*2K2hG ;J+;%>_dB!>y\NC'G-.aؑyVf⥀&a6B=o(l&N%I` 7 죲r&Λe{ h&oh&w7d8&4,>@e&`ծhJě@a;. ;MM`#HXÈ74x@È74x@È7_!É7e&@e&6o\ MSTJ`Ta9&N0, nΤoŒoh&oxwCo NSMMaxfMTo흊:#xX/śG h&h&oxwCo NSMMaxMTo흊:&XÈ7[ | E7 #ބ #P '[śb˃śbk9g ES A@=g=@ND.2:+}:'p;C!Z? ݓ7P=T.$S8Pޞ,7֠@Ȕv%@X%w AEYl|A,*>;Q XTD wN@J2,N?Cvh;7'[ƌ'[GW,ReȖ$B :3|?QY`AZ͏FrۻC̀S :nq>K38I6BPղ_XkC(PWyl;mw"N$5X{?k!m#(۶=P)kBgG" 1cwl(?;3Zt,/dW9>)ϧ"NӶљ`AbdU֪ 9U,M3l.ݑPK!>@ word/fontTable.xmlܔN0'VT vuZlGK w`0I6 (VKyLdm<&q9ѧVy9#,FW̠Ãoa5f(hRk2A̶ʙDiA,|s_yoQ%rbg^!=TMTTpʎ]&my,E%MsR+6Q+ZQf Yd \62A&$8ʨne#ID(Ad{`.[yRtۦq@FW_CeO SlsB CnvQxDY#|DS6/1Z^Z^^,t1:L]0 9.L]ڽ=+nqS3V1/#PK!docProps/app.xml (Sn0 ?7r(FŐba[mϚLdIT׏WvO4HK}Pl* 466C,BܔG v:Qa( ѭ ^ eZ{)fVIGeU]1|hl.ܰ:M+X Pcﴈ$9L@mе/؉Mo6v :9)o_߁%@Q>{MIH/\m`/-]BF4ҝP$PF닠~P/ڔJH)v!z^7xyY*H 9iĹpM?.sIj&'nm93"W۴(ПTNHOiGyڽpGn{Τ1lN5'B=No/WqNxPK-! $[Content_Types].xmlPK-!N _rels/.relsPK-!|;9"word/_rels/document.xml.relsPK-!"ļiB word/document.xmlPK-!0C)= word/theme/theme1.xmlPK-!word/settings.xmlPK-!Nword/webSettings.xmlPK-!3/ju@word/stylesWithEffects.xmlPK-!]_J} docProps/core.xmlPK-!=1#word/styles.xmlPK-!>@ D+word/fontTable.xmlPK-!-docProps/app.xmlPK 1pandoc-1.16.0.2~dfsg/tests/docx/track_changes_deletion_reject.native0000644000000000000000000000024512645626062024277 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "text",Space,Str "with",Space,Str "an",Space,Str "excessively",Space,Str "modified",Space,Str "deletion."]] pandoc-1.16.0.2~dfsg/tests/docx/track_changes_insertion_all.native0000644000000000000000000000034212645626062024000 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "text",Space,Str "with",Space,Span ("",["insertion"],[("author","eng-dept"),("date","2014-06-25T10:40:00Z")]) [Str "two",Space,Str "exciting"],Space,Str "insertions."]] pandoc-1.16.0.2~dfsg/tests/docx/dummy_item_after_list_item.native0000644000000000000000000000015312645626061023664 0ustar rootroot[OrderedList (1,Decimal,Period) [[Para [Str "One"] ,Para [Str "Two",LineBreak,LineBreak,Str "Three"]]]] pandoc-1.16.0.2~dfsg/tests/docx/dummy_item_after_list_item.docx0000644000000000000000000021106512645626061023341 0ustar rootrootPK!aDե[Content_Types].xml (n0ED(,g@]tM#g&ȹpH]-֐_a5xZ}+Iy;@q?a4E=bIJz Na"xiBr5-dTZ<I<: 1=BV-->$hQW-TՊTǥ<:T\Kcy֡lpI@1U+r&5T/˜ Mc5ZLA"ܵU?'~搸Az,Ү|--'MO\~S]竃ųڼq1?(s;G,?oFL< ҄@>-B77b8)gΩp{襳 rc/%4?}J뮺Bw1`x6~PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!iNFword/_rels/document.xml.rels (N0HC;q[Ԥ@8:VM\,Xv:U ֕h6,#1+M $l T!Wq +'Ν,@ c (Z/mk!D|4m{ͳy'_FJ (W -IJo*lF=)!n@RZt(6?wҽw}T(>h+19qї&3H=^¨O:?3ެ{F APt@[-1r';)!>րؔ|w 3?PK!޼word/document.xmlUn0?ǒ% A7A.F Z$@RVݯڜHe{oH7ghCHtLT)xwrc1hG p$jN BQY*kU&fid(hFF'bYרi|Po,4n#36߱"NtqPxZg1۬7n{(>|߼}iUWwUaEPR5F4܉Dsx,2߹ Ghŷ5;KF7L-Z#,E_j&JQk)7XY-\M9u/opq9eYC z|XsUTuD ]ƒԧ^jGTPR6-ޏ{N̸/\?=)sF> WOcq R쵵_: B-4˚b g0 SWX`=nC4-+@ki㼵߭ RڽiY[?efLRȲc]kZ Kj3`Œ\L=FnJ c#*Rl-9{U,F˯ưƗ&6#?m}OU}IL93]EZĠ5+QL€y<\9߿ zh4|2 ܚ}`Ժ%ӂD;@+IQ{"tYDMB3dYi/wF(]|ח?aηo׋ar# VWnn d3i Z*¨qS8P~IYgyEPK!word/footnotes.xmlĔn0+6V(6J[}ט`{,ۄw d xye+0)DȔ٤D>pLNzr G0>HIM(Vt$t~,F tz0>X+|[حԦ >9U\'Em߻%gƊ*K?ӱX\ʬņ6İ,ǺO<~>N?-<~1oVY'PzƄn^zIkˣ%c?Bi]٠~-R|@x-*f*yWҰ?KQ2pKyVˢAZAYr =w$B+{o7*-,>bp2-hӵR* 53^tfXS ,)~T6*[G9:qS\n݉!gTZESRe#/~zL* u.CbMΣ]TL,L0i"DEVC<#$3Qi[$͞Pf{Vp C:ONU _'sblx } .n328c]?Kfb!ֱ?.>hcυ]i#_BM^J%f1LLS~{+;w[i}cʓ;W7R@T0vé# Gmz6gOTB8.T n-JzoNν;/+xJN@  ᵶy ]ɋxa36< uȘ.߂ҝ N}6pqi{{1kֲMxQ:ɼ586g_c8@՗[@0(n` ' E2FR}l%~e,Tp=#ڭ=jCRھPb诊 +$n5TL_0z^N#m=PK!word/settings.xmlYKo0S$#!Q|>_mWQ7R>ieQ@{`Lӻa}xG&jo7CэCæw`ʹjW?fC6yl]qqV}Qi]Y#"-\֯Mwm;4 ct7,Wt^ Ϻ)N//윏.ft}e7SΒ\*pgH&]W*~j~g{3l25Miw#,POZ3oLyۏ>!Ue!qqŴ__ $Q:{3JOHLސ(MBGmv,5/t"fA=Ibqb1\',5KcXudJ+JP9r<:TsdND{{c;(!ՙ~ t:nnv*a;hm-OOO?K}PK!4-word/fontTable.xmln0'"ߗni7kن߉ndN|99?}ËVA8/aV]W7S̖)kD£w&k2jB3?0NnjnułH%1OPgqE!`^ bGk|)+rqVr=U맙4 Όz[,B;c(`W -:pI=7LZ䓨V3 *fjLSN- ~26Nd΋V.xR] <d3XcLW+*$GKP CY $>>OLrAa} AA: D\ Ē)qrū&I F u$2q+?"q b'f%7 td$>kwgcOF^:l,g@1 m™PEl[DsJ%_NDPK!\Gnword/styles.xml}rƒF?01cDw4m1vs")BCRn~ RvK*Go'|(߿lwW듇Ï?nc[}yvsl)wŪ}zzqlB"|+XӶ-ڷr|ڔ|I?(ǬXs0gC cؔ~7̏tD?P)qu{\|dw+@޷ɿbgϫݖ|ް5/׻mۇl(/RX7mqwlxsƮA&s Ų8|tG>+2*[~+_'Gi0'i -~_ † 3Am+G|L ?R|y'->or|z}ruE oc\Ddصe|Y9?(;a]\Os:#DD^r=hT(sꄉ'bİ9 %b|Ri6b&S(2bZ HcT@X-p4K1_* SihW.tv<:%yΩ* 㚁@^kB27HXhFx0V~ީwܭ]jI3l l{7i7L 80W:]*M:yAnю8w_|}@x+zr 57yQ.\ ys? ]}|Dw+RX+j+O$) c+EA)OBoZ{}27@b(>{N=y !ltZ2_ӧ4`Y,MmojIim繇{M`p<do }S/nwg&$Tuofn ,N,v~ޗ򉄿dY!.`T,/_t;FG"Bk+Gh OALXC$YZ@+Rh"~vy[ o'5B8/jA(FlSTs1¡E>3_pvT+T~}a&XbRkb65B$~&V0RߎđOVTTT/C^O{zcbnR*nWO~z~\o _O=pïӐ3ocS,S&" M.| `*b]F#n!cw&M/H_|7n"}Dd'@H!$M?>A{ KF MyO)5-d)~};=jpjFS{A.jMD'3WtJR bi,Ac?+(=0ɕVz>/ "Ew|\D Wr|Y  Ψ!QJ Qnd#`ipxQj7Kpt8b.%b5N#t!SS4rX2m9lFF3Z-VK0R(䇗$ɨ`D.I2?=N-t!SWK]Tw^Hh3Z-VK0Rh3J-%.I*D`RL$F/θ?0Ut]R@&RX2\-VK0Rh3Z-VK0Ԓ^Z $BD%L`$ɨpMЅL]-taR\-u!SRh3Z-VK0Rh3J-%.I*DTK0]aj)Kj KTK]R@&RX2\-VK0Rh3Z-VK0Ԓ^Z $BD%L`$L2NVla/(fV^e bqq*JܜJDĶ-n=Ħgd? `SE ڜu ښdeҭ p2³⿡zt88 ;îiYXxe|WKMꚮMm3lC$a-d؃L<1?Cw->wwd[ ax˴tq |_ƶ?mMk@ͺm \ -Hy5 ;n}X-Q_&0"]hC/ !^9o$~'Q?b]}̅t5_D[Wђd+ᵆ4gLB,02 J12IZ06i2VvX q9,YRuz<#x2ʅQkQ.^)8ن6$hjmFm*א#6SmH:R4jj.j+P5M*Rr*$澲2˩IRkIh;']ihCIvSJiŌô}lR7UV&&~ߡ%\֥KNKNрL!ՙDp<ɀ>pF )^r 썤[vK4e *pqƗlAPO1+?ڍɗN]V>fc 1Yl8vofhͫTW6nkj1iȣ<}~~mA;L71\3"8a /`9G%d7t" /Ѫ#Gbf (nf^ bZW/[9++|1!uvꗪizkQOK2&x͌7FȈsG̎zL͎xƄ˧TH%3"NYZ<#кmOgKZ+<шi C|t>aH{dZ1#MFS* thߨm82,MU7U:OcIVe7{Mb+qƜ)sYY]m܊KDd>C.UY"YSR}孑ˤ# Lmqi"Vav߀.FaK麉Er*['-Ǵ%\+#TӲHeHK"mĺhXz2b9HGmD:~;k0Rhin-эEn~P|wZg#UKd+#Cg 7p,V'<;UGϦzk08oQA*#>:{rzϘ>)`Nȳf[d'm S)QWa楥P#))5M\bґW*#1:e)*R!(VHTptV$R]^ٰ ǀ1X: h(՛R ZcZWe%€liS9mŚ0iOfd3ATق pj3n]e @Ă(52@fXVWY ;A]iPtt5sPyA+)#JPKQh. 5m hgE Fa>:>߫L}Hm HDU @| M^(o05a3H_GF]fc^eaIkwS".dHm[B$QDi!nrx0X&.XVg{ u!$9hz ؂Vӈ8Z8`E_]{2GI= "&Ы9*&1"ODU[ϏR&ƞEZEK#w-X'I?Zݐ06lpJM`puY_"&Q(#< 1bYeK)#._5'{y3 iJ=vRE`}c|=RFE+hղܸsyen˿&H ^E`Ajo-⸗PgnBi4@dE7*#؎TՉٹBɒZN${Zт]7Ifn%%n0ȳm>%uX"njLzDb۰ @]N}ń¦BuWVz ߲y~+![e#_Orɷ[M~/cX*Z %yh$9biwEy}?(fxH8ɞXs^<rל<ͪ>}gWh'nh+ݰI.jQ5%oy[ N Ĵ!2eɪ$M40)[ S+NfJ?ɂZh_65 W؄yMH-)""Pkc9laT$0:'SoTDD?}6 vO}?I(₵,Uk ⰾcpe-Y*c\jTs+r*W(?r朔ilgk3 mݍ,,ũm80A;4q債c:yl.mwA9f\3xѬ$^tFAȍZFn<#9>S3qg?=hnG'Ɂ*׳x4,W% HF*p,=?an:Т/ x0j.?_Tj|fp0їSE̘WR+̰ 8&bƼ.Va=$f0~gCa)awOx!b=i+oLX?0"ߵ<c79(1Zq솨UdP*, 7?2,և#nI]dSG?6,cnsIFel(-Gpl b#дƼAmEiЛALK`KQŰ(ŀ#zVQ](,ZaӮs6TN3l"Sf,aƮfO3ЮAE1԰y^v7ml< гsL\LwǗĄg Е"\ȫE,4%LI͆շjHo2 9tG,.B?V^+ScR`wbinpݑsqˊEU Ycx԰5vc Ce)?8W3ś3 YȃMbeA%ׯX\ӧ3dJNXafD,5?gHE4;a& SY;+՝8<1ZBht:ۗIy *=I틈yT))X3*vT XeI=q,ܩg$JďXm#^#-d8: êĒ2EWQz6!9#V=b]g?DY3ڈgN6kv @%C>| NmsniYe#֤g#8eJ&ݤ\Je2>xd_۫Qs~7k|'Du)sхS5i|V۱xn⒢rsHݗ8ì&KMa-8a:f1"(ΛW!2_'Z2!g2x*>Dx 8gkn-+smqf&qHuۯly$RU ,eJ;hVFz8h֗_o)ʬ@,l=r-cX.5N]HlO?[4d>j?əZQ@E77{ޕA2' sGX{U]p𚷿]<RVUѐN}[7LI͡+Cf+42h1xl 3?s؂!aƖ=B_)^Qеb_  U*/ Vq1YP@P;5dTVdA85U[j&Grdwy6bW[@a"ÉEG0{2E1e&VAHsB~ .:Q5/¶SG:g{Y{la0l@Z#9Ū$'b i"&/T]> /aH`JֱuxLHUK>T%3S51ޱ߰;ؑ&+[C`v) eKa8ODqK\O W!$K`H녮X"ڷ[ذI[en--HϏ*7Vy,1i38*hʫ5R9a\c4\Nj:f'p@%^z$?Bzk~{J:;6DʳuCV<{2

              kN,o9E^G]d*Up"!aOp18Ԧ'x"ݾÖxڦ?a1HYLE_+{̓C$ZTi=%\v6#7b#. L;pn޸D%~(!%٬pJ)1XFS.k>e+.J]JKUpڕO8,gs 1j?{+XNnّ$Su>Ml3k}G<-vG$|X)V?m@ORKN &uNS.{}ΎV nUĠf_e?^MRw~z/pz-NQ!6a "F\5:3⽯uMi6N[m?MEÖ t UuTE'"J.Z*ϫ0ᝤ6sߌg1pɶ\e[CD,ZGXd ۖ7QyF{S߱oP'H-YY&8||Yu>xKG'Nφ,ff^B[8% UUvܔ7lۛ`;8y*hU ;$s2y8tslg̔ht.3ezd? +'Ba@B$&D%xxyR;#T$ &A=*2&mPۗ*9&f|G;&r@ohov7+oQ}~7ŦxY5fP-_~[i=qG Zm3 ftl8,wnֺ/sz?j\73=\7 R[OոUnj˥;G4c]aL/9#֦CtZ%kZe`6p#g6K#3md8 {vJ {"AOObTFѺlSfw~a4WWa:nÿ< d{lAPۈo6boL S.e1~(r?6W7{x _@ѣ]Ý,^J(W_X*)z;8PZ}}_忕zy[W qu ~)Pۊ_!8lM^VÇO*i,t?ep" J~Қ c! ET5r-g*|ސ!P>/6`5[<"A \O/޴3]Hl$P5ym猑l"ِar rdTtXV"{z>^n&ۚ=gӺE\i1I?5VO[jC{e3Ss.>}-tz3刮%evdt|1.&|Dtpv9-L5{zs>=ə]佤=mu mhO;{Z)\Y]EYeO>lSĮ#g "L)/PS RlcgL~ 16wƐLs6fM/]gL`.q6]j—xⶤ*)u]&oΘ~?F1|7r5c:@qE֘4kP[cD53A_Φ[ * Sj~uUN t)5]tz}2IT!V^0>m]#1A 9T'u5ՠ^\ gf= *BU$Et^^mz`Yj6 +jU/6׮Aul jΠ?Sֺo|w4@whY&l_)_e@A5:ΠvS饥ޤ^Ԡ6׮Au jΠ P/͓/E?Ĕ IdPkߪ3m;[C}5> IWAm]#1A |6Z(ԺP۔5rz#K|WUUdP".B}v -L% j-T"@%,N%Ncy3d \ 1p)$ D&)$|^j0A.o T{Le@TeéO̫[ME}խƞsT0h+JE^]D0$_SXFͮ$)LFCp|)MAm~> 2gkScAwoY7e¥j9L«' މkx@[kJ,6qmY[|]s+evA*+ K͇,?d6߂)~)0|G +Y0Uq=n6-E+߮ ߫&cW `³bqy )eLҟ '#F&RYk)B2{C0=b{_$ y4kf5mF<~{#2C WaDZ(cE.q"y4>vqlVbX&d% J]JUvlQ$th8lAVĕ blBֲ>1-5Q77vwwEAؕ0i˦21v.SbV\@bZѬ]+Ϙ̀r0誡.5uub(,o-\x|^oV+w*h lB0XEwVq*J-n5v9|#]Db:Ű)f]br>"wb`;L)UajŔ1K]bPe1}g~ُ|r(e"rٛ 8`?|o#Db:v~>ݍ$ W '񅜬6CUWR&]}U> +ȕf6x"2ϯST\k~њ"ZL9vJ8x5?<Yvp񻯯rUSbj].Űn Yq'>vo& Њx k`%7RvPN a*; ]^ ߑ."1bػ.h|m6k~J~ce p7$xZ2N-͓k%|f.9V9&aH՟'*G K%vIb.j.^ʺKXɍ 1[@#]Db.v18uũ:3.\)vEChF.v ]@bx:Ւ9/Ǔt]]wQ_LnNjs|s/́E blb[m_9XEb 'Ț*qK͍̍8Tq#a:rq-Q ܹc"~ӜaX: HJ.Ax# Wsy898v1.A^o.$ BE_!5E8~_p$P+J{Brㆬqֹip/6i )y'4Gc,kN>W\U7 7+ad t! ָ"Jj&;X\I7 VTc YeaB֜JF} kԹ-T@ em`YSV;洦ViUbN+{Kz:5[9tIA^}r#Gk9{vZyUHi5 Nkx?N롐.viBjNkR0_RMxTL% ['A'9쉸,fp ^ꌇh}l/iFebp[G3~ʟ76IDF8I+۷; 5hF-D>iхfrJSVPi#Bאi'-h䈄`㈆I F'ɥYBo-g6׃[ 񌖵!fjM"_X8%hJ+l(@MJuÍ p^ڥڏ:I;DȚ {jBvilyAm+6_Rtxı]PSOdXCwmo*2"Rbt> Z7,iR̋Ψ&&-=r_̋sȁ<\ONmTYr7*SiK2x*+η5`I`2/\"X]eorSW\ 7ۂ;='}G;-Sv0y 2:.6/>\-xs ~!@,rn b6z2E}ە-3! eyd9g0e߿nY &N-C.DzTTGOq700 Xsa`'vd)}s^-Yq!DO*jWۀ,ho%QJ|b%Yw:2j'Q|}UV7z\SZy:'4?-z~qf^ F<@SruTD\oT|@cZ$tM&/T 10rʻM گON|nɾlO7L?-^ F|CoN Ql"no)? F sk|IXޥc)/Pݤ~}CS)~}؄P 5vToh;J zr Ma lJض M:7D)C7ԀyPAvGռfeްc)/ ٯoygdhO%D0zm0loJض M:7D)C7Dy Ky1_oygdhO%vŢoޮ-9)l47 z|CoN QPߣo F &5otaoرa ޑwF6vToh'ޢo)¶@S| *a74 D = b$߰zYFKy1_oygdhOٲX(mi nږ5DX! 7ǜ:y't_Dp]nRAnأv؀ER!U`Y@6MA@Zٻu$*)?zlɚ3UgRdg~2hG\<(h4@ 1qF PF_7Uuyf-z+Z!E:ķ:tBT,qWCV [bU̷r~C?~[/ x[5qZWZA%` =iݲU@}#mQׁ%]<(ynp'0up!AoN'SfZNI P,̃Q4($O䉥q# PGQ 6!a~SkɈZ#q朗j.S>jV6*u:*UYJHE3evYw$[,'_ǧ?65M*n9oz|bwxgE8Ⱦ|>8SAQ=Q1jL9uuU؀ILOrTrvG 1d |c 59J_B}Wkv].:L|8gW{ſo7kR ]5PC)*@iaZmG»Z឴>ڕT֬imIY'^&a2w,1ܱz={Qh W^\z,EJeTl[I7@+Bl; Tx^}4:ݞ=Nu$xي4%jkvӨhj ڨVc 9DK \vP`}gL]R*$}"\P_b]ܠF4{u>ΘoOo5"RTEGO­ctehIdV,7.lWm9֬N1L~o+@K=uȱ1$CxYuk`"Au,6FȢj5BD1 Lw4}>U!_ۛi<=*{G;mw*[\c2$Џߖ+4EQhv>}>ʘuE<ёwCV*`㢽wdoC"mHQ{G#0,;p9̛s;:~C.+57lje"{G'rNEJyQG:yYC*y4)hK6 ^QByGN}IIN*{G{G#U#Aü69FaVq%E7wAc.ٌ2jYG[Rnb(S\ u4G߶FۗbJߔeoGR=]MgOU ^QNpyG>㢭gRO;-`.&juGU  Ua5Bm<$ƍ`;UDwy(彣w$Z>H_EJyQG:yYC*y4)h;}xzDظuEّwC(9.ZAڗzޑ]wԽw44xGUm>1#ڰDYǕiܘQb;fOKC(Zy(tIuG9.:b&ץw3sG#h}eF-i^[dZrr۾ N˞}j{](^jz> 9 QNlhl0(ifZ\3O-/AD 'π8tVÅFZv:^oߗ_v):XyHT E 3‡.N3 Ρ H9ư#z҃sXly_[u5\}Q?R EULh+Fh<#a.j%'T?P+[- R?#aa1Ge-X}#,)h9,bQBqh諝5Lva1vJNsX,հXt'yJbQ_v=tVXsXˆ E񰰘XN-?3gl-\9,b= Sb crX-_ScQ?R EU-l/;0OhXGXu+"eX,1˰<aa.=aQXvcb9,6&lʟbŢA;,eXCm?;=[CE5WI/Oݒ"eX<=eW__״Vw AcS7yپ۝8_.'VO.RCկbV*&"RGF2(A|{U˙E Kn/um?/z0&fβ+"m$Ty)9,Xԗb}]=N%5С?ׂ^Í;p/~w]t9ЅAc}:N$Zgp2l#A2Ij2oe,mX[z[gli-MCze_5.?(#e ?d"@3yK[;0w ʭ|jQȗ-vYwWjsO^-;(1p\FAPR޹1#^|Y6>a&B cSo,OPKBek ӎ0ZcUZ.nMj-j K-jM5Ru0AAY3 PD٨)]<R9㦛,ff*RW C^u1:##DG*0o =XB5 1oͫHrO?f9|;TnHhI"Asܣwܖr4x첟]x 1#9, d?1@b6x;Eco'hvQ;꣆ mdwBv{}UШ Ab6x;Eco'xtq;棆+k]k3f7Hop vP f>jx{]B0H3w k 4bFs qDÎwP[wG oc2xVr3f7Hop vP gAG QD585/_Uf:_/fr]O:0}u;KVbwxņ@]pP²>pgVnū%; g0_H0_Z1 522"YҦyVflyHUr.`D+2C r2y S}w-[صLܥ4Вbuzcb$IH<,uwU6vS[*ё@m?&ʴfΝL'&&e5砚t1PmSha+ڰ4*]]fީ /WXe0%e/yyX xwGGQ,G1QK 6ёVjʮ 3yG= aUUo/' !\Ƌpe"HTYTcm͉6":*W4K}$h׉Nt$ҏϐ<,ܕ,U @P] 0ʴ/ʠ\{+#yd2+ա jl/Ҩre|e,yvʼ-W LuqIYC^֔[^MU=we.UɫGnwpF2c9װT>uW&f;A2 (2(W=J2QveRte}i 0`VHʕ$)\0%e/yYSny5UܕT%tW Q|LhCtePvePteDʤtl ա+ڰۋ4\df蚵{C#?ίNp}|!'Ǜ;IˠGsy9cf`fLe_v9Sp},V~7ŚԸ'|#pZ80ybYgOt`-W$U}is}cob;Dx1V^Ѹ>f `Ap}4(?Q^\_eׯrU>ޣYg[K_67x=.CwۇGC\2̂<'\ߋ 1 [*gv\\3KV~-H\u\vr:H׿1`03cAq}2p},V~+-Ǩ?̒=sFz^r괹I "ן=>QY01ӠD{q}c>fa[\QcTПcfɊ~oeq~u\Y/-}lyvKcQbߚHz'nͫ臢2:oϔR:3ExE]kl(tKUbZ%ά;;߸z\*ݕjdnhj|/ZFZv]G3:0$ 8 F74K( {.Y.ny]bW7oHZ x\sJ3!x ̔CwOJ;B=BDz[fe,de_Qj6]L+ u=z2 :֖}fL*qTg9PgFD:q(uy] =DVSfr=3soC*n??`|ԶWF9Ƹ[`լ9r5gDEA5{f3*q=dLe`p&9 =qx3{fe`:Dr`eό zY=3Em̲g6w==3gSh陕Uo;(ˍtVǼg6=f,{f̢ ,hg=i9CjgM^1gl-=3| g9!y*[Z< QΞY3;-,Όd),z̢͞6{f3˞Ym9K p={f3˞3Ku̲g6=5{f3*e,{f3gu*.ŷob;c=dB />1Ѧ$X.[k}cRG]+v1dz})}Sr۾ޓ.Fbj;*]wE٣7a Ty\񆻣-|~+]ԖNjK&Ӑ^?o כuA?fϐܺ=^ane?`4 t5|@KLb^jrbq#2DĖ6 V{hF L. *?.{3ZJCB-As{'^'CD-hFbd$ | L{<[*O !Svħ2#,cPv?ʹHC4kaΪEp;t'$,dY;쑞kA$[r2l85 ́$ ˉYL_n({ǠF]fE=c>Z7zM!K)a2RcR/%ޕkUP(U*b]Ԯeew/GjWh dmxZKdh ]\T{-Ɨq.]E?@} &BC C6ņ,-57 `B]HDh>\Yu2()~sT#0_7`$I7Q?b' ;͌(m4!=l3vPRCώIf-`PZ5I Đ)X{p e:DY["t t o#q8oX!¹J/DZN*1G \0j?)lب)=W D-2P㶨EnYrդCsQ\"Q{EzCZ%Am9xMfUc&@9yU"PBn9XEz /@ؔoYѯS h4S=5V.3KlU%XY] `2ɔ<  r%(9xX}IJpcΈ.ͻH'ӰTz^nKxYg(7z^09Z%& ՛(Xȥ:+FF4~!\4x{4N5#'x:(D!L!.,$cm +c=̯pMקg{u]t+6ņqZ\b.YԼ_R `T9#ѽQ5kc}݀2"Rm u/&bÂ6['?^ *U%2D>zb0?zqǘ %C:9!Ԩ)I%Z2D#[9%KM0ƵSsWk)˥ yA|ԍlTXYnHVPxΣ rİhFb2bMcbVih?;:8VT: 5Wc H99wkAXY|ſ_~.7Jf S+a6w4ݏra)0T}W6!;LY%(\uY#ZU'v[Fs85f@x}l۟FW$A7-W~kޠJ h&Oh2`2C:z.h%^J_TvO|zacR2C\[pMW8ok*{!ߦe9#bjҽݺOWnOR*{Vhq`CF5SV*XqJ88vb;DKDGMl^}uY]w~m>Wu 4-m-Y RQ͔f,Z 96uݔC^؝TUΗX:T% l@n@ \[(N?34ZjZ䵠B3\kNB@jpfL%Ye{lLÉ}-[m] H:d~Ѩx7 ^X2" Q~Ӫ=,gho Ă)}&K WiXJNc#Ũȭ&FXăp욻r [Bɐ)ףwNz^I?WhRUH-l-eWk.Ej[ĨSsNQGȼ+1U!r7+a Тi#"n)f[_m(,c!:P6&l)嬧{Bo 6ߵd!M/e !"64yN>N?01~ZACuH~y^pX*6.Ԏ(Ws VIJQJ?KɰJɫ=zԜdXͰCC,1xf(jRQh-,z,i/1Zbr9jZgQ&$ũ~<1Q@#cR">ha=>Vz1\Fe/L]^ 30 6̈́܏#l$LbI˔-cƁL%>̦VcgI{؝!1+NGc^RɯU60ן 1E3\p+yaoiZp.:U21_Pro ,+C=Ww# Z5eaEh6 T?{-K)C.&'YS r1Ȫ~Ub$NÍo_>) :$!)QJzP,3GaJb4 ێsܿ]s͎TG=emn MY8rl@ ufhm917VWR7lKdK "S2|+vfM! ; '|+(#% 6g *1EHnkQѲs*LJf!y(QP`up(l?̻ rC2IA,D7U˕!z9xtbNBL/F]Q {-kp!zyv`,{b4V*#$lbR'\ف|wRVRXPE~;Q KF1RAuEk(zb7ٌlJ"@ط\K7ݱH_WTˉ\\ɯ4R8f#tjޗC27+'}^6ebz$L4ս(,bL/ӯ&==ƔTΣ52n ܦ6,cf3qP 3g`hM:Q.RVX,{Ѕ(U4|\dv840uIj#'{m}ظoV*Bo7{H~ų)|\IN]?9gxOї;Z/lb4uk"b\W]{u[S]ߛk]F%YmmB#Iq DžYhy$ϫ/[Y_>ӾJ <0#0Sˑ 8F+K>UI0dIa 筺Y3?_2u4^wg%hƊ<zv;1 j3R-:pHnnܚf;<.zf=?b_l)_ȩ,zrƸrÁ_pWKRV?>U?EW}BvcYZURNĿz_~.7ۖtzzyqpHo!ZzmPK!~oword/stylesWithEffects.xml}rƲ:éH$%J>Kkx[vm񊜵!P6IE~ s( NUlҘ{_L7,__x|K׋|^eQoKdˣoߞmwVwOˣO?mw}>[lm~qf||rztMסuo|d!e7*}gq~yxc]4_<ާ~M1]PN#LҟIy*{z8jSt<)J82oIUɱk2"o#O5 u!eȎPĩmh{}{-)ol.]M%QC q៍VE@4%^'ȟ ƀwp@Y9?J.#4!Cu q 1bXi}Ȓp1? PRi7lL&S(2bZ HcX@X-p41_, cih/tv<:%yΩ*+A Ve0n$C80Ł+]`}ީw<߭]ۥiI3d ae{7iH7L 80W :]*M:y^nюxw}}@r@LWgj)!n!\Io K0~vA z&!j.z2W WH5 dTG.Oz9c SqJ.dA9LNl+ aӊ4;}JE0,̼&67) <`{S  7ylB;OUNڪ:73u G' h;Y9$_7]$f/ܴ `KE >[?j8;>+i^אwuW`wuv3Ib7f'b#uU^ R*p*sm A[t΂'~"A#\fW${xGj++?^׿|}Ym\ ԰"glVSlnL %pt07KVEɃ&8'ykx f?g5t}珽/ ɲWC]q X:?pMPfNFvN5#Iքާe&AǕ!H- N YzgqMn6:^(" B&8%-@tarS#hRq tc; I}Ko[}l p[};xҷ#G>Y%PT,x=r5? 7I7Xcg_|?v~1||=~zNC`&[ ߍD1|7]n\{Tt=1Ft18CBnjFߍ/I_|7n$}H⻑L{-x'OIkB$I0ͷ86[_( ϛ1kZs1Rn5v$!z_ 8\ ёO+agԕ~Pރ "WPz`+!5cn׃"˙+HAT93W.ә+9sQwΕUhɠ&[=s3K6`I|f=HӇO}#Slז!R s\emX8>*Ɓ7h; h"&;ֶқe@rlxCq?3ZbJ1vDZL `9EІ٧w !^#9o$›᤾'Qs.U̅t5D[Wђd+ᵚ4ͰgLB,02 J!2IZ$3JSeNzͰ e`sX$5xFd3+0 PFAi9 Fqh mAm2I, ی^(!Gm?Uې>et%#=ipUS՜[U Ԛ3(8j$THYA lC<, \P)K4Y H% Œd Gbc ׳},X.p dޒR,c͒άj#Tr$7+#@/1Dة4+t9UzK7\+nh;']ihCIvSriŌSiؤ;mYoër+LL:CKlK#B"B*3ʼn,xrˣ}  Rd&xkI+,;욬i2T<^/F 8bHW,h7zG_{8fS5Ocp͠dW(&K5p?S^lpIcҐGWy3v#oPcfDq0Cr Jx<"xGRe[Ο A k2eDjT.@aEw(/&"Ӡj椒B9 *fB-CHF]Bģt/1 .vʄ0q8Ї6 DYED䥉 Jx]6#ڍqDN`l|e6E_f{ļvg1%RID;6%D" aJ(-P._  Yõ#4Mb![U}4RM- Wj.u;3M 2/H%K%gky"U{A:Y.=c%']\<(a\_VQm{0bUR 2c/^³K0/Nr{d= W.X!#L(&d*g4[Wfghy {A'h{zwQ[,jU5pYI)ۈk `z5d, Ԧa 0^=I8ED;jm  gx-ljQDF9`0wO{"T# g EvUٞڙj!Uw\DCʘ/Uw\*Ê㺜?cU39'=tZ5:H.8Dw# |*vqj sN?u\9oXr#nKbd`ff.Ռ:^4+.U5}:CfFº>^ ohb'",D4?`*Kޝc'pt߹{'Fk]N1]g2#M>A'©2DRek"bU"))aAJ Z\Ja B5VCYR@8F0tTj%F^6/K2JKaUbI^"ѫn<=u+k r 1Ӯw,mijaNV6-kv @%C>| NmkiYe֤'#8eJ&$_Je2>x}d_+QsH7k|'Dq)sхךS%ީ|Vۡxn/⒢rsHݗqYM3LZ!xqtboDP7Y/yCd/LeBzdF>U|"xq>@ZVۼ98Ll j_-kH13)fWY)ڣRX_~bTh ˓=QcȵlL8u9#1<<"nѬv$QLN H\x*.5] 889O<ҫrbs* ݄s`UUZD*ӻҽIg Mj]2ѠAC3\.Oa j[#p~h{ DAnI.UK,Jb8'VJVy,g;H΂JؑD!LB'+ SޢVK 5j4Z,GrJ۫lvY Vi/IXL!2hYt4Y sB9*6I|nBoAE'Wv@-{P<_&6 b^q4Kv- -@w$\Z,jJKB1O8K_hWM6yQ RgxCS%cs`BbXp}Ur93U;C i5(nwܰ]6D0`Ypm+Hd߯;ϓJ[i 5]|EKA W\IL4ަt S@]Db V9i_cޭՓQ %$M`FUuSxUAF,'4[ug7`1RDu e4_b,$v74k`C<[w+g´}OjTA($È|葈s9&7qI0Z#˛7-^%MY$N e!ʞ%/?n=WR>(=y#u&u]/kEOtGJL6{D'l:͵!|^릩z9F8e!۬Ȟ& -4;&tX:Od0C+' jwԣSbͿ$zM׊jr(SEa EQqHk(1"WSq5U{TS(R2lEsJD♦ G^TEΖ ೽!q8MNV_ [H<7"۽$T #Y ǐYhأһbP-u" VxJ_-mjV_舗Kt |e1_Ge*fKzU-n 쨦b=8Ye9a4 4`CV_޿hfNEQ4_˼efu'2l =i,Էh󎯪S*:u՜gPrz,V)}^% Dqm3h'|lJ7ja}'Vn/Gu9ƿ^H"·de`Sg5 {x[[:>dt|2d1{eŷS._,]eu}^ Ƽ=gLq VŰC99'S_wC=&Lݖr:Ne,Yq$PaQ4 BĄ{~X;/U:bAE`.lN٣"#k2;f}ircb^wc"ZGCea̟fwʾeLJt]ljoŚןh;b"mۅDɭ6xcasmNx[ ^*pb7ẙd wR\լ:f/uΘ9 cԗx6Rbu.Xl -Y4֦o7yYÉf(+EgSJcu ξ?== ]R+Ek+j_&#Q͂JQyVthʒSM]$C(63q7~ޣTG /"p1`Oe`B}\c{qwN+=e1mu <%)ێ' uk07+*HݷUk4N{Z?ۋ'`'%HJPCo+y4?o_7zY ?(jqd/(Ik&pQ 5ϛH&c)pyC@6lwE lqTw pޣ?>+zPt!e B av3FkdCb˙ȑqSUickDRΓ}#S]v/XPD F￿@4P%t 6p%6?\a0ZU4=BgA_g *d2C?]q +Ȏ¡ aSMs,&ۘ-ә⽚ִѡִV=5owKt</]=0{:;G ukpp60;L2_=d wjL緧=՛#9ӗbOgWhӳ`KA%!ySدΠʩ.:&N/]fs0Vғ*Dj3Ƨ65kP{cD73A=j ΠԳܬ5}Eʀ:.Kk5ҽe6T,KͦrabaPM9#z;51ATѠgzJ#R^_ Of-1ՄU$R3 jgP9;[MY jTѠ `Pa ln<)]AHyhIʀ$ZVA%msIgLM9 jTѠo `PEԭ]ZƬ+YU"Te@A-GPy#TQ7o0465`P[d;b ;쒁pIj$GAl4ߓ*9bz hE;!RaC0m~Pm >bG0~l6EnOVzRh6(y_tq[Ma:'7NhU0-rSx ShrÕy3ǐR48*V?ȜMz4_Mi9ߥW;V%˄1 rWMO։kx@[cJ,&jи6}:+i E]1H|Ȣ[8EJ2-#w8EPYaS]P0V0]ՋcH)yd860$Ϛ]No ~W\Ѩ'Iմ%b+:D8h@\D.j9$jTu@kV64z\ fY‹dű[]X[c85(&v+VEDPlӡYc1{&&VX?#WZ3]U>hi)Ƶ4޵}- rإĮYM[֍]1K9.vQ6j4@pcKGv >b2غ7]u㳡[ ls/i!JZ/1`7ZũdHP*7eMX$vzSDͺإt6:l*$SԊ)cc+B(OQq.{FcK7<1}g~ُ|r|(fr8`/o=Db:v~>ݍ$ W '񙜬.6CUWR&]}U_ֆJ~~] ZV bD׶lTϵ}U r%SbECx5]gөyrɼ?v:P%^v*$ ayyjJrTb.].{xŬxH:zbgxz HL.2>;=;6>^ff]~T+.%vۍ]1K9zbeh,vñlQ,ʜ|<JLN.el F6>>7[iHW<.6c_q^^g rRO5Ude]-p(ǩFJ1t2➃[ s'D+9A7°tEg>Ó ]^/.GruqAo|:UsZ>ӊx=e:h{[wZ(Uve;u͖i]FtNQpsZ@ oim5Vǡ77ViUzN+sZ;W9=pyYbɩ\dZt_i=/FWƶFtNkNv}!M8"Ӫ7Ӝ֢1Zi=eћӊxi}Nkld?Ӻupr>sZuZ@ oim5VƷ32ZU&:iW^cMivN~lrlδ 9:{qZ76cnMZN=7U8 ߬ `{R&a{нC޿mڤ?慼3;qe!rJ-\xBUb@%͊3zo1+[gn|^R2ݥ*[qI`&eymb]dٗO~7e!Z\mD9c;xlQr]l*{rk&w<*­ D\E{8q{C˿JGev#^<+ඈ1fh?ommJm%\#wW6owjAlь8i[0| , ҰF!INЃ9 [*z59B;4;>COKhZl{-kC2U#Lq)--s%EޱqИ4QW¥\ xxuhj>$HL%B֔ܽPW,dfj6bC.%E~J<<"0qq8 jo'oݟaMuĀLt0f<+F LgT#=pk/AVsȁ<\NmTYtW*SiK2p+η5`#Q2oJD0RmʰJX.@Seox` *UV yTY%f:}*ĬsT~Щ*>UʔJTTx+η5`#|Q2oJDTRe(@]"dMy݋ Tt6Reyy8trХ^TJ ԰ *G)Nv!j.w%+Rerف:@T\{Jt(2UVYWé2xu=U}L)K2TPWokZrK7GHavde\k4N;.<9A? p9 7|d=o>W eyd9g0$?nY &N-C.Dz{TGOq70ݷh? Xsa`'vdɯ}s̕ ]1[:h;T6CL(?UԮ Y801nTIfҬ;@K\}Ⱦ ҈Tnfp=)-*:'?5z~qf y #h_ 4ǴHz0P7*Sޤ/XИ `v}B4wv \ mg{aٞ7a74 D&F b$߰;17\]]:8j7y_4Ư*VB<}ì^oXV9m=ưJض M:7D)C7ԀzPAvGĕgdްcJ FӮoX9 m7a 7#ö@c|Ca%T¶oh ԉ!J [ Haw&Jo7X~3#h֮X F߰qN z =FP v7TP'(e(o7T#]7:7X~3#h֟O ]n[Gl3S멲%kTIݛ-LYrIx_| @@ɏ;Lj6nt7  ᆀa9*U aMt*7d-1rÚ`4n^V!frJ/:' {w/'FoKúːж4eCXQmC@7_ׂ>?0;ᅟjC`M6e l QcU1`,[m*$j TV׵Uuyf-z+Z!E:ķ:tBT,qWCV -m*[xa 9}/WNN?ٗq-z8+-,qZ)Lx6muW4ruKp)+fLgX2HZYao3Tk xtX73Pf8w'QqL=Cj6Ms{yRjq8@ ;1q&"̕9WnUQ9q\q83Ĩ{ձFq (z_8ED\ p@/81q&"1i h0Wo6sV8镄T3杪ǘ 85o&ǹ]^KM8NIJV199S69`pH h0Wo6s68t6yd#cIbQDP 1"q|;69C3ǩHvPz8aGqqsuC8iG8:~qgUʧǩg'9qʲVmrNjϓSC糤> p@ !81q&"1fǙM/*ǩg'|8׿nguOOeIO~ssUtX}yJITE<yf)ZvLcceFQSY[9_i$:'`&;_*j;e,Ybu&K)>c[<9[~ މW鯩'hYa74m<[ E !J:% Y:!"d*L)ay8<"ncd (R&$ox{-QK:7~ 4uQ]bjG CFTWU'[jVOy{QFE[Ͷ+|"Ķ AeeATZG7H.[B^_jm:6j5BC mGAe{Gc"EFӣw#ަ){Gb5-Cj }"I]EfӇ郌 ^QyG>d&9.;j_{G6$r߆$uw8; "#(< ü9Q74;"QsǦ;Q,wt"Tu5WkHS.&0is8uE ԑw/(9.ZAڗzޑwԽw8^0TnjhjmfEWb^qczG4;:X ϙu%H/fyY[jm1ծP^G{m\m}.;MYj{!%_y(t_uEבwC(9.z/Խ#{[@f{~2VwTY<`PPEV#dFJBiܨ vϳCh.彣wDH)/H'/kH%֐v]"EyM~3}H7.=;|9E+HRO;wkf׷/ QfU#Aü69FaVq%E7wAJF;{G]rQάK0is8uEܑwC(9.;j_zGz#|~KW"rzzyy5`m\ 3/HӲj}^7ʭZzNi`hF::7Jge 5R9viow 7ڊ^kժuQoEUy_l%Uh y [kηx'aFlX|HꇪQ'oj2Z,!n71HTߝ٩= ]V5rbRݻCT藲4Eq[N鋼ޫv.JxBE w*k:*BBgLKԑk橅} #g5\jHˎO] Ou~v.?ş|΁0VUGL  G:?6wuUN?f'}[*]X5'dGCۨjT~bhi4#sHlQ ].sńڌUAv^Qu<,,f?GX1V!EXprX Osh4CcG$djGNa11l)爱^nV] Wjnox_TaTbQ *Sʫ@ψsXzI UaV >ψcsŢxXXQ-)r$b"/E_uq Zo/Pjg a119,6sXSK5,I^ǰXԗb}]k$nE0DbQu<,,f?Sfb9[,g-WwreXbC԰ØsveDpTaTbQ g;[,a.L-9,w݊Hazaa1y2,?9rX,xXssX,z.XI([,XajbE}9,E[aNabQu<,,+^_ $맿na2,Vמ[yW߲ϴVw AcS7i>۝8_SUSVZ!zwr1+O_)#|#Go` NuͽŪ̢WrU ^׷/um;/z0&fβ+"m$Ty)9,Xԗb}]=L%5С/kArZc?;[BY]栱AL'Oy-w3S8~ dVݑZpzzyy5^26_,?̿-=^-3q\ Dl/~sy2@_2WDj Bϥ]/zC;VP>5KRche;۬;vvw'l_r~X^߿?Tw.v̈>, eɀBԛ72< ԒiZ"´# XgiZ&ZEZSMT]~ y3LP7D C1Q6jJ+s&TrN&ك"u]<(yn 2Έ-~f&ё ̛qfk'PcB̛~*'Ұ\kg9Zlp6@m'hv|:ev >*y6d7$gvBv5<7Y.NL4 N@9)=xxTam^||c:_LQ%+Fjf;~bCZ .RktLDaYKk83+A/{*`I1x .)ׄV̱4~̢H/G^չ8dAR ؆{*ъ̐prr< z/j~T| ֤%v-.w) p{^;X)c#IR7RK]|U3ݩ6V0jfo LuqIYC^{ݑQ+*T' Q|nLԒ*htbmu jtھ+Ç!_QmO7HXU ?k&BWƱ"\#06*kU:Xe[00ns Hʕ:Mƒg -Zu"<8I3,!/K=we !e?+(T>qW&j!2 (2(W/EʈF9%$:12Au1Cۋ4\_K2k˕S]\R␗5WS|]KU[p]*Ll=X5,OݕhLʮ ʕwhk]]@_ 5"ՠ/Ҩre|e,IGʼ-W LuqIYC^֔[^MU=we.Uݕr*+9]]+c']-2)2.]*ۂyAu6":*W4'ϨՓ!HԝK-͊lw]h8:S|LVteZPvePteDʤz2Au!"`Xgq:*W)ܷlR80%8eMTy]we.U}W Q|LƹCtePve̟/ K, #8֨, "=^|yJ5WɈ.ߖÌ Ne00?m͢&v pYh_Zm f+ۻ \>B?" Xe7'։ic]kev}UaT{QMY2^'ڬd>Β [7ͯϬ Yb5vwooM4F\!fӽԛ);T+5 ʎ*PZl^`P.ZAmBުG'ccf&͇uw^\٭_?ܟNu.?_,L^eY03cY ![>ΰB||a'\Ǭ_^eE<<{a͸9N~QA%+fy~q\ߣwqV2h\^Y01ӠDaΔ1\3˰տ-_뮪r}fM&5Ic?H,\V9#LX>F>f=rIllq~u\?\L&7׸E4y\3 O0cfk\UϬh>F>f7r;W-^>׿1`03cAq}2p},V~?-Ǩ?̒=s&~ >r괹ǷA"׿N+Rq}, ̃iP\1\3˰տ-_늫r}fG1*1dE\ޣ\(:molz}Bg8_"4_3 0 >f(s}//` 2lo:<\r} s},Y3o7#?ίN;kreO-4nhL6J[I~yPRFR6RJt(Oл}r >@b=n*R0W_kęagTxWoc5q Sb^t M[}WEȷU Ԯ+({&Z9V"b E!%=bRjq IRr@if4PrBIS=y'VVX6|+쓙]ek`;Jͦ ){eG/ /_2Ar엉?QE=3N2\0,ֱ@̈(U'46˞~3\GjjLyfM2qHE-ޠ/7ږh>Gs8wl=5gvZݝHq7"vv}fLxfQE=3N2gv2})y $<3gagV!{fyϬ ,B\hAl=왱y]3^g&<͞Y̆cggl -=ҿʞYm}є Ƹg`celY=3Em̲g=3T_?_g^[>OO//&k~O飝ot 7SS~1Ui۬w'e;4j7oHHvVC2 Y&%&pSCgII #bv˅i:-r0ܰTi|˧& A{bC=, tљ6gT%b`YAPJ*JuIfd]!#uG9#1 K7bO[CHl $N-/bǃnWWyLLʌ$TOB6v" S;EНadGzla@f,6*,' g1mhΒnFg| jiJtIGckA6/=/·ԫJ]I{W2UwC݆TbwQӗ}߽]i1X:lͷjbw/ p1$tisQAh â_!tTB-Tj5j 0$x w!YpeM"|SPuH)Oϓ2n'dD^T043 nYnJֆXAKGj=;& aoh~vBNCi1&-:[.ԣC^`iI1eUn1$B8.!&âgSL7YmtXQLԂpL_s$yW4 Iſibeo}ulO:*i3lLAat?!L PMAV_لh 0A\gpNXf0JhWPl mώ!z֘ moQ_t\gz*՚?]ɀ '蹠{)}S=ꅍ73C_[L>Ipu[= YyLm[7z`-)A`l 峩.5yyu߭vV{CH^mKE*ӴPf)JmCFY4S9h),uSʒcyawSU9_bqS(7%S-rm 8LksEhׂO u΄ {s9$^@u?0ke(#oJcF>l>%vh-;غǙ u݄lɊ&W,Ԣz V%:@oTPcJMdZ^8Fpe33ޝEv:VXFZcz=R EMf*BIdC h|J7H:A'O+Aכ5?ܝtc`Vi+Yj*!Ճ!dz/ dg`CnSAęA;TW[WbB툂pl?' `\Au# DZxzأ'JI Mj*1d:CW[n6 VP(¢w2ޟ1c%&C;mz_qa~ lbGҚ\|N< 0[ =6.-cG.Cunt QT 1mL= KΔQ+41L2 n`TlZj%>Yk}gI3RΨtia9FU(ZEi3xc>]4e!Mgvi㫺\u,^aA /-q2pu7ҠUXʪ[Fm@qڒR>HibBJ}55 {ݎZLgL\%Z*FԚq9^NbѐïkI"bJzJ'2s,F8w5Hu\֖y ؤH'/ζWj [g[ijl&[֖scE~eyq-5xɶ$N 2Z-b[noZ_ b=_ݝ?i·R92\biC*Љ^dY5-?oT0˿Mdb-@ne <^G̼; 8$Bo/S\ic hI'6/rmհRKmƲ7j,F3za{[ޫݚ\S]Run7.AjkHe8.ԮBȣ'yZ}Uy1&ZԼe1r']YJ!K k8Ln,&a0"?a̗ނƘI1eSj[T." 5sU%wAE>jD2Q~|vl{H,2誔~EuǁŲAy::cO6lQooW4;쇀k'N>ǭ/ݺ or4^f\5`C"g9looKlZ ѓ PK!9]docProps/core.xml (Rn0W?D'A %Aj+NETV.C!$7x2N>?*:uB$E(P ESi]Lƴ X/EIm7ƎmAR Z[I}v e;~|Z-P9J$&$&eimm~ Ox6;iPK!mšword/webSettings.xmlSN0 }GP坥:$@&!@ > M6I%zŚl !jt%rkJ4?>gYL)aA6Ѵ+:UƌT\,,Y/8+=8JHnEIWtķRD}d ˬ, *CƧlFSzϬ+*$\y_P5%nߖnN;4@u~B SB Tޑ>9Ψ0^Hr Ҳ*І0føa!To7=p;L`6z쇯}hӯps4 g9-f x&>@X8~9ݵPK!eKg@word/numbering.xml\nFwҋY`Om_W`a Xbf83{O^$p)KEmi)%MRzuS_M },,i<^Di]:Q0=ǝd;U$r4yVvbR>]М-%Q4 .v=x܊QL-].r>! *PVH`<\G.pÌ1t6Xs! o/_ܷx^d{8LؘƖ |A3"\#xR,$ l/,M\p$ť8no\3{HKK{Mpg;vI,n(|h HD !~ڧRR-amڋ/2Wv~ݹ/5v{p]5- bV+N/o %Yy3 "MP~u/}z)^w^oV^eN}H2%/$;@!R|pbDelORҌ`~.P.TP+c7%& tq tjׅڦ^ܸN T ս/6] MG춷_M;B) R^xCG/(RE^m>=Ce&X.P VCa.Y\lvإ5;uѪ::3A,|pUe7njs9`Gk7A8::H=x,AGBk#jj+ /sx6W8 NrخeuKw*BQל"YvZo5!tlfʹ;Yu>L|' MD^Ժˉ9[U}'˖UGݚyN9ڀ~'K,ێ>򍆒;Y0"q3B+m]dvj ˫$߽w| jv$|LYyE^rM"r/{ġ}Ii@R ` DϮօ,R< *ArY$Zv84GO VwgDֳQΙP*+l(kd!tEK.sY6X0vco H b+6т#Ꭺ !,Z>v!̬;YB׷Rl5@PCkl^x2LZ3@vXΠۋYbRɄe5-PZgAUp!AHZQJ벆 yskp1׊e#( b@TBvVOI9p6t54) .`/E#-<*ۅ{+YG5Ѹ7ϣ*k Oa&gaiY/V02aEF9HXè 1EHz9 b=-?G~81 rL&  Ɨ3c. O>PK-!aDե[Content_Types].xmlPK-!N _rels/.relsPK-!iNFword/_rels/document.xml.relsPK-!޼ word/document.xmlPK-!:} word/endnotes.xmlPK-!word/footnotes.xmlPK-!9^(word/theme/theme1.xmlPK-!fword/settings.xmlPK-!4-pword/fontTable.xmlPK-!\Gnword/styles.xmlPK-!~oword/stylesWithEffects.xmlPK-!HsdocProps/app.xmlPK-!9]YdocProps/core.xmlPK-!mšword/webSettings.xmlPK-!eKg@word/numbering.xmlPKWpandoc-1.16.0.2~dfsg/tests/docx/deep_normalize.native0000644000000000000000000000112012645626061021251 0ustar rootroot[OrderedList (1,Decimal,OneParen) [[Para [Str "This",Space,Str "is",Space,Str "at",Space,Str "the",Space,Str "first",Space,Str "level"] ,OrderedList (1,LowerAlpha,DefaultDelim) [[Para [Str "This",Space,Str "is",Space,Str "at",Space,Str "the",Space,Str "second",Space,Str "level"] ,OrderedList (1,LowerRoman,DefaultDelim) [[Para [Str "This",Space,Str "is",Space,Emph [Str "at",Space,Strong [Str "the",Space,Str "third",Space,Str "level"],Str ",",Space,Str "and",Space,Str "I",Space,Str "want",Space,Str "to"],Space,Str "test",Space,Str "normalization",Space,Str "here."]]]]]]]] pandoc-1.16.0.2~dfsg/tests/docx/trailing_spaces_in_formatting.docx0000644000000000000000000003116412645626061024025 0ustar rootrootPK! $[Content_Types].xml (MO@&Wz0ƔM.C~dgJKZ2 3J<*kROz,#m,eEDi l Fˋt#6"w9:0t[E[?N1~piMPir1/C4^C,_R&+Hd\CBwPV*h"|x0gV5iy$4V"eˤ9BA )jT(y>vw餶ثv(SLqWUDX˿Qw4S^ 0F"м\gsldYdLuH݂c9>(hVDۈ5{A7t PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!|;9"word/_rels/document.xml.rels (MO0&һV]ٲ5٫-Sht ʢ.MfIZUq"=loO.Y$m.+gAT!,MQH(XI\qZbaG;_K /x#Փ,/d}?eh 7)mg;kk4Df2/wBmw4A^#࣡FkPܚHxȽAt~9' ozWnMtVWkJlNWz^>\PK!i;8word/document.xmlUM0W|~(Vm*\I,beR;tYK3oޛӻ?${a=aLRR<)+A=G?M$SB{%3Zxo(r܂9LrU`hX9=sSh`XXż#vgnYJ@Y=4ڡg*^x. #+Je %k"*3%_RexB2IMB}U}8_V$@.̎bR0Kir#>r-LOȏ=m N7cD!`٦DFhB‰s,6hHe8^.&+-x-BdlWcϺVCBjN2ͧZ6F-8823V8aΟr @o_% ͅ屯yg!s2/, $7|&` wgcjd 9La~7Ʒ!E4Re#˄m'_[ܹlѾd$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK! word/settings.xmlVn8}_ 蹎$I !J&nx[ o )+d--dj.gnC,96T*-N4ʎJnX":¤*=I_|, Xf&AaJVZUfi9 *wRsbS'nPVrE,m(-,`dZĂVK#wֹr-L?CHy%ہ>baR=U&%#{E8vcr*w{Ҳcp@r9X=zh : 3EOs=aa7D1#\-?Bj0$X d7)y2 tCB:cNjqᶈG'IQXD fOD6 hC b_xE;Nq3>Y3:3VOIG,Π{ĕ4젥țy瞄5J% #:.PK!Nword/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK!ua=word/stylesWithEffects.xmlmS8}CH4P7m60Zm@>$[1vl߮v_A7yI*dp'#O"zXwp4cS{H瀧ҋm-MImxPxL:;d8d+2;DzRNx|ƣeՙ;V=Z݅˒26ёV"_+1`82D|ey& 6YXt'mH'|p5 &B& kńKųh#|G)wϿ ]Xde\B<+SIA:*P.vޘ5~ol8S]wt`LET @%z:p;l.ýЌڨT%>LUuGɪ*(( HxF~{G49cZUtgD@Q@+ZsxZwK,*ùp\fT;Ξ!7,1 ;q>%v=W1v0odĹO&ߤ4^xdl U텝LzL_D砳gl7"˩AF΍\ChLzP `=mi.t*M+:>Ӹ;d85'+d蕇9y[."Q"1'\z憩Sr.v:Ja(zc!'&{SBDX3k@d;0h{|2ЂP{гRn"sIeaiE=~GG аVHGDSp:Ipו\i% ^ד!3{N\,WU\BoBPqG V|E}x߶@(o,nDu >^׎dnw{(ދ3~g$xx9զp9K!l+fMCvIČ)W/e2n5|;=fj%L}@\{CQ^'QxR7o-I9M%iκvw?oPK!J}docProps/core.xml (QO M -e]%mٓKLq]G,ۿ[>^^ȗGUGN6@$IQ7B@oU|"n4-ۛ /1`v7cKCqX|(m 㟬e2T04ȩsFkb5gW6\ເ wŅoƘWiWi;ly[=ZtG9+ .4ؓO{?O<%OٱxQGFMTcaZEbb*]5{e_g-G\&sI.=m2"\cxXcU@hX)dZ}SD:dxqdز\V1L;2/\x%`IX\hMf$PѩղnXMjǨu *Woh&ohxCo VśW8_KPU 68+~3:=v&Pj7ŽNxX 'jRqěG qěG qě.ěbkCU&PM+mxRqt&Pj7ŽNMPE*PU7p`arsG #8M#p'[JM7ĖTo O7NƟ. ;@M&Pѩ js;@5V)`&8#oh&w?d<&PjjU \&!xf.pɍqOXkp8)θKD{$x-381_xqJ-@釾>PK!TG[word/fontTable.xmlܔn0}{,JVȁTEdhi"*I[;Pth.yY V렝j}.y|݈Y1m!:9LR5rw99',Dkf|+i l了&LQPWp U"#x1FSvR0if)8*i[~[<ӊ2c"Ჱ=#VFŶq {$R:zJY r/@$ NIgHeIC},O4!0,ĕN597*ddECUfCQ* Qd(>4Un@rҧ\ KPUV#qֹ&dAR{vM?}yps}=Z>!x58HK9߰VőM":4<<58W,w(AdKz ]`)jХocS4Y} JxGyRz^)pl7߷k[ ݸ!CS"`SdÿTL4ijnb5f#ȌPK!%docProps/app.xml (Sn0 ?7rYŐba[mϜL'dIT׏WvO4H^* 4Ҷr,Bӂ򄡼}T jaB]ctƂh"[U5× ˩f۴2 ɑ`읆{9 Q=%swp ' 9d,䟝JB$O7% x"Y^ɑ=gIT!$c$;j#qK耜!t!n"_4UYɬ+0LKeS0bBQQSoMu2j \&r@Ku ᾣ]bG LN3躵sgD iQ^=$?x;4*{livo#Ng皿i7*EE߸Agvt~<7PK-! $[Content_Types].xmlPK-!N _rels/.relsPK-!|;9"word/_rels/document.xml.relsPK-!i;8B word/document.xmlPK-!0C) word/theme/theme1.xmlPK-! word/settings.xmlPK-!Nword/webSettings.xmlPK-!ua=word/stylesWithEffects.xmlPK-!J}docProps/core.xmlPK-!Oz Gp:J"word/styles.xmlPK-!TG[)word/fontTable.xmlPK-!%I,docProps/app.xmlPK U/pandoc-1.16.0.2~dfsg/tests/docx/tables.native0000644000000000000000000000231612645626062017537 0ustar rootroot[Header 2 ("a-table-with-and-without-a-header-row",[],[]) [Str "A",Space,Str "table,",Space,Str "with",Space,Str "and",Space,Str "without",Space,Str "a",Space,Str "header",Space,Str "row"] ,Table [] [AlignDefault,AlignDefault,AlignDefault,AlignDefault] [0.0,0.0,0.0,0.0] [[Plain [Str "Name"]] ,[Plain [Str "Game"]] ,[Plain [Str "Fame"]] ,[Plain [Str "Blame"]]] [[[Plain [Str "Lebron",Space,Str "James"]] ,[Plain [Str "Basketball"]] ,[Plain [Str "Very",Space,Str "High"]] ,[Plain [Str "Leaving",Space,Str "Cleveland"]]] ,[[Plain [Str "Ryan",Space,Str "Braun"]] ,[Plain [Str "Baseball"]] ,[Plain [Str "Moderate"]] ,[Plain [Str "Steroids"]]] ,[[Plain [Str "Russell",Space,Str "Wilson"]] ,[Plain [Str "Football"]] ,[Plain [Str "High"]] ,[Plain [Str "Tacky",Space,Str "uniform"]]]] ,Table [] [AlignDefault,AlignDefault] [0.0,0.0] [] [[[Plain [Str "Sinple"]] ,[Plain [Str "Table"]]] ,[[Plain [Str "Without"]] ,[Plain [Str "Header"]]]] ,Table [] [AlignDefault,AlignDefault] [0.0,0.0] [] [[[Para [Str "Simple"] ,Para [Str "Multiparagraph"]] ,[Para [Str "Table"] ,Para [Str "Full"]]] ,[[Para [Str "Of"] ,Para [Str "Paragraphs"]] ,[Para [Str "In",Space,Str "each"] ,Para [Str "Cell."]]]]] pandoc-1.16.0.2~dfsg/tests/docx/image_vml.docx0000644000000000000000000005600712645626061017701 0ustar rootrootPK95F _rels/.relsMKA Cl+"Bo"3iA PǼymNAêiAq0Ѻ0jx=/`/W>J\*ބaIL41q!fOR8w/+PKB~PK95Fword/footer1.xmlTr0}W0kf:JpMu2i2Ъ88{vSVX'Ad>+H&tɿ!5WEI‘凋5h3lfjE]ʂ :M#+1aK"F4#5`;ծi j tQg їZiȶ}/S_Llm,T9?NzG4xsLQʧ\'#Yɛwkz$?"4Xᕏ&%(=A ⷽHR f+׭>9o-("۔=Yp@tSFV2+*T >+1EF`a& b|@mPƖ糅6ʼn&e8X^̊ϯ ߱#VjYS4r|g$a(awل)n`IDh^O~QR[@?h+M 3+Z SS/8g(=OxKKtT꫖lzX>? {?ev,XS7r8a(FNHCzyp2LEpJH'$q _PPK5]PK95Fword/header1.xmlRMo WD=LSԴU;N>~"Al T킅{fv5ArQA}_/oE8ha=}KE"{|ͪNr"dbuF 3>P I 'Cr2+L١QQ2V7/j_ J38;:iUfYΕqnIN,o lxsm$gAR%F}i{r9+iE&7)k՞*3PKSPK95Fword/media/image4.jpegg@Y׾.b%*ȭ, ""( B% ,,b%@5e RBbIAz&x?}!frι~fگ-\`Vi'`?k k׮Ymǟ~M:l޺yӦ-;l߶}t vضSomYΚ׮ݸMgζχ Wu꭫08 juZ6 êիXuؚkzzǕS=Ǯ޾;w69hz+k'N:|ܥ^>~׮wn<6GSӞ=/UXW߼#7465w|=08gsg<9X"v^GBvf5۵ꇻoغf_X%Z{){a1Oal6}73/a׮qOWA[I[Di"|s=<W2gFYۓ&9=_13/%+$ǣH:IDb▥›wDQ:"] t!7 t@-Z Khs kp46Ι/KfoÄ5.BZ)04 osy?1+N.L}LbTwkavcTMw?%\s7V\q[ͱ_Gn(+%u&&x}_ەgdMhaي+2EOcޒ4 ]JՓa_\S0C2CS2U~51Q DHW]*޲햙qdXurL^N3a92MC'Z|b.n9+t쏌ύja@:uwzrS{M[U Ԣ`DE9VjaI^ڐ- -ѐ<ϋV [ FP̮㿷υXKg.kq_lsZ1/ΰ 4߆qqc$< |Xnպ pPWjE|}{:ͥ?dH3(: &mJ> !07_5&gϣ細 Y ќ}AE=wfg/8ȉX%9tur9/:L7~>f լ WW֕yZ5? ?pkaIM!)4#.kO$E^9mIXF372Q!K#.易^sX<5u'۠h`䗎Yd'aLV3z7dd׶qê&1ͬ`OB烸Jm>bؕw\s=I\{t8KMWJ1a& `eIr}fg uE*h롙M4<${cͧ0l{h~ Ȁ499# \B؏JEtBwMϗ }ʯE+N%x8+9f|0Ls+Hs !sGg |fWd)~ Dm>/:ѤkpEg!t>bJb$9b^u=grRMyaI^Ϥ6&IY ^P\[n~AltΜ.ooH~c30EөY҃RӴA+uGL&pNkxxKߥ؀ jsu5vUJGK;y!$ :L5N $׾^ޤ'B|SВ=mіP5"(*.F|) WqF߾~`aq1r}isU de+uTOyt=BC\ڳnRAú[) :{ o""Ek8MQmO 1*)y͢tk:AfraIZYy2\j:,IL ;_2uL5 B00?az6gdY $M1rE:OzuMuωk̛u>X~\֝gj[|WtxZzz12:I Dڊt}MDvo!*5%ћ @5uGktOvSKs5OFڕfSݥ!-LBbStY,7N넸U؟ >}?baO§^wxeu as[J',/FS3S/38Xw/;'6[ ?3t*nSuŘ'KB%]h;9_Zqq+ b%49|wɉGE\Mi[<8PY0cp;2=`{ 0% 1Eْ0ɤ1@W(Ib7ճ6[)#t~u`Hc΄e{2S~95}3ү#"%:RO=ك]圈h;MecJF*lG ÖWf_}Ggp)ғeEMY# 膜TNqD;ˡb$=M/Q3Wͷg_!{ɵ0aon]|7rq88tMŒ5%Ed5'c8#tx *\Z۫fȒEq}GO3fUv /n"U+88M&GbKRL/ݐ5rQe?] }GRN/BGP#g4(_Za8{-%aSSayPأA;4<'&xKhSIڞK):ooW-G=-.EB;?Y6IiIq4$}f?a?ـ\$-_"V0 ׳KoJČ}nQz͊}s"G-+No{׈w69ˉ޽T5<y_{F$k*yXa*bTsMx݀I縟Is _ G;##W'n^ʉx Kmς~57C`@7 QtBJIXN^C9%q\7VE,M/{}qYOoA>L5ļ1mD[f<8>I+ܞAJ0ע3 ~Ws%2|{As=%Z}zX/ڲ) Ux7ι e8^u0a?LYݘt3O'J{iRHY`xb!I/f !xHpCxgu"m~C3E}J>-㞱KU`̰[cb.ZpVqm[Zw7Y0ڴjvWvj め4!<†Ubz/n?ZbCGBfQjq!1i}a?97}TrŹRﳣ}?ק|N6{Q>ar$h;T7h1GDCYV)F"@{sH W NIA&jFc˂#{v釪Ґ -l;s;%xe>RE!'zKk?pW};0R҄%U|L|ޜ@YBeMƷiaU͍x.p Zܯ{x/I iVA+?+Bs Z|yj} ȋΩ+A#< V$&}%n$Tx̛vfN5hJ% /wOCO%kg3,[|vzt¢^Bq1?HtW^XoeߚG$EƴDŽr;h9EEohI_mq?ZG<>\b)]2+,J8LSp,l*]I0|gy,.HJm/ρɃ<6$JE_0dѫr)m6,,,bѺy>K#xm`x(aY ,lp(Bevkp BM~Gџ؇~veZ-E:)S_ox1 -PeyKeo9.^>jnDur6<<ƖeRSC# \wZ3SA6-,Yk/b9`5jԠbA{]2 7oYH"DL)xB EeyK BBIqy,9F7-^OQ%25UOeX$>l(fcς\u nMrګ|2\d/YSw88Rh]T߯Z= ~$<=Tb<R`R [p%nqjƿ;/.fC"% >_7h :2y`م s-Hc8gUhmo-?*U?1 joծ F3HhOFqशY٠(@s;v"c4 kzY9CmlT BDخLۀlpu+s䚉icOAzD2oUմa`+Jh_6M0`olsj__/nɌ)zdjvU;qꀿJER`W׹h //6hey+y1cr4D jԟES"oa8 SJ=٤8|{wV1>7ԀH#W¤nApuH )Eb".kr4E&Cx`)⽟ ԛ@sY19 'B}+1S`=c)LMCR$!e\M9A7"֎Z6plsYTpĆ Tɿ0i;UT4rB/@q`+G9 1n2!K+$ Bѻ`unʨ\'UQ{~jӲZ 3#kEh'Sxo_\UMR`* N"j,' cˆƹS}5F=7 @bv5S>:nќ:Ţ,7mUL, U7KPꜱyob# ~v{:[ S l4DU;R 2R +i>rۘ_9:BT؈@+b@*O橦^+c{M&u5Qoo%=gMM{ب'㽾89}-pm SoX#haWG.I? >! 0"/53)'n^T%d旔ٲKy}Yf ޿)Z1RYk Tx*'4E GN <ߊK%māId\;ݦ>|cFf*z^K\3!fB_#B+gcoLaz^\j0%mOJzpm49 Qh>ٙ*pQڲS]*t[ iRfFi=C0^\=W_턏6x6"a^ & jtR6-R!$Uٜl[Wr^0%|j|u I aF .zy&E%SPj:O]۱X0`@6u=SUxkb@(~'r53@1ARnrIjA(qKwˣ;Uһ枮'v\gK UӦWRoeCm]G,E*fzvW]pFL"[4壅AyxgQ3z %7W}0 v }U?/zhGX23"st-߬|$Ö#S{8fyc/y ը(PʲF|JI?Xfr |LJvlXu@H0XA#D];R[Ӵ"`I+r6ypFxSSH.(}V;+$yl*+XZň*<ܒصV57gCgot5{@NٛȀ,\ٝk67C,ĴouNݔ=[Q| fU =f4S!52':LW=?Zt aH[\Wq?tv>aN]?ۢ"[PƗ h [jPxgL7Δ$j8)&SԣL'eZX֮b2>T"}Y¼GZЃqv;熚*IwZ4!|`NԞ,t\ i #s  _#Q5ܑ}uAj%*owșΪ=2'M/{>ܠYnodvҮ8g.ŝn:>*RċUggBQG೻SA r#-X[qɹ^bHaW7W[U46!<^*Bf{2{cǸB.D:!(;GSKh.WCp)b<10yd}iP(0{96" ]5ȟGچ)Ⱦ]I4ñQRB" z_O.@*NLD 2쒻xҦ~R< U (hrPmjI2h7}d(h-dFGh1lL!@ +;~2o}#9SRz=٦!q%9y<.oN6Ab@˗}~ >ۈmf!v)xc$*ge8w3^}?Y;zwqNy&lidWR*=w;úV^9Pyp םciGk7,t> N>߫S?7)oPZڟ4>P7Ǐ)ry }:jzT3Nl)ϗFN=OY>1cqiE∌:H+umR0{0Y#`)/O;rXo0%OO6/O3IB$jR;d4T'1MTݩU!2v vIOӦ9| Q 4h F<փՍ?Oå`rC.}ŐY)*Ҷ}7kr])aFeu.H~CxD^Zy?BB} X(ۃʇzP"8Fsͬ偿k(jgylk7]޾HJ?;\?~Aoqڬ-"eqjm2`9(@B'ט B2% m ::'ta崯^B7 p*I-5-\- W٪H<Ίڤ:>X!r\m ۿ7M@(Jf ,E ALD, a$b l=v6qro<{VAKK#Bh[۠fd] :7A"Ȣ׹ کMk v .K{*Y#$t׿P6 SFr'\߉+ES>Jb1=3lKX0g?iYбIc>Tꕔ9Dž̴wF٥>t[Y]|#aRU;d1XH;Ef8% eP/ܳqDf w!6`3 Q8zsʞ |$G[ZA<%'p;^ (~ќW߭$ =ZZ>2xth:NC΀Gre*>ܵ9L ؛-G|eFc tPЅ^m)CW#E6 !p-QΌ[΂ᜓxT#y|'p$!8wD4%EX E,K}T@ p;GkHعܼ݉n:h/LE腹at^Gj-HA,R do<9*\"n*~_ cFCnzH΂?ፊt-,JKCS;vc!w,0y&0YN:7 tuh}%&cz(B\WrqhGd0ݻNIxD>!ou*5J\8!^ N32]n-FZV$o=yjnP@裂=Z jX JC遡 B:~dy3Ho"b=>P b5)[УkU$Pхdwldz9y*&)I#F:Sqvݎ -CMJh/5I;̮Izm˳ăK.^Yʖ.h!Z؜ɇ細giD̕ T- eUQP 41*yۯɁZ>rVţ5v #x ^UzoI8jR="t!l(H²f]Kv96=ufkiD>I33&{Qe+iYM-Us-{/'ZAdaaĖц) oG4E< /Х4S|lL0SA$FkuhY=/Nha*m-#$OZCX"'tr2xS܈%FFu!QZ^k$I0R۔Ars\zTayQav~,CfY>֟[=C,y8A0 @-,6t^ݗ}B { p Dq> (٠ZZwVPmKMO杙}suG&1JvQ-)SC]¾:Y+^MfД@kMwUKRaǎ,Memӵ˺`!$7j_@%zC :eY D@J`'wJGbԵWNb~/9pq9`_6n9Z{=Z$ 4+^[ʾ:5kK *FiXf&R&-V eJAHOMߠ$Kһ1ӵYhUh0 3(pĹR4U+m n{ Q.KpMZMM2K.ň=Y47j+u  >T3{9B ľ>u֎PKj\q79PK95Fword/theme/theme1.xmlYMD+F;ͮ6٤vnZĞӌ=d(q@@VR~BIƛ6KQxwW !)Oږsf!.1Zӎ1M,[ d,Dlg%96;ُ.r~4  nZ]?t%A0t" qigο^_znϙRg [NgS˼5V~x|cwZݮW-v7KMAx s9d5#,([ˮ>Qr- .V4AjPP kw-_.meMU(P ȫ?z?xvdPz=ۗ4㥎O 3P_=ٓ_ m:|@c"Mry 8 TNB=U7aC#W'* Dbx=+]Y M3Y&Ih.&:nC&)25F$Db Kiů\Bw)`jtɀ!.Sovg&;䰊DZQc3yȤTK )M4Ĵu ]6H؄9ב;|܍puIc?cHQ2*!8Y;mFLDٷ+8iQݎo3T '*ɦ"od@o[rWv[m}(+'e@M!,A"'i .8F"'ʒu(Q%$=ov4V<(p&_R+q̈́9pMig*ּ ՀpvwB4d f$^0C$#2FZ&mf .]!;(Ֆd/#K+tZyuB>N(S'Y-_OlNKTHeTPfMup>zZ4Z}2d4"ZXDqGh&bn]̨*-Ze|?SVfi˞b_JS^?4qx)Y,G*Ѕ҈}C. BPJe3]o<&FjHPt*0suƨ3sueZ!azfݤtD;4T]ðO>`!=,jM_{l g|׽)>P -߇D /oAf\!hy+}lktW%jk|;pP0%Iٝ_|PK(>PK95Fword/styles.xml\[s8~_A|T3L&I<ˠL0xn'WIJbwY~e?pB8Z̑#/i9pa>2H"qWLF|χ$} 11xX6i8opD=c4>ĉKbB߆c4- 'Z{GS>&wIxAP`DK6W`D+JG`K-[Eh̪&Ы?PdEe!e8 _h|b?ep˫ㆇB(y-QJ-Θ>~:srdx| |3&_}'ʿ%ArX7Z3#ۋw) zY=Z!"+Z'jU\r&:o D̀׷S{-}C`1 C܋`1}C܏`1} C`1}>ًCx`%%)Am~t04Bm >u'?y"olj_ࢀ⇬yA =s7P ٽf\]a+`?(8PPQ$ %Xp6 7qy 7} ^+5JqDю-e@pT $̉ Ֆ%%x,&K7Py E#oai{o-@*{ 4T@4 K%`@*xC}7TP4 KCT o0 x H%ރFh7JT  */`(RCo0, R7JT o0 xCI DCT oXPw4 "o0 o0,x H%`@*R7T@4 K%`@*x٤/`(RCo0, R7JT o0 xCI DCT ovdrؐnUwaP@j4~ mȅ8~6${8 ζ̼WE+ .ՍSx\$?}w>/O١:AQ/䏼e'v\;g=g<~|XQGad%}yQSi/nbKoXǴh}9L)ƩUseQ͌<]izf&a=*VF-أOꪬ%lxXt uZvxRS͏0J<ڋ ?&?WLe^֓'%6<%d涒2q[ir"b6z$!7(8,'e5u.|ـ|LVܞ|C0UtrR@&7i%oғ`Vvnp_h*|qE8QvƱx{\zѕ1 Io!r dbG`u# Ԝ-,a }:pB[:EakYF^©C#S};q~-HDwEl0c3ɌÌ.Ḙ ̅{&. \Hhkpbr&.&Vźh/h&3(55G\hj]8뜼8N]5y-5w GWcQOjnNlt8l^^:N}M9[zlDD)q;ec9Hci8#yC@sBd{1&S4'XN )Sܱ13Icf=\b⼿?xF 틡lB˔%Z Ēn9khzҫ-G,mZF.%P[7RqhF>.duUFң-?AK-Dȋ2x߳e5g[mXϏrk:ɴMJZ^ȭn,.m}T+goܣ1e|rWǖΨ{6~<}D4vVٌڧ(amAKBmNw0ہLeo\;A^kXW;V+리Wk[얼DftYNk쳲{Wb1qz(boۤҽ+5,{EI1XobEBԳͥVnj֤}*ȇ&,ךd u9=In1GGFz`'k'^Q; wn~{B6vU|ɎޖX6kZ]e3w:Q204|~ݖX%9q62'>)k/Vӌe,Ԍhd"4Ʊb#tڶ )Y_Qpnm%:Cdz}wW+jGU˜ f39j`\5f\6B@F ǫHA{{hDW`yY_PK@v oPK95Fword/document.xmlVێ6 }W/㝝U ..촯Fjt1$zח -}-")/^~0:;I )ɤN({lOW0+vV6A#FZЃ 5dI(]p-3Եr~yoH<7]/-Z \c̱( ')QGE! F),pJdQ?IJrx~zuZf#=1ݐ%e,Iu>WB@|k^r9l2?L3.Wm\VQG$k)\uvkQF)$]e|4 Th݆ʫc"~wSQ=B-Aβg@U/$ 5ƊB:7hNk7fO/P#m'%L"޽(i7rא/Ss<2r[ˋ!WJF%e]WѠ\Z.\@C)ӈߊdB3nk7"=qY7I@gi#٦^d:eKplab$QWVl;*erƿI6^Ixs:&~_b1x7G,Sv<`κnR3gqI` ok &űzܛ;3] ׍c?-zr)+.6wvuuU_m/rnn2PK0s PK95FdocProps/app.xmlN0E|Edu8DQ*'Ex"cOZ#dOqA*]wyΜlr%EI2Ie-y5"r+vZrH { C@1K@J8HMdS7J*ˆ‚`%ܟ䏸Ztt_|>:փ#tϧI=| s!F6r+]gJpL)u;w-+Ni>EÐJS&eЗ4 ` ;,9G`MDtF|Bv{@1 A9$_^Fګ A \^}b2}`m B_`suJD3$3RY9?Ogmjl,蝤2RP&8Y 8sԅ< ` }Yxt p-Rpzo0e#d@ PKc fPK95F[Content_Types].xmlMO0 U͆BHaqF!q@$t[Z۸Dlq>]6YL1I@s# 4Ooȴ`iBzހb>34F* jjc5r萆AqN Hf̅ AiOܭ " Vr]hCK7XFZ L0Nlpw ]!a^ZMUI(g=-B/=hCXOa|@L79G &_ ɨT8AW٫zE]`L7t2V-ct:AW{Z}D1ę3SmX)@ł rz67;dbw(ݦ/?PK|_PK95F#= _rels/.relsPK95Frv"word/_rels/document.xml.relsPK95FdQ`word/fontTable.xmlPK95FB~word/settings.xmlPK95F5]word/footer1.xmlPK95FS2word/header1.xmlPK95Fj\q79word/media/image4.jpegPK95F(>?@word/theme/theme1.xmlPK95F@v o6Fword/styles.xmlPK95F0s Pword/document.xmlPK95F %5TdocProps/app.xmlPK95Fc fmUdocProps/core.xmlPK95F|_W[Content_Types].xmlPK ?Xpandoc-1.16.0.2~dfsg/tests/docx/headers.native0000644000000000000000000000202212645626061017671 0ustar rootroot[Header 1 ("a-test-of-headers",[],[]) [Str "A",Space,Str "Test",Space,Str "of",Space,Str "Headers"] ,Header 2 ("second-level",[],[]) [Str "Second",Space,Str "Level"] ,Para [Str "Some",Space,Str "plain",Space,Str "text."] ,Header 3 ("third-level",[],[]) [Str "Third",Space,Str "level"] ,Para [Str "Some",Space,Str "more",Space,Str "plain",Space,Str "text."] ,Header 4 ("fourth-level",[],[]) [Str "Fourth",Space,Str "level"] ,Para [Str "Some",Space,Str "more",Space,Str "plain",Space,Str "text."] ,Header 5 ("fifth-level",[],[]) [Str "Fifth",Space,Str "level"] ,Para [Str "Some",Space,Str "more",Space,Str "plain",Space,Str "text."] ,Header 6 ("sixth-level",[],[]) [Str "Sixth",Space,Str "level"] ,Para [Str "Some",Space,Str "more",Space,Str "plain",Space,Str "text."] ,Para [Str "Seventh",Space,Str "level"] ,Para [Str "Since",Space,Str "no",Space,Str "Heading",Space,Str "7",Space,Str "style",Space,Str "exists",Space,Str "in",Space,Str "styles.xml,",Space,Str "this",Space,Str "gets",Space,Str "converted",Space,Str "to",Space,Str "Span."]] pandoc-1.16.0.2~dfsg/tests/docx/inline_formatting.native0000644000000000000000000000140112645626061021766 0ustar rootroot[Para [Str "Regular",Space,Str "text",Space,Emph [Str "italics"],Space,Strong [Str "bold",Space,Emph [Str "bold",Space,Str "italics"]],Str "."] ,Para [Str "This",Space,Str "is",Space,SmallCaps [Str "Small",Space,Str "Caps"],Str ",",Space,Str "and",Space,Str "this",Space,Str "is",Space,Strikeout [Str "strikethrough"],Str "."] ,Para [Str "Some",Space,Str "people",Space,Str "use",Space,Emph [Str "single",Space,Str "underlines",Space,Str "for",Space,Emph [Str "emphasis"]],Str "."] ,Para [Str "Above",Space,Str "the",Space,Str "line",Space,Str "is",Space,Superscript [Str "superscript"],Space,Str "and",Space,Str "below",Space,Str "the",Space,Str "line",Space,Str "is",Space,Subscript [Str "subscript"],Str "."] ,Para [Str "A",Space,Str "line",LineBreak,Str "break."]] pandoc-1.16.0.2~dfsg/tests/docx/unicode.native0000644000000000000000000000016512645626062017713 0ustar rootroot[Para [Str "Hello,",Space,Str "\19990\30028.",Space,Str "This",Space,Str "costs",Space,Str "\8364\&10.\8744\8744("]] pandoc-1.16.0.2~dfsg/tests/docx/verbatim_subsuper.docx0000644000000000000000000002416112645626061021476 0ustar rootrootPK mUF ]$[Content_Types].xmlN0E|E-Jܲ@5*Q>u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPK mUF? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,g|'CC†jW)9 5G:gVLiY5%uq͕nm\ԯE%w]\_C]PEd.Con [w%7RLRi|c zsOQ ~94 LPK mUFz0word/_rels/document.xml.relsӻN0N(邐NrrE)зE8E ,ٲ7o5Ot~4Z@P7u/z}my$)Lh= k0g}3>3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PK mUF4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PK mUF&word/numbering.xmln@ ($]JMel2 'oصC+`Ϝ3,Iy(H##_O GrqiNBDt$,qU5֐%Ag)[f#*[.Q 㱪 Tg gLSs"HZH5:F8tHqd⒯DΓ  Fke2䜺Eq )f}[৘ܶ, YeO Ìkt6TML;a7fw}lġ<~m"x_Q'ܑR8݇o3lkv7wu~,O:5t}n(|V}v}XQƃ Gb'܈S1'S@UBS";_2Q) }O lQ\eIp3i@2g.$r9Y)sa?vn A MyWT)k( ,jH+%/zm?̈|3;'H(anql pҵsㇿ?_PCj!=e,h47opCcɤG'"|^-9<#^c/` }.t"H{^F3&`R!L^Piv4Axp0J#)tׇ] ?pˍw +QIQP!ߕ 2(S(ːЈSbK/>k:)G5IB Lr]|5!GOrxHn ~IDJLņfW<>0\8# gtmǞn 9m F0̬ hNa@hN֗ѤCuvP%F T,L<Ʌ\H AS+L?M=䫯l8Mma5.8C%+<\ȏ3G9P(Y8f>O7E+*9pyhڙ˽9?s9sӣg2AE̜u\*t}.ǹópbph|8 á¡^v1I4ϛW}vOxM<^ٚb AI0H:{$= o]r>Rjs7IJRYMDXB JWYrY E/֝٪Dp&("-%g܆yVLo`+{?rMܴŌDAiF^FaU:!=$`XTV\Q6;HFDg-m]S~9.z/QC6B_%|mSh <=20$T4Srڧg3xZyFݨos6{l#ʕ?SuKfNvKV5]fm07e;@/91bBB[a'ӽ(x\ʈ)I9\vETn#(y,?- huM r}%EoL̕z"Zoöφz`4s4lҸPO݈^^GUg^n* >,~2cŴr딫h|@E!7CHؖ䯖or-]*wDFM$J;(jzI!\ńٛR3ܷҐUI+0me4^kCٴ2;t 58gN7I &dy!l=~߈=lyǹ䞯so2wǀp-7NF}q׏zč {8NjtU;vd0)7Lw<ƘOuJϛVG:~JMǡ'|e矶nGN8πNn8Mffo}ԧ6u#иi @NaL:9 @f48N2un4C;u੣œtz1a zp nZ^q:hA%ʝ-\yLϬ88~bYL֠7XTRObɟTBg&(T (R6(FM8<͙wrlcqH.ƆPK mUFudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PK!)xDudocProps/app.xmlRj0fʆCS$Aۢ$I}Gqwס4͓u bصM6L.~m cc]{>DF$BٵsVf,i 108C<X}/^%{΂x+jcLbXCOsȤU;~c#Ϡ,n& }p#-uf)`?aFÒ_%WA\398psejH02񱪭!tAb,1Mo l@]9a8jzDwyH}=\mx:$4˾+ YqRC#K9F5aM'[^'NbPK!\word/theme/theme1.xmlYOoE#F{o'NDuر i-q;N3' G$$DAč*iEP~wq4;{o?g^;N:$BR64Mvsi-@R4Œ mUb V*XX! cyg$w.Q "@oWL8*Bycjđ0蠦r,[LC9VbX*x_yuoBL͐u_. DKfN1엓:+ۥ~`jn[Zp֖zg,tV@bW/Oټl6Ws[R?S֒7 _כ[֪7 _w]ŌShN'^Bxk_[dC]zOլ\K=.:@MgdCf/o\ycB95B24S CEL|gO'sקo>W=n#p̰ZN|ӪV:8z1f؃k;ڇcp7#z8]Y / \{t\}}spķ=ʠoRVL3N(B<|ݥuK>P.EMLhɦM .co;əmr"*0#̡=6Kր0i1;$P0!YݩjbiXJB5IgAФ޲a6{P g֢)҉-Ìq8RmcWyXg/u]6Q_Ê5H Z2PU]Ǽ"GGFbCSOD%,p 6ޚwq̲R_gJSbj9)ed(w:/ak;6jAq11_xzG~F<:ɮ>O&kNa4dht\?J&l O٠NRpwhpse)tp)af] 27n}mk]\S,+a2g^Az )˙>E G鿰L7)'PK!+word/fontTable.xmlU1n0 X줮;h]ҡp@ӔEHڊWgܡ=B!6 lÉk.n: O%0&LK"癙0FB8r5xe`߸}{_\hZP f4~gtK%"N) k{ dƇ `\. a+a+N \8߬Uͧ4[G% -Q\Qa{BÝV$Ҽ~jBʤCkᢲgFpJ 3D9S}BSڡ納g^I\1Y'v!i '.%1OM,nRR]Oi˽1QO,{0}pVtGN8czѬ[|t[up1j͆iZftNGuyݟ9gAy)]wʿlBcNx(i۲zQp!'͂G{a_ nZWJTբ8VNS<+-N{E u: M˗ x@n<֫6-Y 7J2&^T;vLs#l>Æd(֢,r^GRj79)'/8ŽRW͑pvl!%yrM,v&k73'EZj|$#8ϾPK!ʳCword/webSettings.xmlQK0wP򾦕!RA& a\e6ė܏jlqH}+xS+6QPR~P=$*7?`St+B#%xnJ\I:?aLoIGyWU⛉(8F2e=&Џ2!D@8{2 gtD1|l$O(n^&QRtYv,l?1w_PK mUF ]$[Content_Types].xmlPK mUF? _rels/.relsPK mUFR word/document.xmlPK mUFz0word/_rels/document.xml.relsPK mUF4o}word/_rels/footnotes.xml.relsPK mUF&word/numbering.xmlPK mUF\uCU word/styles.xmlPK mUFEL\word/footnotes.xmlPK mUFudocProps/core.xmlPK!)xDudocProps/app.xmlPK!\Rword/theme/theme1.xmlPK!+word/fontTable.xmlPKKFVI word/settings.xmlUT Tux PK!ʳC#word/webSettings.xmlPK$pandoc-1.16.0.2~dfsg/tests/docx/track_changes_deletion_accept.native0000644000000000000000000000016712645626062024265 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "text",Space,Str "with",Space,Str "a",Space,Str "deletion."]] pandoc-1.16.0.2~dfsg/tests/docx/image.docx0000644000000000000000000011011612645626061017013 0ustar rootrootPK!V[Content_Types].xml (TKO@v1A$b({gA$@QҤ1z7Y72UΞ5K0S g&m0g (fցJi^}ŝ~\qiM1Xw!.ZYr>r&7Sl uT9 dfS::9"#MӫAhR߭/xa\0k,?9o% ouTP^5߫XItX ~CcMgkv6t [ ?[%Tl )ibR0V"=Y %m[92%vr|PФʮk)N1 (vpU?PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!x-;=word/_rels/document.xml.rels (N0HC;qSEi/+qvubȻ1JH\,y-|.Vv6eIDZW\pe: cd봠ѽJh^*s^JRj wչ7!)XP1'Ԧ_e%1lJfwxѺSVa}a0qO4'uivBʽn7 Am?샦S29XE64٧<DKRQMՎ3"8 QbX8V\tAr-KHO4F%I"?!K %˘6_m:龓0X&tOpZ 8 -,s-b<1=እVԋVYFXOl܋t_&7Xo\Kė7Q*V HT~ ,@ǩ7[1(s T4Ղ*j}[~vL b`]-Wy řaT"eL,M&hwH u +KeO%ZS8J.O뽆^#h<It,"2OQ0 8ǃ`/Z)%k+3ƝX@BObFQ(8Φ۰dGjt -INН /u.`hͥ斊C QMͭiR@"zޔczqK{(=8CA^hPqq)s94{d{w9C=(8RH .A@ Ӛ^=J:Rqis@$cIӚq' ๢AcP\wu84cP2>``v4zNM!?J:IGF9+8'CF惌Tp1IߊPn>SQF*8@с0;tOF23Eg4uRsi(9z1Όh4cތ{Q4˚:Qhsw^d⎣(osGQAP=(=9*ڊO9CҁźR)@G4>(ւ(֏zfJ)1җhyH)1h8~4ctiO=8}h^hA8ǵSF=J8 PzRg R3@ 4ё@8ўh݁Q@OzL❻JLڀ}=isOΌ( /OCџh$JL=@8&OA  A?J7zNhOZ7qڌ?:M&p)sg@ 9tҍJ3GџaF~4gF Kџh@ JNya@ zҌwҍ;<s3)=)r0hdgUN:ENbtzbiwqp´{W o^5{n$B{W&F.ٖsJ:Z23Qa8?tsN&~Qg@4i3€ y ғ<tJ=:QaRF~nߝǵ&sK&y(')s({Q;Q{ѓqyBO/9h=;sF8I 4HX2Ihq9'ѓ zHI'"=i63i3@ {ѷ9( A4 QϿHILQ >'Tc9RdLS@ 13ތz6Q:ѓ*Lw.9ɥ4җL3O&O'5[(n֥ z縡]&PA&*zK LM?k 肿ek0'T|15RZ֐<;q\&plk+u^pXN~'xҢMoa*LSW|Vv}(:L:1ۭ.:)}\cȣ$x)8* 8\{@ >'(P=IiKwb;(>FH@ QIz(C@u/G9Ê;i_֌x?(1ך1@qF=#Z:\4`rZ)xޓ1@ ސQ`\ⓌQz6Z^ })1Z6qJqF3ހcތ{`4H( {1w)#(ǽ/Fw/JQLsF;J9Z1^ӭVl6֠Da5a[_2xáLca*]%& ipSߠxwU[2,+H3y9k|KNHby1B}KUxt w#0m-d;@597ǛDEv8u|68Lю)S] g4`֍?/ uȤڌ:s)JA\RbJ0}hq@ ތF( Qҕ'zIvFR?).j?' 8nRCu4F}K@_Ҍ(ғ>)x_Ҍ{u/^|Pnϵ/CNJ7phϧzSZCwP@Ҁw>ng(Z\QMhqG?.?€wFԽ{@ (qG~O=s7ѿPwAqyid2YzzSU`R4Jڢ8&6Ǵ^0I~5)qsGa'6JIl$r =Vd2v0\nLZkUn[4i8)Q5O{5t:Æ&-K<2K0qpi_*^j]|M"gHR+Iࢻ6#6.% &`}{x15㨠g?QP7RR4c4nQpJ7{R?&zfԧ94q?&zQF@]ԛQ4g7ZzRn &:т?TqFIPq@#@o)gր 1玴nҀ.Fzѻ'?Q}g7z<J1RQ?JLJ6uiwPcQhh_J0{0IQќ}h1nK.84BzR@ 7|.NV9 R4I$VP\:xr7Z+(߆ K~]P:KY3MiZl{z&5Rw:#ц梞Auaӊ%m!^ey:i&zskiqڹX?N: ͧrٳ-g5 ~mSq{ng/\o+uh߳9V:#WZ1hPO><1F8(?LQקҀK7~SZvE"n>أPylQZ:?J]3I?Z1Fyhvu?moFyxpjPOր 3"_4f K@ ? ?''FM.?m99FnmG~m9sIs@)BƛM)Ƞ*?!ߥ;PWNiA>) J? PO@ 摆4zaaLxr)]Ur?JME@ ֛,iUr9k7o-ɅI隊#,|)yUZ+:jN잝cn=[r?U[{7A'^p DOZ6I'o推Emюȝ<||ÊeU&^1Uu+5Ey:nI(W.srQU'r)gQz5@#o1=s,FN3>4EF%װ$ՓRq |ͬxMk1ɮ'T𶴶ls{rQSv5fk%:}\? j KoF!)Zqvb9Sivsʗ+^oj Jӵ(s&x;oi:s@\I3@(?:((=A_ǡ$Q&9PRݱ1!8=xn=)14 .@&9q@ Z sRm"o=(3)A#ڀ bc .}n: M(ǡfzTgkOl0AHGfڕ֏~+SK#e(zMo&wpΥgDculѕo6 W[AC;Z6G1RuFPWZb'IoJ+ nx}gĖQ4 Byo,2mM/5,&_~We=S;B:xNΔ3k͵ƯOV]k]Of""xH'XI^o~Iw'qyVVGfirfcW{V},).\_Q[3u=iAϥt((#w^?C c Wc~^#e *SQcvB-|3^>pL]/u3dv%VnښYoҊzOҽg?Daz'*;[n\r:-nIHn Ѷ|@pKXzY|?p8%#v:s hm|O8[ZFuEK[rY=ת?!l^SS:54"~udzQ\sI џj]vn>}EsҀ9"o_K AE;Q@ }hqI !'ipZ0xDI)9'ު]91,*HI:nI7o/rFsN} Dft<1ibz,-rn<{&7Yā_qZQnؙa*-:1ғk6Yo~;q M5trJCJLҝ:8h4vր IPA3ȤSrsGKKǭ794d ^74s/K@ H Fp0(W$nOSP9y4'^oQXNq]NB5_ hkHljTmift+dmQI2L8To$r. k;vy\&Rq^6#N\TeRIE]5SS^Y1[6+9o|Gа^Uys1C<⚸:8'h7d3tWu]jnY3\֠'5 \E4U=:Qәq'(˂) pOY02{7m݁#ِq5 zҶY^,a~W0)d{p3MR&-R $J9 Ð9!Үo. L̠`:[0?jHmhth4FZK{ltc[' qQjS]VP~w\(Z}廄fV1 zU;EaEr^z4ӶMJ~+j|_UerA9hslx#Ҽ6!X9V7s^UUqꎪZXNx'?F*[_wC}w9_eWد~~aXo>1O~q,bT3 B~s lWsh?zZݢXq 3}}*RWOCFPn2VhoK(9z$LG4RPsqFiF3A4R(ipižgPmƞtnJM>H'c[T3@$*M[|JЖȠ{T%1)J bcksڹ'I2 9^}f]Z+u q5:ד^2;)qgp.-|R0#ixNlH1n #n=NUjLٰj,ڮƚugN}ǯ ~\Uw8թ~UYD:l NH57O@NkJVLh٣).iԚ1y6&.}k~"ibuWa|/5SElC:/T-{$R>qfWʽd\($81;pQcLcl/zʱijZٻx쌯!@FOSRFnЗ9S?*чKDk7y9zʞ8]1k7'jj!=ꮚ-D&P>b;k>_g[=*{-6]r"$?;گgO|Թ{G'xzRQ8Kڿ.N:qQ43W6EnȀ*2du++=^,G-}ѝuF.浪<"m>~Wp+늻-rAE?C_)=͘=;ڮ45 Z4xXV* 4q~4XПpk^V=Kgv`Bg>;0.#֔k:\sjߞ2?:OTTi+-P8_|SwzbMԊkvJLMpyUMy~*i>GT短|gX."]g.Fckٻ(PLξ,lڽr!< ԼE>T}U>^[Isq1hڦm[٧l^1i%r ]%qlv:,[?Jh}ZϱP ;Sqlv^񲁞n^G\TD!%9=j{Pwѷa9;XέՇ*Qz v6db݉=4T!t@"amUj5U :UI˦;uL~dՊO-NB8\28;!00FY[Mhynb Yd4ni*5F/v/ylG/UR6 .P[͹@TY\ ҥPQA qڻ /-HG``R=MPJT1ftIf_Zf^탌c7gXSp֩V[\+tug8*٩p35MP:⡓]@x.;RMeJ,J7Ҩ\0~־mJV_HkF%loֻoe4n&C(Yj5~>g9ȩf]>> 4kIN܁$lez0u OB"|cfUl<~W:5g?AߍBi14Rt(7`zҀu.oPQ;ќ.sQHǦjLsA8 П⦵]^)0sE9wr3YB3ҷ.fM6zffȠEW&:VQ- $PtN~Z*FGJlǽW{5է/;#%ϖۡ)}8X8kǫBOۏOJܒAК%ǡ=wB]Nr}0u uKyWU ^#ѣӥj9_Ҳٮlmcc]SyG*_-U':hVGNՓ%az01?S\@8V^SM';7_ūc"9pO";rx3wv\^9j'y۲Rxo{Y{SLmS\욂'd$ Sύufuu\PaTF)Kl0e$1ɭ 7&y :UILtȚdTzLUJUe67t<^1n1'PWI[xji9u&XGB 漜4>^9 =VVd[cx⼎k}U) R]I_>qA̅|=;D[d/IlL 2{Ԓ0K1ڷգ7I63- WLOsVq$l ۥ,Jf<]Tpciem(}LыԹII5'~?Lc ɱV=k7uK QL/Ԏ\Vo- v|5z1>F.֤R߹ ٝݝ]pM ;F~^JZ(ι#֪G -9sTf׼97Qmo-XnVtTug:GMwugX^jA(.XKjOJhM"53Z0؊m<Z=kϩdkrFUd޹\sPZgTkIGE4&y-"ikƫ\qsmq! zk{Xsڢkxy^TUh9^3UI)WNpVkypU0G nk +Kgϣsȯ#ԥi56$8ZVD 9/`*Os%*{U05ǗkjxMD'xxlBs`C0ڭv,n@<8n01sYYH.{/+7ݭ6'6JӬiGA>6~oLJ1x_GkN^458 4Uݻ -Jrέi%PI; ˜+b c JǑ0~yOM(5 y2RsZAE633e'8Mv ѯ-yS%$gμ|5"Ciɿ`yYpW_~ߴ^˹n|wpjlLk 4c$Oq E~x×+?РCp䪝 <]5ٿ`9;4y?"m%7gt2FA]?׊m^9ᛧ 51vMGƳQZa1m6U;d1%qf=kMYUmGFZENG5Ԗ:g^6H>ϡ4/AIT G6z{+TiںΡO*)T`^q8l]n)8r=럞t*)ĚÖf׆5O 0;en2޾&7Zu}H 9g}hKSQqd_zA_QCFQ}Jp&2EE}c@4g:j1&9LP:Rt ȤK֐Qϭ(G4#*UsPF} FN&LU>$Utۑk R:Tǒ͉UčRY[.;!R] y4 ]?֌1URB(/7y ^3g-ח*ޖ:Iw2?ֵT}83}?n1^ukxJr:cZH},#qsƔX&f Ԉ9^=<-i\}z 𝼑"GnJ |*^/c! N;F ?CJ#(A]+³Y!/kh/3K8c'aӥ[|ko Gp8p~#$? FzWU\_O̩Sz:N\A]]lUFFMx}-X[ِ7 cjSc #e4.iSդ֭orxSz-.n]G o||h~0Ҽ<4`lY+n])\~"_iO:鶜*I,d%բ#䲬,GݾxFRBk3ӂaq7{'¬J_7|;55m(zgOi?!q +03RE&r1@9=( RLQAQF=(#pZ Z9'z0:Q3z⎔1A'^9# ۚ~t*g3!;Umǩl 95H:%͚|}*+m8Jsz 14URV;ϤQG-4ֱ!gLTw8U&47',v_?9Qڜna C5Bk U˱'YwU5ה;iAI`lV۳]ɜə9=+qU==52 Ҽ_^uW]5uHUxbb^k{~|WEGJ݃Qz2E*ƫbIZap9'2kՅWqQ#r61sEz+w6mU#wxQ0"ɷ`G;4eea\+žPx'1##j MBЅ.zїQ\1U5\[~-•4ȶr*D9)Vo ?tWNS:kq[2"FHҹ"xJܶ`w\/Il@Ƹ M뻽zl/c+P㨯0-X㞕:_Ls}Si Oa^VEUs$gxrj׳j{]8F=ΰmxZ37/R{wnv NCgBw>-6|܀>溽J0 7TqK_6$zC$sчKkg 5r̛~HY. `ʞVՔlF}N!ƵNsrKVՍ&4WIa Th%_ 8>>#ܧs޾ :4tG,d&5Ȓ@uPֲ3h|句aAEI~fN23V(9MоsS;Ps6tg Yڔp5b)A.jiM(atjgĒ:r}kk'K ozuKr-R2Oz)`"\-^UDZWKr$EnsݪgYT.$i;kW^Jq9 k ༬zZeyW 5Ľv=hVQ'{{T,ִ y>VqP~ʖYW۫ϠMBo3 pbJfF?JqsP u\SIu$jM?eH˛kG&B^:活ǖSRpuwlYHo~ {|^#Ih>rQ,?50"ҸmMx+fҖ*Ҹ <כac*S]=|yFQsV{GJb( XeQc Ҹ%vDݗEC2}j& ֡2P9_Qcr{ nYONbsֳ\8}>Cר5B|cˬ捜 ׂ9;a(|?*A=+I!jbSS:>tPFMt9; TOrwmR~& CrwzLw >vnyd;#3]I{bo!\}Ns%"-V]͆Xv@3+.eKTeO@+u9Pn-1=³c[;Af+hRQ7ZRb`/n,02 zg=A(Tu=/C2̨^1m{,g{ΤSfnu <eW1byQ*?5`qQƻW)J!5I9R})Q5Rh4c JS^=i'=iy掘ւh1~tCh”x2D.:Imdc{hv2sޡk TߝnsLd =}96U$Ж[N+]H؉xRś*dTKdz ۀիNqҩ,t8 Cv䁽?B#,dzbt~a mZĝr\ߩҼ3*08< {.k8XsK(ks]tabFOI:]-bW#1-$'SRKCֳnu<._GWivxZh>Ƽ.%26V͓P pMx{*0(9rO54ۉm,>.FʼY`jTz&^g+.ٮO`Wj1S(UqF*kdS/Up̢jhm\{`S,=+_-;g/Í.NZm3ѥN( @A` '"Xjd*+\]?yGf_M>Һ:Pv52#A8mѩiu=擡ZՍ5=" HIwg 5ө*#MO)RqrTUHͭR p]AIHؘ кDm% Nĉ2O^1\E4PE^=!I8)E٣qN6/Ka>9=+ 3,?u+~'k:-[f': k]6u >Y 1،uOI,]Cg)hlLDRxfB ,+Ԯ$E\[VjnMDE۞UUu]n.5/{<¦ xψV|b8A'8Vrӎoa'k;[dV,q,w$KNjK3\SN5V&.>Q4`STQs AR;bs/8i:PsJqA<ڀA&HjwR=>go$RǽP^@}{{v uKތ hiGLPsFNi4Z?J3Gh5NPry:̍҇ ̆Cҙ;,ՙ}*˃&D8nwSNL͸!$Y.NZ#bxB&zWed=*F\nbIɩ_6A flJ9yH$yJ˰SUDvb Dx"Sc*L(W+ |M俲f{՘|8[&@t$О2VZn}֭on {9⢚q(֩-IJ#ǽXXJe$!j"ވ\lMpk0@#5Ջu?wFMʗl=_HH3(9VkOݮ+tT֘L=;Eb*ǑA fin{CU>fI֨&-+- \G|*(zzVMsbA$׏\wMlT8ksF J#' }6YFy.[kTF>Y#• cVZ•3z4R\?@R#'qQ5'o͊iq+ݡE[TyUy ̋>D2=ɦu:J? >{۽v)clc5ڃ>tOZum,)5GklHz9{ٸ,3)K#yrsV̩f=s^|6C5@mHgkMZa(x_ϭvҥVKDs?<' %[۽̌z(sWi귷uF9xn[o'kKzT{5gLCzCD*U: S=(=G@1_ ކPC8ރ+B+Xے=kh)yx9EMnwR2{gp6W. r5~l}V AkףUUWJ'u8( (y3 .: tIؠ0.h33izv'TvC\̚Ŀw"W"@Mʃ]`)JNQHӅ$jgRMs~.gK?FvI?ˑ渱5Bڅ)UGfONɋNy=쵲#^߲}~EέGvBQld]OAL[Ll `1xZrdp:QO ﱿ%#xb+f ? ѷrǧjőtP]v},Nx?tJ^bC\(N:2X^)jYЌpEO{dž՝H`hC{)q96ΌzPF(w@?;RNZZ@ G>m)zKAPwPM!QOfC[X l` I*&싾@ Ҳ[hf5~CXt'Bu9z|m{{f ɯCӭ`WYilugKǩd ;qKDz掜gfO҂}#Rh;z9#@r RWuZŤmC֭La?/ L֡F1aE-N-pɚNiudbI8}j^9첌\U;%h׻fw8$=\czB$bg{[;HV?&1djH-/#nI沱Ԫ9N0Vva,(r+أmqĨ,2yhykbD3VdlW K4P~ qQJ@68FNzU w4TU٧/ӁU\n4TR8*yV_ @[ֵ.\y5VNxUK&7[0WM1Pۭ**|un%FP:dbPzP0Mќ )Iڎ\h4>Tq(F~h{{Q~`IQPdO=*R7~5rc?#$VLZVbJAck -ʾQ`!@sLӂƴRG{W\Q Gqu<>McO>`⁂;?hJN?Kހ!B \0踫2)=]|)6@;B4qS4ȅLEc(vt'o"1XlV -G@+%E7yˤJy06Ҝq:J#6EWlj]"\2OJ&ȉyYIsiZznbe0r{6fi7J*a{N8 vS^q'z(=hQߓHϠsG\QG\Rh4v@֊Lq(ǽ 'J\~uG֎h=yZ1AMQ(ڃҀ`9)NMVGֱOJԹf{S#XUQE$8QԳ[$8gԾʢ•F?*\{s֏3 F=*L/>`dt:~T}i1H;A=)zǽqގ@F Qh~Ʀ8@ʼnP ;/?:/$#>΂:A4T2FI<ڥA@ʍIL3aՓCԮklv@GZNPh Qh>h!ǹڐ~c/h4u(1?t{c4A@ QIϦh<␜Q/NhgK3@sFy49&ޕA=~;Ri2yN9Rfvi3K_?8qϵ7qJO4{Rh^֝4!J~{~433 4Q&}4#J>((gJOz\i2qϭhc}):>!?1?xPOL~(h'3ϵ)h)3JNEHxO4qjp~&xZ:(?uG({1?.GI4u旰mE)<@PK!0C)word/theme/theme1.xmlYOo6w toc'vuر-MniP@I}úama[إ4:lЯGRX^6؊>$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK!|R/ word/settings.xmlVn8}_`A:\I8Eػ mJ?27_CRM-dr̙E>(xc4? ZQ&e~=9M눤+ 6}o]a9T RH[zEz#A"UFWdVOj%4qbC6NiOikdSLjI[VC3X-U .x pAIclG0@+^O픡O7F`-H L>DOO}OEߙB|Nc䖿ڱw22c(D]4RRql.Q_IWh05 q:M3`2j[:aП5d]"i [rwO)J{1zzG RٮtFA.51س>zuGuUD8 #m {p|xoyÑ5ʡtkLd_R:S:'"x+G5"g2k̍+?,늱 urC ,\Wz׋אoVӵxDW'sqOȉ rEDeI6~ (*0|m5I q* $* ʬmb0JqoDӨVGo!:op=An۪$.Vҏ{ y' P#ϥoJ ]ZFdr[c)g 6DkW52ٹܛ9Q|Kzl0y,\HE({7ލ2\Qo>ʎ([ 2|vf| 3|8Wп2}!`wD/NUAIm/2P_fTGg okz+g҄5C_,]AfءAT>sf] WSS[s51FV<}{4k/ g!-PK!Nword/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK!uku@word/stylesWithEffects.xml[r8 }ߙI6%;u2Lt$j%9~D˒%:"q80pe*ñSK?7^Nh)ə$S?xpfOLg7sYFHCKTV١‘Z|OT'c+N'Et/R7֥XFRI(P%P$w"~gO {|ZQ3wDgBV!(+{p mBe8Jd:(]֌JׅJmF܇A1!\$\Xg3fQ}z*q2n3&auYh ?b5ͅ|ߟ:Oetgedh6>+Rwt;T"h09qtDo*ʻ+ T?&WI?Gep&RB@Jwi.E|L_vf%4h ݋`#Z@DŘneef?+=3W$wZ-->K; ĈU&ȴ>bXY,AS\)RLMz|v~YqH5e TEtÔf;|ILC;σon8ebˣ ; &S*7aXvP눁Տk@l)};0 K۳fg:7 FegΣ\FsI*qCQx2~ԯ2BPC|4ylM/ ,6-*aGf)- T7 篆mz$Tw*M`uP5}TTQY'EÐ7h& C 2y`9L oMbsa7/7:yPi"oNDBRk& Caț4 y!oP XlnZ&o,P @8 {7:yPީ=`Y&`N0X!oEÐ7h& C 2y`9L 6=X2yܰ1;yP7 Z#`TMxM \ EÐ7aț4 yw7pMbs2y`Mbs^M@a;Nw*jɛvPRk&a`&oNyfMÐ7ațԟA#o,ɛĦ T&o=[/J:i=VITr%h,ݷCz2ƒj{!CWx o-ϝϦCj tۅ=I7S -;qq\K!ڕa[%4m=zTmsTqa[Q-Pw{ Wnţ"ۖBv el;7[tƛ{պМ*ui.[ `Cޝe|F?AU`CZ橁\ed"jL PVjԸOżE>v?gXPksrįm@i[I!|YJk nuA}{ ip&ӑ^mȎPK! TVdocProps/core.xml (QO0MP\D͞\bƷc4ulcڞӏsnɖU{N:'I4eN6pAL VrrGMMk /6`Q 89iOJΊ)2SXAү-@|>lZ1k[ 8ZletAA=+ǧ͊8}8M6ޟ ;Q _LHrP޵|e}\O~Rܛ0vNy%O*5hL' S2NIC\6,CKCx9zpsCl_c꜅qe 6] Ʌo2~i0~iݿly[=tD=)Sv؛'Ĕw;FS/tAaRpvJEƌTaM~ZEbd*5;Q @ "CzҠyTe?dңюvVēw K| P K PC|4HO []ð#+KMWmz$PMJ.sy,oX YGeML7 &@0M #0MnpM`ijY |U߁M]6/7vP] wěG8Pa9#oh&oh&oxwCo NSMM#m+޸x(lś@a{"%b;rM`#`(XܜI #ބ #0M #P '[śb˃śbk^ś@a;. ;Au:G`Ta9&0^z7<ę0M0M #P '[śb˃śbk^=ś@a;. ;AuM`Ta9#ox@3@8nF 3F N ,68M-7Ė*7s΋z`{ 48 ,&].e uVtHOv bCxPV;v!@(#ݏxJTp4m$z}0~R'oz\.Ipƙ?dg=YnA)*JJ XTU4m *|"vjA$<^7ǁ@ word/fontTable.xmlܔN0'VT vuZlGK w`0I6 (VKyLdm<&q9ѧVy9#,FW̠Ãoa5f(hRk2A̶ʙDiA,|s_yoQ%rbg^!=TMTTpʎ]&my,E%MsR+6Q+ZQf Yd \62A&$8ʨne#ID(Ad{`.[yRtۦq@FW_CeO SlsB CnvQxDY#|DS6/1Z^Z^^,t1:L]0 9.L]ڽ=+nqS3V1/#PK!)docProps/app.xml (Sn0 ?7JbYŐba[mϜLdIؠ׏vO4HɛGxWŲ,iwʇDzHV Sy޿F2 nRUvDa#Dvi}쁘ƃmk4zܣ#^.?|!t 6WajX7GߦY_zO+Yc,Yb >qx"rLj%䓏G D֩ZCF'Rq?ܾȿK1/s4tRK)T~5n1!t&&,nڪPC#݁aH#jHu]? a6* 8brHlCjC{snͱr-5pRpBoA(u&g3}w'LyQ^= Άdy8%w[@ޱ3yus߉PUŒa1PK-!V[Content_Types].xmlPK-!N _rels/.relsPK-!x-;=word/_rels/document.xml.relsPK-!;=a g word/document.xmlPK- !-yYY word/media/image1.jpgPK-!0C)gword/theme/theme1.xmlPK-!|R/ nword/settings.xmlPK-!Nrword/webSettings.xmlPK-!uku@sword/stylesWithEffects.xmlPK-! TV|docProps/core.xmlPK-! \=word/styles.xmlPK-!>@ ,word/fontTable.xmlPK-!)docProps/app.xmlPK Lpandoc-1.16.0.2~dfsg/tests/docx/track_changes_deletion_all.native0000644000000000000000000000037512645626062023577 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "text",Space,Str "with",Space,Str "a",Span ("",["deletion"],[("author","eng-dept"),("date","2014-06-25T10:42:00Z")]) [Str "n",Space,Str "excessively",Space,Str "modified"],Space,Str "deletion."]] pandoc-1.16.0.2~dfsg/tests/docx/verbatim_subsuper.native0000644000000000000000000000061112645626062022022 0ustar rootroot[Para [Str "m",Superscript [Str "2"]] ,Para [Str "m",Superscript [Code ("",[],[]) "2"]] ,Para [Code ("",[],[]) "m",Superscript [Str "2"]] ,Para [Code ("",[],[]) "m",Superscript [Code ("",[],[]) "2"]] ,Para [Str "m",Subscript [Str "2"]] ,Para [Str "m",Subscript [Code ("",[],[]) "2"]] ,Para [Code ("",[],[]) "m",Subscript [Str "2"]] ,Para [Code ("",[],[]) "m",Subscript [Code ("",[],[]) "2"]]] pandoc-1.16.0.2~dfsg/tests/docx/already_auto_ident.native0000644000000000000000000000021612645626061022115 0ustar rootroot[Header 1 ("anchor-header",[],[]) [Str "Anchor",Space,Str "Header"] ,Para [Str "A",Space,Link ("",[],[]) [Str "link"] ("#anchor-header","")]] pandoc-1.16.0.2~dfsg/tests/docx/notes.native0000644000000000000000000000054612645626061017417 0ustar rootroot[Header 2 ("a-footnote",[],[]) [Str "A",Space,Str "footnote"] ,Para [Str "Test",Space,Str "footnote.",Note [Para [Str "My",Space,Str "note."]],Space,Str "Test",Space,Str "endnote.",Note [Para [Str "This",Space,Str "is",Space,Str "an",Space,Str "endnote",Space,Str "at",Space,Str "the",Space,Str "end",Space,Str "of",Space,Str "the",Space,Str "document."]]]] pandoc-1.16.0.2~dfsg/tests/docx/trailing_spaces_in_formatting.native0000644000000000000000000000020712645626062024351 0ustar rootroot[Para [Str "Turn",Space,Str "my",Space,Emph [Str "formatting"],Space,Str "off",Space,Str "after",Space,Str "the",Space,Str "spaces."]] pandoc-1.16.0.2~dfsg/tests/docx/lists_writer.native0000644000000000000000000000107312645626061021015 0ustar rootroot[Header 2 ("some-nested-lists",[],[]) [Str "Some",Space,Str "nested",Space,Str "lists"] ,OrderedList (1,Decimal,Period) [[Para [Str "one"]] ,[Para [Str "two"] ,OrderedList (1,LowerAlpha,DefaultDelim) [[Para [Str "a"]] ,[Para [Str "b"]]]]] ,BulletList [[Para [Str "one"]] ,[Para [Str "two"] ,BulletList [[Para [Str "three"] ,BulletList [[Para [Str "four"]]]]]] ,[Para [Str "Same",Space,Str "list"]]] ,BulletList [[Para [Str "Different",Space,Str "list",Space,Str "adjacent",Space,Str "to",Space,Str "the",Space,Str "one",Space,Str "above."]]]] pandoc-1.16.0.2~dfsg/tests/docx/codeblock.native0000644000000000000000000000044312645626061020210 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "some",Space,Str "code:"] ,CodeBlock ("",[],[]) "readDocx :: ReaderOptions\n -> B.ByteString\n -> Pandoc" ,Para [Str "from",Space,Str "the",Space,Str "beginning",Space,Str "of",Space,Str "the",Space,Str "docx",Space,Str "reader."]] pandoc-1.16.0.2~dfsg/tests/docx/lists.native0000644000000000000000000000115112645626061017416 0ustar rootroot[Header 2 ("some-nested-lists",[],[]) [Str "Some",Space,Str "nested",Space,Str "lists"] ,OrderedList (1,Decimal,Period) [[Para [Str "one"]] ,[Para [Str "two"] ,OrderedList (1,LowerAlpha,DefaultDelim) [[Para [Str "a"]] ,[Para [Str "b"]]]]] ,BulletList [[Para [Str "one"]] ,[Para [Str "two"] ,BulletList [[Para [Str "three"] ,BulletList [[Para [Str "four"] ,Para [Str "Sub",Space,Str "paragraph"]]]]]] ,[Para [Str "Same",Space,Str "list"]]] ,BulletList [[Para [Str "Different",Space,Str "list",Space,Str "adjacent",Space,Str "to",Space,Str "the",Space,Str "one",Space,Str "above."]]]] pandoc-1.16.0.2~dfsg/tests/docx/german_styled_lists.docx0000644000000000000000000012566512645626061022023 0ustar rootrootPK!a'M[Content_Types].xml (V;o0?\ N"(,gh id Is1 ӭED}izfB캚tJe͞ +" D,l ξ\Mk 5kΣlX9V@ K+M&߹tbͦwЈU=?T̈́(O|/NGd[ŪzM-!{;>~xM ZA(WWN U].mk-a'6iJ#+@&";w0)Gc{4 ibb:_ [ؼ R唹 s+,.b\nUƖZ$G$uV<%맫,2J+H,Y../P1t/٢m\MIXSjyXנ܉F2ti;ˁG 5}8VYJ*&zW'޲F[-0ZR-DcWjqW}+x8ZL:qͷ\Z@t Y~mHOؼQD$$F7Wi%4$ܿ18X _Bojompp6t/$ Inu%?QdP[DD+hcGԇh/PK!h}H8word/document.xmlXO0~!;MB@D5önϓ8c[P&miA1i4s%gT&EŝT21߿X,R̥}4 ~9T!LR)G* CCrZ`)v,Beа: 8)- 5b r;x?3b3 I]`k:ROCߗj*l٘qfg/0>*HQQ9$ӂ7@y[_j^)REvE| ^ R|mzY++XfJmHF S8bEDa s6LW햚*[-FRQ)6[qbJ fQˡWՊQEAAۉ90Nhi,әJw}A9<8Gpɭ{ҍEd4T u}=ż1祘f$G4ZZk03䌢,'c?u^l鲟+QP=hlN)[+ }< %ΊSc-FKnq xoV)Oy~u]Kv5)Ǿ³te 6aQ_R`?u|rXv}PbulnhH;xwSR}G35M}ߋ]gRߦ>wv;&GA|ޘaR;w* y PK!'word/header1.xmlXYo6~/깉%_u@k$-ڗ(D$m%;CRM@ч97gF,5U > ( (OEb~ @3RNG_P%LuRt.I%->,Y9LEyRڪZ(J*RA՘5ѡW$h* ㍌]DBRxsJbP Pw+y%1l f_oĬGJ[uX< HeQiSsCXD*)7^K LnVie Ed׸g)RAkŕ32TP4^b`c5M&Un{.ԅ+X%]F@U6MZq$A&W .<`FP̼?S桠AI1 gsXpTB(~ A Y_ qW3GK3͍ 6cQJ,yaIF,7v)҉ jkhL)8"qJ >2'5MU0fNJ ErvOkؑK+8!0$mv!T 7s_lݏh2yI{nrF VjwRR9JÂX_O`]u GH &Y:Ips}*& _ԤK$Ɂ܍(ԢmQ"}J䄏nIp.z!AC-aֿ p$d}=[[`~uSp4֐O?PK!%8word/footer1.xmlUn0 ;vҮm:EE1mw٦!$9^,;1vˋk'[!m,KǏH J&tDTe/N)ɜUJBBwgM\8C[ڸYB8 ml xfU 2%BU1Wꍑm;{D!ٹTV vFע?Jѣx<\̰g;'Qu:ڔџh}(g]|TRPFzJ Emof_3+L%"oJ K+d_tI&Ɓ%4&GǓKo͠`ud|x2O[-ܴ{PzX+NB YfΏj!mY8,eۻ;ґ)? AO.9i^$szF;nrA?R0)-ȅ,YG8IsRK)Z=fWj299wc;ϰ#gHv)kڷR+j$ m9Q4cSzS`QK}mY 3;cF%!6ԱF'!Px]gr|c;)P?,4fPeˀ';y{OwfӖA˞kd'#8M' ̃%$˂L6'N ^ej#ڥXSC\Zo7k:8632Z4q}<6!kE(Ų7mH0HcY I-#&@?=*~)eXA״ u0{ "dk`RQq}gZQ^\̢R8+XJ_Rf܄H\9$ʈm2=3`xa(H@\X<;MsfЙPK -|/r/D,y\}2~jaoWp4 3`4{Qjδۯ”֊ i\Y$l8Ib2N%QYu-8Δ6|H>8;pHgvέ΅͈d| M֓E˟qIˏ"MTKd=OV ?yIt^V"?Nzp62i?Y}9?Exy_/fOBƀׁ{ U'sχ~@A6"vvQ}+sSٕ7{e…=r'RHf^ʻҡ8q"EI}D="RcrA`2[ʓLߕJm܃_-Yo+Ufk A~ٖC]cpvˍ3TBไ$6-+ UK'yP5?l}2O# zˆz@N4F6>LKPWKKH5JHZk2o[oB=0m=AE̦B ;bj!!dݏQBAjr<1 ~ki d^3L n"Cy\JwSivhY*%A} Q:L./3U!ư{G}6][ԠJ$h n(|C?Vv2u`w(; ulmխ~LU'+[r! M[qsEMBՅKdTmuUG=IɸB%Atf 'RqHaL7a.ye\QA2]w@ ېT@Fᯯ9σʺ wU̔pH%ʾ%,U`DQ^{ v Hu& qPAnE={} ۓ/f0*44oU$oœ?OǛknƬIS s,BٿS7^c,M }Dp/J*Iiuu[$2>[<' -z?d:٨kFgY,.ŏtvpkO{% ]&C,)T xqUR2F蹡:PK !* WWword/media/image1.pngPNG  IHDR$]. pHYs\A\AF> IDATxmřa=1B ? IL!Z Di7rC `>O}ΫFff4H E@N0fXLG1HݮlsN>PUUէOwUS/AD@D@D@D@D@D@D@)^RJIDK~տk> }\-7߼m;syr'ou o?s|aCcӱ;po['[J?t0mf) (XLN(*pꦖXV1߲?ؐVXA`tw> G2+[n1N&o-&UDc輕** ?>V'K)&rM__<7͖opZI'N<ыYPr8g/߿M$ɷLCс˨ oӞg0, οqN]t?3f?sjPqg]A!/=;Y܎CYfU ppN3ޅB6Zd[<'U*t,„^8wJod(Nic=9q=%2,h/Qo)!Z__nD޿]g %N>7eڡ)J%*v8W]~ꩧ]ܔv|I&G8Ih_`!_qYWhb;{{/`FY6Pp{ߞF̻h /Ԫ#Ku{7aG|Ǝ lc#!6,<˙Qg{vΞ;OUY#›f_u3hN18zmm{'sq7LRC9;:϶\P97ڜ9(#kСC>reTgJTU:eِ!+w^`5? x2-?OPw i1^hײ*tOnv(iYS/ix3O'r߅ݽ{7s{^|E\dɏ -!|ؽkSON 4%",h`YbRBs,q2^k &q.`D( 'ӖxB!ƉZ\sj78 ];2XDrׯ1aEu>|8OWP9% (oaHpbtxUtb3ۘ[V=Uuh{7iR:-&M0|r(WRdvE70*?rz)P;U8TnCہyp*N˝yBCc|9Q~k\n[b ^Ǫ/: .J[@Zr6z] Ȅk^Ѵ=Z pz^LH+'${&x+3;瑝CAiJ'E `Q4^ziyQz+.^Ǫ gB{~.CNi٥ȩ uʀ24C^$_;8]; Wcz*/ZyK<94Z`F,:0F q /D _ ,VuF6,;~.WwIv]՚Y.BECfw|ZlV<@l"=ǤБ_Zf{&V)!> * jH<, .˒Tk[U+bFt#M%6A+.1q&:Ny\Ym $9cMԊFݵjڶvA_.BAgPoh6փʞaT ۰f~g8dAKX)tKVz* Ei;?,.s2Eк&D`*q:cG+.)6ghP)L khm@cy <>s maR.H*|mwc5I"F_틢i.5 ٮqBljOv޻;V}Fdd(Ɇ8wM5MiU* xH[ۀLL.aar9r'ib;HrԲ2D`\A|=|^g0IX aU9K(&<⠱"̗F2F'(ksL`Sި`3:8:tWmy ! ^-Ës=gh}rmY4+c^{U82|XL){GЀyf}̥l-7"r[6ɝ疝X 㸵r(@lS<]+gϝӗχz-u޿ 5< _}Rګ7ƛǾyVsvf^e)(< U$yմZLg_%YE/ClӥȰWqu:.@&=lϚC՜>n=fOC`BA UBc@iǘp^}IXO^r)γM9Jr@IvV㡼DϹ'Nصk׀L,+̗Io4['+Ǩ"rhZW9"hܲ rbk3;deӃ["rDc?RikݏԇRL`qu=3D1F_ݗ_b6nj|yٶekuf!J, /dAsӱ`>6HŊ װI46>m<۞*FF3N:ɓ F &o2ՓaQ43E`ňmJe/5%Q!U.Z;"oqc #Ryk=F̋q`6gW/ʺ%B]Ę(Zf3AC"$p;?y;ϲw)52{{\k|_Җ˴/jυʨ/Ta8pRS@ܦ_5_ˤu`ʽcg,TJxxrj4vuN! L>=.0I&Cs+5UIX ds[۹kn0.nj D_35e,{P_0$9X ABcNESuKgLVf xw}`#w#/+.a-tv٢G 'JUL!x!zl=xQz:7?Ld N-K#V|ÏAPqYAf9°[w4rt#Λ-6KܹfN"; <䓽,7cV_(}#¹%{뭷rJ$3tz~С1*Llc:3y2x8M>ςwr/)i۳ s[:k2- fGK/[xx 3H0_~ %½wwGoU]QYK/G5 `Uxn\uDrM"54nqשg^`p *Qb{1oѕx_epk"Sft?6oAm]v҇})}(2Yѷ\g==8 `~o#Am4IDݶwܹ!UEjuD7ȁL11o𽼔(2 poxY'~3[g3C%΋`g#b#v3S3hO?4cw# k׮ǏG,`yb>e ;-V髵2 3Cޱ}{wQU?pe'X:ZtAy^AݜUJy6Rx"Q$_YAZ$vbjIeg6ۨ13`-eq^#ǹ|J]z.fO/],nbBu oFOt 197W; FOi3<޷ kT? ??Rdk.#u#;聑 2 @r][F.>4^ʺMH'Ϋ:F*4Oئ ۫jyy"SyEX9WU~'s^iUvt'@'ۤ{ݯčC?Cu*zdƿ?[O+Lt!9|x}JV5G#a5B^U^$rwU^Xo$x)7$#/-O&O=daJiSc*fNx&K9خ LH"+UlM\^!/+$M"(mMO!h > FדeqqtM$Tz.:OO5}#+dR s$\u *;ҒfS_n=l128o^)`uR2Ӱe3,ERv[, ^U:EA%AiN|Vby8dvD$cثk>ukI@*HVY[gv>.f3u//Wp.QM(m`~~ T2i UA_wAiwطJwp p&yZI"b^]zضޥ}^Zъe_w/\lzʽF󴝃8Vb\I xfgsk ~gvr [HDlȱ8Y UiHyfh=aqdĒ:琔sv#s͘ nv|[ljyT"dc4СY jlۺQD$Zwe.-&h^6+az.MPՍCw̺\(2օJe6͛]=s)>~x݌Ŷ:&R^ӳJ0 Q8ϡ oΜY9ٿm~ee)3Dkp,$])x4x@۝xKAebRn_{d27g$nsͫRb#=2י9OEcqѱ6۔Įsp )B?tjpGvpX m:im^ w먞g`nIԉгML6+jHrbM+ndvBL[5*EgSFkEK sUk$BM˗= #k(dGCWNMjnݿ Ŷwz#kٺFW &ϤP %Ei[->NDlS7pIu2qK~)[9"fhu ź7fga#_J[n57Ni*o 'O|;+u[wTD.Ekw}/<#P`Uq(|yTaP߹WO~aV?M -ȕZ>~¶Ӂ,B\)Ǐ\,' ?(ILW_O그5$3ڵbuu&9ߺL@ +#;< 8thMGlGTȚ]o"/.i8wY8CWԪmISicg;9{߶ucLGO 1_(+֫1[vSh]v݆.,,0Z7"8ɢh# 9rĿU)J7= W){]YkJ`b؎;wl5>t}w$m?\$seDAxWQ':kY赶&@1)ù3w07]b <3u.]3)Mgw| kޮlv\N,X7s6 s:| #~JuyM ֙-[{QVo)HBi5 &_(l9T3F/l6:{BUaSOszxƣS # X>X7i&)ϧ#s>*R^;kG_k-pKۿ''tK J=\ _;v4|Ř^氘.l E35=/MwaoWny]?WFo|u~:FN/8+1q76On ?^n|að y۾,{kLկuG(ZmNc6ӐX*nRS0*2qhqkM=^x!huۦ&SZus-RN=ͅGY~:M/_(Gg=f(pPdiia0VS`qc:ًz {nyڕItmcrsqn<ذX7Ҝ|S0y*kIsXrgtT&8x4z cPWF̊ːm2Hٷ> a‘s<:aS n>w+€f2$So[8~*ϧq-[npU._hB݈ׯoGz'&T h/xi}3Sua]eg zP.z?s_ UUNPl+rȿUFeW%x)dD(Z"bI!K/txq:cQ i BU9zRyL#E60׳bI$Mb:LP' f[ݍٍgF TBiQhw00r` X;K)mf摲橗a+[c (ւrhu{䂆l2`guƤ11{Ym-"[T3sxƢ.x{>tF: p$E.pjms{{k;=ú+-fH1M@Yrp\d:O?C :avZx{UOaₜk˥(Luyx޷Z4|ǃh@w [M-T0yDI,`:b,>zm}:/~]lW;Ыs$]6gȴиtG7\wcs # -~ px>#i3g{d nA^^1 =~xB('N+Һ7?li7xsr^L;Uzg^ԏgowkμkgIHwY9}O]AZ"nC噌ѢF!Nۿ'B^=v+ڂF{}C)VCx9܇dkJ8<6~ر{g09P([N 9~xځ=bSAu ?mpGl,XېgPtTq=_:ls~do|:yα|Os/X.b˿DzЋ M=Yǐ%n4|llXy{)svXu=n B%PnmY\`dnAS 9 x \0=N͸~܃ZHv&Ji6Ǭs6Fw;-qm{*ܡBceYcmMG6>x`T}L-^O-lu$ee-7kK;{oh^ð0 s!"Χ_SXcӲw42x-G089dd!t@lcs!Ou !߳UQ\FQ,C"׮}:b*#s,D1w协XqBVey~ٗ ȇ@ZKf#/\/Y3)dž-֫OB8yu+=ݳӕ" ogm岚>tBi*RHt ~: Y_l| kk vbcm)_LN܄֕ aշO#)v h$Gi[60T "J{曫_VPoSGdz_|P~i(T-T0BeL$]T*?ɬ֘C [|cuRD!6m=RAo.nN[oϴsD8:pݻQ3)æ_Qf\GIvu &'dw.@|^M'۞ˆ5Ɗ^n=4ۗ ?}\:w!&bz6]*bЗEu#sע}Y8l&4f=EG3ۆX/jM *$kz) ey.M?oĖɝp呎NKES$g09*.aSow}U'#@ML>)6>,?-FuއrKw_~  S a٥SUzKp,=>rIF 'IN=_k=#ՔSJMS>[[[;~ՑXDKlZK":MQnf8Az{tg9 ;8 l%W*ΒniXl{]>#͘U5%eV)@xݱh"eSbCf6J_au+ڌڂ{-% y\}\yIRKU"3s;,6fnw1L c ܋tKT>_hSz.-j<.9&XcZ}?ɡa-Y DTL#m`lr=[09J]Ǯv/ͷ_c-ֳNX&Y/u6]<ψf+qmrf|%EAQʻ'Tw'N|ߕ+WHDoXдh4aOe炶p/G: Z4nDy\o,N`md) kgofB.yҞ|^S=E<(m&ۃoTAho.PpLg7D;uر8H[C8LxZ'^O09J[+#;uKJ8y;/͏s0V-bǢ$m}Y-H')ڏxr: ]y#$2՚j9իuu@./NFH7;:bRJj-|(W1Ur>LN ϙC8y $nMc.'ۘg=f~R;~% g< "9sH^S2p ۞bs.<^6syM5ձƝS:Zem)v~ӉXe՘q &_Zg pcw;p7-J{f{NS&<O[rs,ΜC!!~kn`$Y+2fdwx~V+ 0hEi'Id|w;+ZeΉ}+hBV&Xq(Nª TlVo3]C%ݚQ&f(ʄhT2s;SOM阸^TߞaːU=jki8M$y y6s!? B}TlSA0&5ŽZ9-141,(bs5_O8E-are vwX#B9wOgDv/Y}Юm,&)8;Q9CQ֮?hzٲz:^Ez6vb\Uqkkv4:ƳWU|@G|6vX;~%s}?S:咐8Dx0~'g6G7+w@v`qhdr窼},ݗXzmV~%c9\b!l,s1d-*|m߹M/"XBy_x3i,;ڤh0c e{#Ov:L gufpLA\J8mr)Rٙp'0&oYWb-6g=뾶'|A~N mme6<wͰ~a ?zWUXCKRȳ=IP @Pz;=LW1ض T a@ U7TFWPdT\YE/GӐiVzJFukz-8Og]qcEeUV_kpɗdr&PmFrXWaw swj3tJoO9Шa'+D &gD4d~Hr&'pl?9cU*BL$j'0fn.i)<VJrcΨN^Xed̂I8ς!] 9_.v$@Ow};^ltqtsd޴:UR@h6NREaWwfiCwr9cLf/눪یWx˳ N?_hw<@l+n*'[u1=h]΋G$7Մkk=ơ:N8WnV?;Ӽ.Z(^<>ɋK=}WlkqU<*UV| @AیE]ئk\u\[&%]]SmP7j{MA` 8T/sbԣ6D?Wp/7;c\B/Ho _vO edv~Z ^p^2/V1T0*29gtxdMiӆpTʉtgQ>1"P`&%8QFn + K!VR[Hb}I6 C4›` iRSULZ5\L8ݻc ;rWfA/=wd2_R0y _?~nݰ57A2~/jC11I2p4%wvW0<%#*_"oZ<`3ѯ&"XNJ+_k$i>Q'ɝ>Jf?ɓ>.(m^ 2Yƭk[H&'Vѣaau:r\ v\MX߫O)Oc<бD.{etKxS%>2Y񎑆LQ^|n[6§te\n2`ekU*] Ij!s]ئ SwG"|{u!2PĽy͸}Gy"uC#`o"L23*/8,EY,foꩧ:^.Cd2L".-{aj#L{L&o8`8b =wW*6NgҪS~'䄛(*,Eݞ/.D+.`^Uؙ}ڙlmħv ɭ6uŐc[ߕی1ooTQLVyK e]ئkе5~k[E=#~s# {uضX& 2u" afn {z>>^FzwHW:^&@]d2 l@q{^T `unjǯ $V'Wb{R|Pm&wTfti< أk pСSY( ]vSܼ͛Zl]]`uW4x$ !|Em?路t LX&oWK3J|22w: @ Lti-ϙ3b -;]J.ebOdUZ᪾*rVx޳uq~E@zBX|F+k"C,f]^ O<-SG{f}ɭ I?h{ ,YxL=W;~ETEW_;V[&-dA0vE~x긑jd4ǿ]]g7p7?~|thnsskΞVk hBYݒ}^5fqEB/zsY&/ŐzxPcF>*.\`bMOɗ_:"^3vǞvpNYfG0` q"bϧ[O`ιusg^k%,`LpqO&yS>nlgwc.Z(nK1x\}bg0s*W4~/^`l&2m e(,S֙ \\yv'yJE)TܖI[*m)gٌ`Ӯxa-r4(sVE<<"1h?62;7*2]L#^e큧sil5L}9_Ov[}3pJq1rAfNFij. ox)se^B.}aTkS {gϝ?ޅ ,fT7 Fw':.޷V`,146Mc2=72<ޖt`Πr_yld7@@27A֖)텕##yHc0GF7S~UVFٙwݖ gY^G&6kb#⑭#Fvɭɭ/Ku|(R468='l{.=&y?AV{ Z-`avOGlS$~m:^1Uh 7>.⺹#6C߱e˭ȹeҊ&BQ=<e4 0ǥ˗y)V =wES2,5;wDodj}ozB/z6@|k_Z{:҈!9[V77$KZIM%pú˴M>)f+Ӵ)7x#Op3+MGC`BHsFuCiU3.JGN>_pSsA{Knz Rj&$N:.AQsmAfW@8h-1=7 7D?^2ImrLfm5Jud"=iarbb7i|o;6T=MOϽ`Y1ni%[E2Ҋ?sdΫCK2'Ni@vr@k L qla ?ٛ{&3iNH jkn)g@\}س' đoVgeLmwt#aZUvc\MIuBw vt:"*c{cv"iUC0-dܳ##i;3sOȂJԐHi򳤍"lCid4kO=(SVI35e$:#'X԰ءqMU'j*H>6(tN{W|6R.|0H%6k2p1=n- TM(8q lSS' W{u+Ί3%x3{VnTCXw$Wu$X L• \ܱ)r'\5$)ӋuC|?D(\./4Q2J7']r''MEh(DlA_' Jr<'XЂ@ֶY+Vb}E @awz3JC-J ZZ(`!Ms{~9TdJH2F!I4jΒz9䪪%fYl-hg1;ƮshN#Bjf=1LJע4ܭ:u$>IӬcΜ+畏SHZgv<$Wһe@.4H%O67~(h/dWn~PK!| H Wword/styles.xml\rۺL߁±(r9[qrrb{:ӛEAk!8Mb],@$Eqע$ׯ"4i}9"E=N{Go{Ny HL{D_Y} Eꀀ(=[*6gǩk/}oD8Y{\&k/ynx`Ax{ZLB//.cQ8JW&ͥ=S=bľHS:T^1&hI LXXnZ=g%AM{wb !C@{VBs%T,\?k~2 HOё'Qv_[88mPFݨ?sHWiJx2h^ O@0aHaMiSD}\';岆UU w>t),w$]dv>ߐ=jڣI=jڣ=jڣf5soCƪzA 쿗ykJO^=&fȴX>^39<,Y3jYyi +Ih~NB8\Ĺ_;wjm:8nUܭ0KW+3(,[ڬ6~IVXuba q/SGRki Wi/_ژ2~D^(0~r^(c}r [G^lRa,a|ʎ`A;|I#Dιfl[<@aC`6J\ƌ` Xq-MCLqY3󐭁?q־Y&ST84CvtY"3@%8LXl5 Ò̷l5@/ N/c D,"&ǁ  AE?9 B a 0`x^UKx,<0jg6{RTȚ)]g7PkdgYpbokTJ3PyvNult.*qoA6ޑuʢ9l%JEE(̽껓KE^= 8.yq W)^m.Xś\,/'(x;;/Kxk2hK3o;z,;'V3^֗i+~(@0$ mX^. 5ms05EioM||,w{> "s^>'f/alPUqc˫JW Ll) 38g*}yVa0/ Ac b74 Py/p<9Gc9 U~Jim܁цFvi!h LËL Cw!3}$+XE%N\ VzEWB2Y$aX7;h}PދCo!5桢O*Ǒ*dS}&gʆGC ֭"dy6kj.$ms@RߣԂ ~+P5<:\`m̞P]Ed/ho90_iOFj*k)L` qvwЀv)ϖ);ϲ..'m ;HWjV.6vSE;i5QWPsX6k{v^⯻R渗Ty֭5+*ܒ BO؊/hC8#M4 X_Lj-TͶ묐y8%~]'cX(h 8Um4o+\͜n[B) Y.rR>+HB>-x%jfUv'#IiӞBm^8(NAZU>ke-,Ej8(GmjY.Dmek|$^7EEs.z{:T?QÃ~ηp=UӒl G?rm Q:~K7淝,^B?R [ݕCeL {[fiTGӥZ7 ^jFuh)ٙ9a8VeۡM2y#eyG|v:?zy.ƒ|uJ+Gm NԽrYU\KkrY/erYY|}?PK!<3 E[word/stylesWithEffects.xml\R:ߪ}Wv/P9P3gڪrxql<ϾɾضZ,qܝnH,K_*p^DQxz{7='pQ({D_Y} Daz{eg+7}$JE΋Vb{5J$D _ܴ[EV\/CCG/ͬ.J `F9^^A_Ȏ8545&A `՗/k,73#c/@ǂ%+ևVg1ϠἇpsG yo2p^|.då?X17HzD/Zd WOĒ`ЕV$;-hҨ Tr e)\+z]R6PyBgTtq o%JR?B9x,ٮ1G͙Z{g4p\3T|v)q#bUmxe49,}Dry2ru^⥛nnq~KyD9p=HUى1Os±u?-3f2KV$gPlixGIVUba u2>Z_CHP? J )$Uq|es8:a4 dhvAl' ;K\xl(~ʶE 9 }.lTho@!k?eI tȳ_n2@6kp5:׻C6݆p 6]v~"5~  <lMn°$ o ;ʆU;^ِ6P=P֩d( XeC;؜ʙ;@ 3ꆼ @ݐ7&O ݑ7 Sm&- ɛv$({8-kM@aNuțpCb{PxEAQYG7|* lxc|P(~Re2ndș}v&ΟAҵ8Xy 9Fv7p#/FPL:BFW-BX=E%\C Mס,9Ln_YZJuхWBğ_*ok(GuPOgT|hRoMG%̧7ۆ޳(ˢU;: >̅eZ:uɯ ?9{EML@/(ix?LEioM|u=,w{=Cs^ >'Zg O_68PCje(Ղ8!S([TN8Ǻ?%I}*їZDav ac b74$Py/h<@c9 U~Jim܁FFuih LTNu;p`Kty>UCuTXk'b+Tk=被k! ,E\ 3*mMޢ,Z{Q6 a1 }‡[W]߫V! ڧ">Vl5PZ}ܺU2ٮ¨r׫HtS?ErS n( @tlu^in]S(̖P]Ed+ho90_i8iH2I'ِANإ<[<p =9+HB>-x%jfU.+#Ii+7FE~U)_Jf}HR -Uʹ?Kߥ8؞hN{$릶hΥק'#9<:9pb 05-p-kxt _x>ܚvx ᇷ<4[ql;T+aοQ9n6Fu4]ur楦n?[ʑcNf[J0J,9\w~o.'s.]x&SZ:jedW\u˪J沼]Zk\e c.-Րz-{;PK!ءmword/fontTable.xmlTKn0cQFnhE)H $e՗躋]ud+tO8N̛.RoŴJF(`1IՂeͦ'}K䂤JA÷o.A5K34B M 2&0VZ ?D U"#yb|j݆E1샢`Җf)0*ihV(ȴY \>"VFŶUEo"EOK4]hX IW| Ls"oϜ-CHjV$ϼ+%EF2,h цM`DtݠB-ՉTvs6[g'ni殗*%f#/+MQ p\#5EH1BK:&p1CW{" fkVx_ pW.Ts{t-|D$G-Ar@  T<s׻R#}Fxuゞܸܡc乱w9# iaa=9vի޶mAl}HJ)_=^wQheS6~dr㒧-FdpnhMO6;ގfPK!,d2fdocProps/core.xml (_K0C{dc2KہЊ[H`$۷7ke>} _9i:EpcV)A(Tp RtVU«k[+0N =~|~|wf;xYӾ4^ŷm%WWS~>F22*oRl!MRqkh|EGb1}'t%0 _z) +Y`,*kMIx1&{R 0-@nƤR@Xr|#E亁XSumPއ`bՓ'_Q8ɺ R$E Lq(SSPG͉ɭkDU`JqIG0XhcA|̒_$\;][ * k}|167ັKp͎7XL?+RCOuDgL]6;j;dOϡN^'G&x5lhW6ܲg]򑥏s߅`/̎9c PK-!a'M[Content_Types].xmlPK-!`N _rels/.relsPK-!jHword/_rels/document.xml.relsPK-!h}H8 word/document.xmlPK-!' word/header1.xmlPK-!%8Uword/footer1.xmlPK-!ϝword/endnotes.xmlPK-!&!Nword/_rels/header1.xml.relsPK-!CGCword/footnotes.xmlPK-!UQ0zword/theme/theme1.xmlPK- !* WWJ word/media/image1.pngPK-!zxword/settings.xmlPK-!ig~word/_rels/settings.xml.relsPK-!| H Wword/styles.xmlPK-!<3 E[Yword/stylesWithEffects.xmlPK-!ءmuword/fontTable.xmlPK-!,d2fdocProps/core.xmlPK-!9,9word/numbering.xmlPK-!NP word/webSettings.xmlPK-!HZdocProps/app.xmlPKpandoc-1.16.0.2~dfsg/tests/docx/inline_formatting_writer.native0000644000000000000000000000137212645626061023371 0ustar rootroot[Para [Str "Regular",Space,Str "text",Space,Emph [Str "italics"],Space,Strong [Str "bold",Space,Emph [Str "bold",Space,Str "italics"]],Str "."] ,Para [Str "This",Space,Str "is",Space,SmallCaps [Str "Small",Space,Str "Caps"],Str ",",Space,Str "and",Space,Str "this",Space,Str "is",Space,Strikeout [Str "strikethrough"],Str "."] ,Para [Str "Some",Space,Str "people",Space,Str "use",Space,Emph [Str "single",Space,Str "underlines",Space,Str "for",Space,Str "emphasis"],Str "."] ,Para [Str "Above",Space,Str "the",Space,Str "line",Space,Str "is",Space,Superscript [Str "superscript"],Space,Str "and",Space,Str "below",Space,Str "the",Space,Str "line",Space,Str "is",Space,Subscript [Str "subscript"],Str "."] ,Para [Str "A",Space,Str "line",LineBreak,Str "break."]] pandoc-1.16.0.2~dfsg/tests/docx/links_writer.native0000644000000000000000000000203412645626061020775 0ustar rootroot[Header 2 ("an-internal-link-and-an-external-link",[],[]) [Str "An",Space,Str "internal",Space,Str "link",Space,Str "and",Space,Str "an",Space,Str "external",Space,Str "link"] ,Para [Str "An",Space,Link ("",[],[]) [Str "external",Space,Str "link"] ("http://google.com",""),Space,Str "to",Space,Str "a",Space,Str "popular",Space,Str "website."] ,Para [Str "An",Space,Link ("",[],[]) [Str "external",Space,Str "link"] ("http://pandoc.org/README.html#synopsis",""),Space,Str "to",Space,Str "a",Space,Str "website",Space,Str "with",Space,Str "an",Space,Str "anchor."] ,Para [Str "An",Space,Link ("",[],[]) [Str "internal",Space,Str "link"] ("#a-section-for-testing-link-targets",""),Space,Str "to",Space,Str "a",Space,Str "section",Space,Str "header."] ,Para [Str "An",Space,Link ("",[],[]) [Str "internal",Space,Str "link"] ("#my_bookmark",""),Space,Str "to",Space,Str "a",Space,Str "bookmark."] ,Header 2 ("a-section-for-testing-link-targets",[],[]) [Str "A",Space,Str "section",Space,Str "for",Space,Str "testing",Space,Str "link",Space,Str "targets"]] pandoc-1.16.0.2~dfsg/tests/docx/tabs.native0000644000000000000000000000022612645626062017214 0ustar rootroot[Para [Str "Some",Space,Str "text",Space,Str "separated",Space,Str "by",Space,Str "a",Space,Str "tab."] ,Para [Str "Tab-indented",Space,Str "text."]] pandoc-1.16.0.2~dfsg/tests/docx/inline_code.docx0000644000000000000000000002027312645626061020205 0ustar rootrootPKlD ]$[Content_Types].xmlN0E|E-Jܲ@5*Q>u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPKlD? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,L4W=rD͌kL8SM3zKv?IoA.+q!Kӯ "\s Se\@E=B[ɇ[n%uo/=-7{KeuE?wy̋H $kle@_[Ӆܤ$Q"9LN#d@PKlDz0word/_rels/document.xml.relsӻN0N(邐NrrE)зE8E ,ٲ7o5Ot~4Z@P7u/z}my$)Lh= k0g}3>3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PKlD4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PKlDgword/numbering.xmlŕn0} l)"pCĀ%/$QK.xKd{Hf,*,B\s$k;k}W^Wh8f-7u Zn1tsSC'>7FN=0W^Mn:<$ DձWV'mGph%;%%Lah L< L0QIɲA8N'Y0j$ܝW>>)GKPKlDY.word/styles.xmlZ]s:}LI2~Cga P%_I䣿dF6|Ӵ=kh%y. a_yB}z2zsߞxs{&}T񾻐2>kX)`3#$-6_2a*[;iq" CvKo1g>Ea_u_80 ghJ,ƿԖѴQ)3$|B&@݈P .  9YaE|!s U[Nwj4DtnPL_^ 7AuTw9T5_ `8*F-I/J.vwj%f{B}:ᦨnTtJ%d}| 1v\u+x\^%Y}]LQ}qY) vjiXG=z@Úh^g> tCvq@ [@/B/XƝrVP^3^xJbʉ«ה(FI 3>Ix8e_aiZ w-#%K\훣&{-Ӗh.@+)ONۙ$biXX?оz^';T0 q~Dů[n!įj=LJ''N4nPM0*8iߵǭ,{|}6Trlۮ)k;e}uT+&TC(_1Ncߝt:1. ۽=l IC*м>;Na{Wj<\ޯ qԯk)azKvZ)$xl jv뎨/,D";{M= wM9}ó-gHqh2n0̳*\=8/WMc>a)r4U+,V'ie괎h߫A&lPcڅyS/LI/DxF?5O^$(ΐCHw=ioPdO(dH(gƴ16 %Cyr,RiM: Ge~- =D<_aj!xDc{/>?7qr-5%I^IIIfAerŻ̀CB0a{A(V&la9o lX܋44DU^Jǭz_b S}{i54P?֛!S/ﯿ=/PKlDudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PKlDdNFddocProps/app.xmlRN0+܉Kyr]!)-{X8enӆ 8fm1Vq5/ pkUo.˵l (piUv9%cIuT!i|e67Qp[.|~#ӠhX_Sݗπ~bVG gCEئ4jE#mξPq麓}Mq񂳡"*!K$9>M5mCodÆ%3>&.9W8B<.Jq׋&HWQ2$V>RĶ>(`:PoOKgikӃ8GV5~1y88k ~E&@=T̰'PKlD= word/theme/theme1.xmlYMo6Wl+u:E֦ CDKl(Q $ qaݰ ð@ l_EeSۊ5GKҾ|8"1iܵ أ>u{4бl~pnEHt7` H6l{r4A|7,BY` I)ƚA[ Z&!0JEZs"?b }Oi 8?>}!$]K ȅ|ѵe`QCֈC7' ,Lg^]jhf?pJ =Oz,Î+jqYz6 MCk*UKNcլ%]U nIX[" / ,̖)*0JPl2ޣl(*PY&Г>$x̰7^s_K1Q)1/prO<8v ƁN{=!pۏ5H#?47أQA3RF!:e+8aJ2"o &`Uy`D^ޫ&0 w(%=̎]WXLF?= LY(Df(FB&]+NAbs`Fx,̬k8 mDhQbTPL 1 Eͫp*`dFDހ"4?c^%\ȤP0F-6|] ! e7 :tC%fqXv0Ak&˄>w0g\q%}3e^_ծ#٭[hײ;>;֨d,kc=r2=yN]%oɯX+7Z jOLȾtͥPN"'$s}`zCH=R\vABIXK՜[&%g5FURk]z]uN\Qs_b*Z37{ ?~.a)*>2k>:SvX7cm//.WGkMLDcH<(qDKsrn% b0W*qBmތa/fM&530G?c2e{PZΪ\2oX]2Y&_>$!˾W@WυjgN_ZoKZt Jn Ne"%!L2ikC,~ ^=e!ChW䞞"͙w|yS̓"2JZ E[cMkl ˇ9wRU,b[auXe_6knȋH?d##vDd KB'_XZKeSGN]Rx.(<]CSm//X[OUt|O*ߖW)fx"G.|S6&G#Hf5u;3 .jtkg]wkK}5p?ӳPKlDҟVword/settings.xmlUMo0WD9/%|Z-PCBMwǙG!KN NjhO'f2[u 2fz꾿-[{w3 :Sw@ [Q%LLJ$aT1& Rt+3HKV'BҝԴ7l+`yz2m͆&_^pw+KWk+ n dM5yN3QF/!p E Sw߸]r "Ã6 25".@΀㋠VkE BNIay,pɸ{W<_4oC}t qFjGFٱ"9X$ 3BkoPo™89ԹPƦBA7o)KQJry\Lita` _1jv * 8źڽJit<gwG~1b/hp~vGC3iϟ 0*m128wyT$>BXj"w i%K'oY+𚜺dl1 wQ˚\l"6ߠmAgR!1#\ ɲӸFEa‰ bM\uOqCh].jkF\b[_c jlhamhh[r,Dr.sj԰ BxQm5ϙ6!d(FV/}PKlDTΜword/webSettings.xml];0DrOl(M"L$loBAA9FS6/ ,Js-GJo$:+bG)1!VJ)-R4 @`M'a:h}T LqkwWa gsZ^;PKlD ]$[Content_Types].xmlPKlD? _rels/.relsPKlD0OLword/document.xmlPKlDz0word/_rels/document.xml.relsPKlD4o}Cword/_rels/footnotes.xml.relsPKlDgword/numbering.xmlPKlDY.word/styles.xmlPKlD(*bst word/footnotes.xmlPKlDudocProps/core.xmlPKlDdNFddocProps/app.xmlPKlD= word/theme/theme1.xmlPKlD{H: fword/fontTable.xmlPKlDҟV1word/settings.xmlPKlDTΜKword/webSettings.xmlPKpandoc-1.16.0.2~dfsg/tests/docx/tabs.docx0000644000000000000000000003116712645626061016672 0ustar rootrootPK! $[Content_Types].xml (MO@&Wz0ƔM.C~dgJKZ2 3J<*kROz,#m,eEDi l Fˋt#6"w9:0t[E[?N1~piMPir1/C4^C,_R&+Hd\CBwPV*h"|x0gV5iy$4V"eˤ9BA )jT(y>vw餶ثv(SLqWUDX˿Qw4S^ 0F"м\gsldYdLuH݂c9>(hVDۈ5{A7t PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!|;9"word/_rels/document.xml.rels (MO0&һV]ٲ5٫-Sht ʢ.MfIZUq"=loO.Y$m.+gAT!,MQH(XI\qZbaG;_K /x#Փ,/d}?eh 7)mg;kk4Df2/wBmw4A^#࣡FkPܚHxȽAt~9' ozWnMtVWkJlNWz^>\PK!Seword/document.xmlUn0ݏ4y **T3S*I"lC|\;TUiW~sϹǏQ[ 9#aD&Sȸ,frpMchȎr;3H7I 4q)Uqd BshҐ2c0/*ԐNbsf 'vѴh=!7ڦ'*D޵C*Ҕ\e| %{"j49KwhbdM:8FEiq=P81s9,.ވ{ Qkhrcyhoޡ4s]T14~($hTȨMw"kUPdO3EzI;Mej1]H]n%Hk0w2j) 7a .:XbԲ Jd0]@K֏JҜYSyɀ oyǜavRmg{?ivu]ȬGIymoK5~>g(y}[P8?ih^h7LZqՒь~59=m*w)t!~v;yY^L*H98PK!0C)word/theme/theme1.xmlYOo6w toc'vuر-MniP@I}úama[إ4:lЯGRX^6؊>$ !)O^rC$y@/yH*񄴽)޵߻UDb`}"qۋJחX^)I`nEp)liV[]1M<OP6r=zgbIguSebORD۫qu gZo~ٺlAplxpT0+[}`jzAV2Fi@qv֬5\|ʜ̭NleXdsjcs7f W+Ն7`g ȘJj|h(KD- dXiJ؇(x$( :;˹! I_TS 1?E??ZBΪmU/?~xY'y5g&΋/ɋ>GMGeD3Vq%'#q$8K)fw9:ĵ x}rxwr:\TZaG*y8IjbRc|XŻǿI u3KGnD1NIBs RuK>V.EL+M2#'fi ~V vl{u8zH *:(W☕ ~JTe\O*tHGHY}KNP*ݾ˦TѼ9/#A7qZ$*c?qUnwN%Oi4 =3N)cbJ uV4(Tn 7_?m-ٛ{UBwznʜ"Z xJZp; {/<P;,)''KQk5qpN8KGbe Sd̛\17 pa>SR! 3K4'+rzQ TTIIvt]Kc⫲K#v5+|D~O@%\w_nN[L9KqgVhn R!y+Un;*&/HrT >>\ t=.Tġ S; Z~!P9giCڧ!# B,;X=ۻ,I2UWV9$lk=Aj;{AP79|s*Y;̠[MCۿhf]o{oY=1kyVV5E8Vk+֜\80X4D)!!?*|fv u"xA@T_q64)kڬuV7 t '%;i9s9x,ڎ-45xd8?ǘd/Y|t &LILJ`& -Gt/PK!Fwword/settings.xmlVn8}_ 蹎$I !JѦnx[ o )+d--dj.gnC_,96T*-N4ʎJnoX":¤*=I]b, Xf&AaJVZUfi9 *wRsbS'nPVrE,m(-<`dZĂVK#wֹr-L?CHQa}L0{LD KG8p"T(u#9e 8 rBLzlubg ݋ܟ {´ohcF,x[~ԤaHXȨoRd,tDyXՖX@Qgˀ XpdV`GfoIS[@07<@{IkA׊v%ՒEN)Tc'Y``!G9X*XUN\w>؇Iv27x/X3'2x܃W E`ض_OfèR$:2֍ag/)mCoN߬סl֬g4Fy}yNn` þ"є$[P_l*\XSMT.Aa8al O{^vԨlKt?NE)ަ,w;ABQՄG&=QvK,K/I%㊅Z|8Ǎ/ϝd{btX=&8O3NW\Ʋ"C#o{gg+57k<PK!Nword/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK!ua=word/stylesWithEffects.xmlmS8}CH4P7m60Zm@>$[1vl߮v_A7yI*dp'#O"zXwp4cS{H瀧ҋm-MImxPxL:;d8d+2;DzRNx|ƣeՙ;V=Z݅˒26ёV"_+1`82D|ey& 6YXt'mH'|p5 &B& kńKųh#|G)wϿ ]Xde\B<+SIA:*P.vޘ5~ol8S]wt`LET @%z:p;l.ýЌڨT%>LUuGɪ*(( HxF~{G49cZUtgD@Q@+ZsxZwK,*ùp\fT;Ξ!7,1 ;q>%v=W1v0odĹO&ߤ4^xdl U텝LzL_D砳gl7"˩AF΍\ChLzP `=mi.t*M+:>Ӹ;d85'+d蕇9y[."Q"1'\z憩Sr.v:Ja(zc!'&{SBDX3k@d;0h{|2ЂP{гRn"sIeaiE=~GG аVHGDSp:Ipו\i% ^ד!3{N\,WU\BoBPqG V|E}x߶@(o,nDu >^׎dnw{(ދ3~g$xx9զp9K!l+fMCvIČ)W/e2n5|;=fj%L}@\{CQ^'QxR7o-I9M%iκvw?oPK!eJ}docProps/core.xml (QO M -K%&h|#p %V胏sA.IR捐*fߢy :C*³m X/E@; (A6V1J[a'gi <3c3 )4_cAܟzeTMw|Gضm!?맗~XnWP Nxr-fίîquv {ٽSIr<-C~!(hgmY2Ke2T04ȩsFkb5gW6\ເ wŅoƘWiWi;ly[=ZtG9+ .4ؓO{?O<%OٱxQGFMTcaZEbb*]5{e_g-G\&sI.=m2"\cxXcU@hX)dZ}SD:dxqdز\V1L;2/\x%`IX\hMf$PѩղnXMjǨu *Woh&ohxCo VśW8_KPU 68+~3:=v&Pj7ŽNxX 'jRqěG qěG qě.ěbkCU&PM+mxRqt&Pj7ŽNMPE*PU7p`arsG #8M#p'[JM7ĖTo O7NƟ. ;@M&Pѩ js;@5V)`&8#oh&w?d<&PjjU \&!xf.pɍqOXkp8)θKD{$x-381_xqJ-@釾>PK!TG[word/fontTable.xmlܔn0}{,JVȁTEdhi"*I[;Pth.yY V렝j}.y|݈Y1m!:9LR5rw99',Dkf|+i l了&LQPWp U"#x1FSvR0if)8*i[~[<ӊ2c"Ჱ=#VFŶq {$R:zJY r/@$ NIgHeIC},O4!0,ĕN597*ddECUfCQ* Qd(>4Un@rҧ\ KPUV#qֹ&dAR{vM?}yps}=Z>!x58HK9߰VőM":4<<58W,w(AdKz ]`)jХocS4Y} JxGyRz^)pl7߷k[ ݸ!CS"`SdÿTL4ijnb5f#ȌPK!0MdocProps/app.xml (SMo0 0|ot>FŐba[ mϚL'dIؠٯe74i鑂Vxy]Ӿ5n/*r>b7p}HS-\Z{"=*88+0:gBb{qumzX`X'eӣ\0=pv27xMf;ECF+bO7Ov}Q;E DWF#`YQ mS[,nڲS6!WnP)r@jJ~٬u}P(GlZ.ې(Ɛޜe%6l 28/䨁m7]b BN3}PȇO CxxNC4y8OlyGyڽpnGq;lO5'B=oT.98PK-! $[Content_Types].xmlPK-!N _rels/.relsPK-!|;9"word/_rels/document.xml.relsPK-!SeB word/document.xmlPK-!0C) word/theme/theme1.xmlPK-!Fwword/settings.xmlPK-!Nword/webSettings.xmlPK-!ua=word/stylesWithEffects.xmlPK-!eJ}docProps/core.xmlPK-!Oz Gp:M"word/styles.xmlPK-!TG[)word/fontTable.xmlPK-!0ML,docProps/app.xmlPK X/pandoc-1.16.0.2~dfsg/tests/docx/numbered_header.native0000644000000000000000000000013312645626062021371 0ustar rootroot[Header 1 ("a-numbered-header.",[],[]) [Str "A",Space,Str "Numbered",Space,Str "Header."]] pandoc-1.16.0.2~dfsg/tests/docx/special_punctuation.docx0000644000000000000000000002033012645626061022000 0ustar rootrootPKMDG ]$[Content_Types].xmlN0E|E-Jܲ@5*Q>u&_g*h̽WL; 8t˜}_6-n&󽇘P9[!GΣ\1s,U*@z KKw="XL`*֘sK,yjj ﵒ̛*?:@Ǟɍ-?hM6=q|=XSAD7aHo](HĬ*%trmh$}pb$=_$vm0EZ$lFfس"Xh;^ #'I%)x?\w>ղ6kƮ5 ʞ~kdIwPKMDG? _rels/.relsJA >Ő{7*"^ЛH}0!#ZGr;R|̛ GcVw5R&=t0[b'T9֟!I O1}qѶ(?0u 7}|; |sGFJT2kT,qKG"\-\2a%h%zj A| x-e}ܵʺDh؄ʵ @\R R޸(.`ǥ%dzWxoW0N~}*< Իm4M1g%(A9,&kweoKh({'_TϢO` J=_}O}}PKMDGz0word/_rels/document.xml.relsӻN0N(邐NrrE)зE8E ,ٲ7o5Ot~4Z@P7u/z}my$)Lh= k0g}3>3uH:㔤0t==U[v@yɪ4|1A?>]۵ܮ-UH0 x2~&"$1n!d _XfG"N-錦JΎ k`?9._!mh6Wq g PKMDG4o}word/_rels/footnotes.xml.relsMA! Et]c0z+B(1_.{^y3n88L /$~ݟa]v7Cјш: șt*eWi-`%x .?PKMDG4hword/numbering.xmlŕn0 {(5|UU4M;tB"%vo?&.\0v%^/Rp`UR3ns ~էAWۉ` ~W&7]KPKMDGY.word/styles.xmlZ]s:}LI2~Cga P%_I䣿dF6|Ӵ=kh%y. a_yB}z2zsߞxs{&}T񾻐2>kX)`3#$-6_2a*[;iq" CvKo1g>Ea_u_80 ghJ,ƿԖѴQ)3$|B&@݈P .  9YaE|!s U[Nwj4DtnPL_^ 7AuTw9T5_ `8*F-I/J.vwj%f{B}:ᦨnTtJ%d}| 1v\u+x\^%Y}]LQ}qY) vjiXG=z@Úh^g> tCvq@ [@/B/XƝrVP^3^xJbʉ«ה(FI 3>Ix8e_aiZ w-#%K\훣&{-Ӗh.@+)ONۙ$biXX?оz^';T0 q~Dů[n!įj=LJ''N4nPM0*8iߵǭ,{|}6Trlۮ)k;e}uT+&TC(_1Ncߝt:1. ۽=l IC*м>;Na{Wj<\ޯ qԯk)azKvZ)$xl jv뎨/,D";{M= wM9}ó-gHqh2n0̳*\=8/WMc>a)r4U+,V'ie괎h߫A&lPcڅyS/LI/DxF?5O^$(ΐCHw=ioPdO(dH(gƴ16 %Cyr,RiM: Ge~- =D<_aj!xDc{/>?7qr-5%I^IIIfAerŻ̀CB0a{A(V&la9o lX܋44DU^Jǭz_b S}{i54P?֛!S/ﯿ=/PKMDGudocProps/core.xmlmMK@ 26 "< u2Ѯޱj+$twdUSժ X?鮼Ub`zR*O-^Eb HN*>QIG _2F4*O D$h6V]$Hg#E7\s+8s5_/h~/嫥IGRCg+ leIK; PKMDGdNFddocProps/app.xmlRN0+܉Kyr]!)-{X8enӆ 8fm1Vq5/ pkUo.˵l (piUv9%cIuT!i|e67Qp[.|~#ӠhX_Sݗπ~bVG gCEئ4jE#mξPq麓}Mq񂳡"*!K$9>M5mCodÆ%3>&.9W8B<.Jq׋&HWQ2$V>RĶ>(`:PoOKgikӃ8GV5~1y88k ~E&@=T̰'PKMDG= word/theme/theme1.xmlYMo6Wl+u:E֦ CDKl(Q $ qaݰ ð@ l_EeSۊ5GKҾ|8"1iܵ أ>u{4бl~pnEHt7` H6l{r4A|7,BY` I)ƚA[ Z&!0JEZs"?b }Oi 8?>}!$]K ȅ|ѵe`QCֈC7' ,Lg^]jhf?pJ =Oz,Î+jqYz6 MCk*UKNcլ%]U nIX[" / ,̖)*0JPl2ޣl(*PY&Г>$x̰7^s_K1Q)1/prO<8v ƁN{=!pۏ5H#?47أQA3RF!:e+8aJ2"o &`Uy`D^ޫ&0 w(%=̎]WXLF?= LY(Df(FB&]+NAbs`Fx,̬k8 mDhQbTPL 1 Eͫp*`dFDހ"4?c^%\ȤP0F-6|] ! e7 :tC%fqXv0Ak&˄>w0g\q%}3e^_ծ#٭[hײ;>;֨d,kc=r2=yN]%oɯX+7Z jOLȾtͥPN"'$s}`zCH=R\vABIXK՜[&%g5FURk]z]uN\Qs_b*Z37{ ?~.a)*>2k>:SvX7cm//.WGkMLDcH<(qDKsrn% b0W*qBmތa/fM&530G?c2e{PZΪ\2oX]2Y&_>$!˾W@WυjgN_ZoKZt Jn Ne"%!L2ikC,~ ^=e!ChW䞞"͙w|yS̓"2JZ E[cMkl ˇ9wRU,b[auXe_6knȋH?d##vDd KB'_XZKeSGN]Rx.(<]CSm//X[OUt|O*ߖW)fx"G.|S6&G#Hf5u;3 .jtkg]wkK}5p?ӳPKMDGҟVword/settings.xmlUMo0WD9/%|Z-PCBMwǙG!KN NjhO'f2[u 2fz꾿-[{w3 :Sw@ [Q%LLJ$aT1& Rt+3HKV'BҝԴ7l+`yz2m͆&_^pw+KWk+ n dM5yN3QF/!p E Sw߸]r "Ã6 25".@΀㋠VkE BNIay,pɸ{W<_4oC}t qFjGFٱ"9X$ 3BkoPo™89ԹPƦBA7o)KQJry\Lita` _1jv * 8źڽJit<gwG~1b/hp~vGC3iϟ 0*m128wyT$>BXj"w i%K'oY+𚜺dl1 wQ˚\l"6ߠmAgR!1#\ ɲӸFEa‰ bM\uOqCh].jkF\b[_c jlhamhh[r,Dr.sj԰ BxQm5ϙ6!d(FV/}PKMDGTΜword/webSettings.xml];0DrOl(M"L$loBAA9FS6/ ,Js-GJo$:+bG)1!VJ)-R4 @`M'a:h}T LqkwWa gsZ^;PKMDG ]$[Content_Types].xmlPKMDG? _rels/.relsPK-DGH"4word/document.xmlUTVux PKMDGz0word/_rels/document.xml.relsPKMDG4o}Gword/_rels/footnotes.xml.relsPKMDG4hword/numbering.xmlPKMDGY.word/styles.xmlPKMDG(*bsy word/footnotes.xmlPKMDGudocProps/core.xmlPKMDGdNFddocProps/app.xmlPKMDG= word/theme/theme1.xmlPKMDG{H: kword/fontTable.xmlPKMDGҟV6word/settings.xmlPKMDGTΜPword/webSettings.xmlPKpandoc-1.16.0.2~dfsg/tests/docx/links.native0000644000000000000000000000221212645626061017377 0ustar rootroot[Header 2 ("an-internal-link-and-an-external-link",[],[]) [Str "An",Space,Str "internal",Space,Str "link",Space,Str "and",Space,Str "an",Space,Str "external",Space,Str "link"] ,Para [Str "An",Space,Link ("",[],[]) [Str "external",Space,Str "link"] ("http://google.com",""),Space,Str "to",Space,Str "a",Space,Str "popular",Space,Str "website."] ,Para [Str "An",Space,Link ("",[],[]) [Str "external",Space,Str "link"] ("http://pandoc.org/README.html#synopsis",""),Space,Str "to",Space,Str "a",Space,Str "website",Space,Str "with",Space,Str "an",Space,Str "anchor."] ,Para [Str "An",Space,Link ("",[],[]) [Str "internal",Space,Str "link"] ("#a-section-for-testing-link-targets",""),Space,Str "to",Space,Str "a",Space,Str "section",Space,Str "header."] ,Para [Str "An",Space,Link ("",[],[]) [Str "internal",Space,Str "link"] ("#my_bookmark",""),Space,Str "to",Space,Str "a",Space,Str "bookmark."] ,Header 2 ("a-section-for-testing-link-targets",[],[]) [Str "A",Space,Str "section",Space,Str "for",Space,Str "testing",Space,Str "link",Space,Str "targets"] ,Para [Str "A",Space,Str "bookmark",Space,Str "right",Space,Span ("my_bookmark",["anchor"],[]) [],Str "here"]] pandoc-1.16.0.2~dfsg/tests/docx/definition_list.native0000644000000000000000000000061512645626061021447 0ustar rootroot[DefinitionList [([Str "Term",Space,Str "1"], [[Para [Str "Definition",Space,Str "1"]]]) ,([Str "Term",Space,Str "2",Space,Str "with",Space,Emph [Str "inline",Space,Str "markup"]], [[Para [Str "Definition",Space,Str "2"] ,CodeBlock ("",[],[]) "{ some code, part of Definition 2 }" ,Para [Str "Third",Space,Str "paragraph",Space,Str "of",Space,Str "definition",Space,Str "2."]]])]] pandoc-1.16.0.2~dfsg/tests/docx/track_changes_insertion_accept.native0000644000000000000000000000022012645626062024462 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "text",Space,Str "with",Space,Str "two",Space,Str "exciting",Space,Str "insertions."]] pandoc-1.16.0.2~dfsg/tests/docx/dummy_item_after_paragraph.native0000644000000000000000000000061112645626061023637 0ustar rootroot[Para [Str "First",Space,Str "bullet",Space,Str "point",Space,Str "created",Space,Str "and",Space,Str "then",Space,Str "deleted"] ,Para [Str "A",Space,Str "normal",Space,Str "paragraph"] ,Para [Str "First",Space,Str "bullet",Space,Str "point",Space,Str "created",Space,Str "and",Space,Str "then",Space,Str "deleted",Space,Str "after",Space,Str "the",Space,Str "normal",Space,Str "paragraph"]] pandoc-1.16.0.2~dfsg/tests/docx/dummy_item_after_paragraph.docx0000644000000000000000000021113212645626061023310 0ustar rootrootPK!aDե[Content_Types].xml (n0ED(,g@]tM#g&ȹpH]-֐_a5xZ}+Iy;@q?a4E=bIJz Na"xiBr5-dTZ<I<: 1=BV-->$hQW-TՊTǥ<:T\Kcy֡lpI@1U+r&5T/˜ Mc5ZLA"ܵU?'~搸Az,Ү|--'MO\~S]竃ųڼq1?(s;G,?oFL< ҄@>-B77b8)gΩp{襳 rc/%4?}J뮺Bw1`x6~PK!N _rels/.rels (JA a}7 "Hw"w̤ھ P^O֛;<aYՠ؛`GkxmPY[g Gΰino/<<1ⳆA$>"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!iNFword/_rels/document.xml.rels (N0HC;q[Ԥ@8:VM\,Xv:U ֕h6,#1+M $l T!Wq +'Ν,@ c (Z/mk!D|4m{ͳy'_FJ (W -IJo*lF=)!n@RZt(6?wҽw}T(>h+19qї&3H=^¨O:?3ެ{F APt@[-1r';)!>րؔ|w 3?PK!]bword/document.xmlV[o0~`$PJ+TV y2X&!c~U^|;Wr}[p2%'QDJR&IU2\I:6F7ӯ_qH)t WL9=cK * F*s=DWʤ 'a"ZwۨhJS 2evL lV>t[2Q &Qi!t*P7֚&bl(JڂE='ւ*\>&3+H`u|~YLq8¾͖Lv0 np#>SOFОyd:o5{A. i?Rh bҍ_50lI$.jf4%wAfV2߹ sp k'7fK)DR_QɞӽxWAzP9mO39OTbNzRwj3ۇX }7}d:,9i`C)\A%J)iz gs̽̆- ̑ds0z/omW3GOqq2~ B}R/JՃ0^+؇w8~X?1,/=.sJlu҂B*/>S Œ\L=FnJ c#*Rl-9{U,F˯ưƗ&6#?m}OU}IL93]EZĠ5+QL€y<\9߿ zh4|2 ܚ}`Ժ%ӂD;@+IQ{"tYDMB3dYi/wF(]|ח?aηo׋ar# VWnn d3i Z*¨qS8P~IYgyEPK!word/footnotes.xmlĔn0+6V(6J[}ט`{,ۄw d xye+0)DȔ٤D>pLNzr G0>HIM(Vt$t~,F tz0>X+|[حԦ >9U\'Em߻%gƊ*K?ӱX\ʬņ6İ,ǺO<~>N?-<~1oVY'PzƄn^zIkˣ%c?Bi]٠~-R|@x-*f*yWҰ?KQ2pKyVˢAZAYr =w$B+{o7*-,>bp2-hӵR* 53^tfXS ,)~T6*[G9:qS\n݉!gTZESRe#/~zL* u.CbMΣ]TL,L0i"DEVC<#$3Qi[$͞Pf{Vp C:ONU _'sblx } .n328c]?Kfb!ֱ?.>hcυ]i#_BM^J%f1LLS~{+;w[i}cʓ;W7R@T0vé# Gmz6gOTB8.T n-JzoNν;/+xJN@  ᵶy ]ɋxa36< uȘ.߂ҝ N}6pqi{{1kֲMxQ:ɼ586g_c8@՗[@0(n` ' E2FR}l%~e,Tp=#ڭ=jCRھPb诊 +$n5TL_0z^N#m=PK! word/settings.xmlYKo0S<7x)nfa,ҳr nѶ0zRSZ],v_,Xb}_?|mVY]feswV7E^Z=~ÇqaihMZCY]m^ݺ×Cwo.]YV'3e]C۷èioo˽?[4YwִPfV\_mߗ]X5b{xeޑ~k|H@GBVQ|>_mWQ7R>ieQ@{`LqsxG&jCɍ}ö`ʹjW?f}yliaV}Qi]Y׫#"-&۶v1:QWK:bx[g]gCv.f)BÖ́OB%ov o@eh c$PܷDeH T \'B8&,f}ʤKQk)TqR TEh WKB)ֻsxUwЦ[Z,?PK!4-word/fontTable.xmln0'"ߗni7kن߉ndN|99?}ËVA8/aV]W7S̖)kD£w&k2jB3?0NnjnułH%1OPgqE!`^ bGk|)+rqVr=U맙4 Όz[,B;c(`W -:pI=7LZ䓨V3 *fjLSN- ~26Nd΋V.xR] <d3XcLW+*$GKP CY $>>OLrAa} AA: D\ Ē)qrū&I F u$2q+?"q b'f%7 td$>kwgcOF^:l,g@1 m™PEl[DsJ%_NDPK!\Gnword/styles.xml}rƒF?01cDw4m1vs")BCRn~ RvK*Go'|(߿lwW듇Ï?nc[}yvsl)wŪ}zzqlB"|+XӶ-ڷr|ڔ|I?(ǬXs0gC cؔ~7̏tD?P)qu{\|dw+@޷ɿbgϫݖ|ް5/׻mۇl(/RX7mqwlxsƮA&s Ų8|tG>+2*[~+_'Gi0'i -~_ † 3Am+G|L ?R|y'->or|z}ruE oc\Ddصe|Y9?(;a]\Os:#DD^r=hT(sꄉ'bİ9 %b|Ri6b&S(2bZ HcT@X-p4K1_* SihW.tv<:%yΩ* 㚁@^kB27HXhFx0V~ީwܭ]jI3l l{7i7L 80W:]*M:yAnю8w_|}@x+zr 57yQ.\ ys? ]}|Dw+RX+j+O$) c+EA)OBoZ{}27@b(>{N=y !ltZ2_ӧ4`Y,MmojIim繇{M`p<do }S/nwg&$Tuofn ,N,v~ޗ򉄿dY!.`T,/_t;FG"Bk+Gh OALXC$YZ@+Rh"~vy[ o'5B8/jA(FlSTs1¡E>3_pvT+T~}a&XbRkb65B$~&V0RߎđOVTTT/C^O{zcbnR*nWO~z~\o _O=pïӐ3ocS,S&" M.| `*b]F#n!cw&M/H_|7n"}Dd'@H!$M?>A{ KF MyO)5-d)~};=jpjFS{A.jMD'3WtJR bi,Ac?+(=0ɕVz>/ "Ew|\D Wr|Y  Ψ!QJ Qnd#`ipxQj7Kpt8b.%b5N#t!SS4rX2m9lFF3Z-VK0R(䇗$ɨ`D.I2?=N-t!SWK]Tw^Hh3Z-VK0Rh3J-%.I*D`RL$F/θ?0Ut]R@&RX2\-VK0Rh3Z-VK0Ԓ^Z $BD%L`$ɨpMЅL]-taR\-u!SRh3Z-VK0Rh3J-%.I*DTK0]aj)Kj KTK]R@&RX2\-VK0Rh3Z-VK0Ԓ^Z $BD%L`$L2NVla/(fV^e bqq*JܜJDĶ-n=Ħgd? `SE ڜu ښdeҭ p2³⿡zt88 ;îiYXxe|WKMꚮMm3lC$a-d؃L<1?Cw->wwd[ ax˴tq |_ƶ?mMk@ͺm \ -Hy5 ;n}X-Q_&0"]hC/ !^9o$~'Q?b]}̅t5_D[Wђd+ᵆ4gLB,02 J12IZ06i2VvX q9,YRuz<#x2ʅQkQ.^)8ن6$hjmFm*א#6SmH:R4jj.j+P5M*Rr*$澲2˩IRkIh;']ihCIvSJiŌô}lR7UV&&~ߡ%\֥KNKNрL!ՙDp<ɀ>pF )^r 썤[vK4e *pqƗlAPO1+?ڍɗN]V>fc 1Yl8vofhͫTW6nkj1iȣ<}~~mA;L71\3"8a /`9G%d7t" /Ѫ#Gbf (nf^ bZW/[9++|1!uvꗪizkQOK2&x͌7FȈsG̎zL͎xƄ˧TH%3"NYZ<#кmOgKZ+<шi C|t>aH{dZ1#MFS* thߨm82,MU7U:OcIVe7{Mb+qƜ)sYY]m܊KDd>C.UY"YSR}孑ˤ# Lmqi"Vav߀.FaK麉Er*['-Ǵ%\+#TӲHeHK"mĺhXz2b9HGmD:~;k0Rhin-эEn~P|wZg#UKd+#Cg 7p,V'<;UGϦzk08oQA*#>:{rzϘ>)`Nȳf[d'm S)QWa楥P#))5M\bґW*#1:e)*R!(VHTptV$R]^ٰ ǀ1X: h(՛R ZcZWe%€liS9mŚ0iOfd3ATق pj3n]e @Ă(52@fXVWY ;A]iPtt5sPyA+)#JPKQh. 5m hgE Fa>:>߫L}Hm HDU @| M^(o05a3H_GF]fc^eaIkwS".dHm[B$QDi!nrx0X&.XVg{ u!$9hz ؂Vӈ8Z8`E_]{2GI= "&Ы9*&1"ODU[ϏR&ƞEZEK#w-X'I?Zݐ06lpJM`puY_"&Q(#< 1bYeK)#._5'{y3 iJ=vRE`}c|=RFE+hղܸsyen˿&H ^E`Ajo-⸗PgnBi4@dE7*#؎TՉٹBɒZN${Zт]7Ifn%%n0ȳm>%uX"njLzDb۰ @]N}ń¦BuWVz ߲y~+![e#_Orɷ[M~/cX*Z %yh$9biwEy}?(fxH8ɞXs^<rל<ͪ>}gWh'nh+ݰI.jQ5%oy[ N Ĵ!2eɪ$M40)[ S+NfJ?ɂZh_65 W؄yMH-)""Pkc9laT$0:'SoTDD?}6 vO}?I(₵,Uk ⰾcpe-Y*c\jTs+r*W(?r朔ilgk3 mݍ,,ũm80A;4q債c:yl.mwA9f\3xѬ$^tFAȍZFn<#9>S3qg?=hnG'Ɂ*׳x4,W% HF*p,=?an:Т/ x0j.?_Tj|fp0їSE̘WR+̰ 8&bƼ.Va=$f0~gCa)awOx!b=i+oLX?0"ߵ<c79(1Zq솨UdP*, 7?2,և#nI]dSG?6,cnsIFel(-Gpl b#дƼAmEiЛALK`KQŰ(ŀ#zVQ](,ZaӮs6TN3l"Sf,aƮfO3ЮAE1԰y^v7ml< гsL\LwǗĄg Е"\ȫE,4%LI͆շjHo2 9tG,.B?V^+ScR`wbinpݑsqˊEU Ycx԰5vc Ce)?8W3ś3 YȃMbeA%ׯX\ӧ3dJNXafD,5?gHE4;a& SY;+՝8<1ZBht:ۗIy *=I틈yT))X3*vT XeI=q,ܩg$JďXm#^#-d8: êĒ2EWQz6!9#V=b]g?DY3ڈgN6kv @%C>| NmsniYe#֤g#8eJ&ݤ\Je2>xd_۫Qs~7k|'Du)sхS5i|V۱xn⒢rsHݗ8ì&KMa-8a:f1"(ΛW!2_'Z2!g2x*>Dx 8gkn-+smqf&qHuۯly$RU ,eJ;hVFz8h֗_o)ʬ@,l=r-cX.5N]HlO?[4d>j?əZQ@E77{ޕA2' sGX{U]p𚷿]<RVUѐN}[7LI͡+Cf+42h1xl 3?s؂!aƖ=B_)^Qеb_  U*/ Vq1YP@P;5dTVdA85U[j&Grdwy6bW[@a"ÉEG0{2E1e&VAHsB~ .:Q5/¶SG:g{Y{la0l@Z#9Ū$'b i"&/T]> /aH`JֱuxLHUK>T%3S51ޱ߰;ؑ&+[C`v) eKa8ODqK\O W!$K`H녮X"ڷ[ذI[en--HϏ*7Vy,1i38*hʫ5R9a\c4\Nj:f'p@%^z$?Bzk~{J:;6DʳuCV<{2

              kN,o9E^G]d*Up"!aOp18Ԧ'x"ݾÖxڦ?a1HYLE_+{̓C$ZTi=%\v6#7b#. L;pn޸D%~(!%٬pJ)1XFS.k>e+.J]JKUpڕO8,gs 1j?{+XNnّ$Su>Ml3k}G<-vG$|X)V?m@ORKN &uNS.{}ΎV nUĠf_e?^MRw~z/pz-NQ!6a "F\5:3⽯uMi6N[m?MEÖ t UuTE'"J.Z*ϫ0ᝤ6sߌg1pɶ\e[CD,ZGXd ۖ7QyF{S߱oP'H-YY&8||Yu>xKG'Nφ,ff^B[8% UUvܔ7lۛ`;8y*hU ;$s2y8tslg̔ht.3ezd? +'Ba@B$&D%xxyR;#T$ &A=*2&mPۗ*9&f|G;&r@ohov7+oQ}~7ŦxY5fP-_~[i=qG Zm3 ftl8,wnֺ/sz?j\73=\7 R[OոUnj˥;G4c]aL/9#֦CtZ%kZe`6p#g6K#3md8 {vJ {"AOObTFѺlSfw~a4WWa:nÿ< d{lAPۈo6boL S.e1~(r?6W7{x _@ѣ]Ý,^J(W_X*)z;8PZ}}_忕zy[W qu ~)Pۊ_!8lM^VÇO*i,t?ep" J~Қ c! ET5r-g*|ސ!P>/6`5[<"A \O/޴3]Hl$P5ym猑l"ِar rdTtXV"{z>^n&ۚ=gӺE\i1I?5VO[jC{e3Ss.>}-tz3刮%evdt|1.&|Dtpv9-L5{zs>=ə]佤=mu mhO;{Z)\Y]EYeO>lSĮ#g "L)/PS RlcgL~ 16wƐLs6fM/]gL`.q6]j—xⶤ*)u]&oΘ~?F1|7r5c:@qE֘4kP[cD53A_Φ[ * Sj~uUN t)5]tz}2IT!V^0>m]#1A 9T'u5ՠ^\ gf= *BU$Et^^mz`Yj6 +jU/6׮Aul jΠ?Sֺo|w4@whY&l_)_e@A5:ΠvS饥ޤ^Ԡ6׮Au jΠ P/͓/E?Ĕ IdPkߪ3m;[C}5> IWAm]#1A |6Z(ԺP۔5rz#K|WUUdP".B}v -L% j-T"@%,N%Ncy3d \ 1p)$ D&)$|^j0A.o T{Le@TeéO̫[ME}խƞsT0h+JE^]D0$_SXFͮ$)LFCp|)MAm~> 2gkScAwoY7e¥j9L«' މkx@[kJ,6qmY[|]s+evA*+ K͇,?d6߂)~)0|G +Y0Uq=n6-E+߮ ߫&cW `³bqy )eLҟ '#F&RYk)B2{C0=b{_$ y4kf5mF<~{#2C WaDZ(cE.q"y4>vqlVbX&d% J]JUvlQ$th8lAVĕ blBֲ>1-5Q77vwwEAؕ0i˦21v.SbV\@bZѬ]+Ϙ̀r0誡.5uub(,o-\x|^oV+w*h lB0XEwVq*J-n5v9|#]Db:Ű)f]br>"wb`;L)UajŔ1K]bPe1}g~ُ|r(e"rٛ 8`?|o#Db:v~>ݍ$ W '񅜬6CUWR&]}U> +ȕf6x"2ϯST\k~њ"ZL9vJ8x5?<Yvp񻯯rUSbj].Űn Yq'>vo& Њx k`%7RvPN a*; ]^ ߑ."1bػ.h|m6k~J~ce p7$xZ2N-͓k%|f.9V9&aH՟'*G K%vIb.j.^ʺKXɍ 1[@#]Db.v18uũ:3.\)vEChF.v ]@bx:Ւ9/Ǔt]]wQ_LnNjs|s/́E blb[m_9XEb 'Ț*qK͍̍8Tq#a:rq-Q ܹc"~ӜaX: HJ.Ax# Wsy898v1.A^o.$ BE_!5E8~_p$P+J{Brㆬqֹip/6i )y'4Gc,kN>W\U7 7+ad t! ָ"Jj&;X\I7 VTc YeaB֜JF} kԹ-T@ em`YSV;洦ViUbN+{Kz:5[9tIA^}r#Gk9{vZyUHi5 Nkx?N롐.viBjNkR0_RMxTL% ['A'9쉸,fp ^ꌇh}l/iFebp[G3~ʟ76IDF8I+۷; 5hF-D>iхfrJSVPi#Bאi'-h䈄`㈆I F'ɥYBo-g6׃[ 񌖵!fjM"_X8%hJ+l(@MJuÍ p^ڥڏ:I;DȚ {jBvilyAm+6_Rtxı]PSOdXCwmo*2"Rbt> Z7,iR̋Ψ&&-=r_̋sȁ<\ONmTYr7*SiK2x*+η5`I`2/\"X]eorSW\ 7ۂ;='}G;-Sv0y 2:.6/>\-xs ~!@,rn b6z2E}ە-3! eyd9g0e߿nY &N-C.DzTTGOq700 Xsa`'vd)}s^-Yq!DO*jWۀ,ho%QJ|b%Yw:2j'Q|}UV7z\SZy:'4?-z~qf^ F<@SruTD\oT|@cZ$tM&/T 10rʻM گON|nɾlO7L?-^ F|CoN Ql"no)? F sk|IXޥc)/Pݤ~}CS)~}؄P 5vToh;J zr Ma lJض M:7D)C7ԀyPAvGռfeްc)/ ٯoygdhO%D0zm0loJض M:7D)C7Dy Ky1_oygdhO%vŢoޮ-9)l47 z|CoN QPߣo F &5otaoرa ޑwF6vToh'ޢo)¶@S| *a74 D = b$߰zYFKy1_oygdhOٲX(mi nږ5DX! 7ǜ:y't_Dp]nRAnأv؀ER!U`Y@6MA@Zٻu$*)?zlɚ3UgRdg~2hG\<(h4@ 1qF PF_7Uuyf-z+Z!E:ķ:tBT,qWCV [bU̷r~C?~[/ x[5qZWZA%` =iݲU@}#mQׁ%]<(ynp'0up!AoN'SfZNI P,̃Q4($O䉥q# PGQ 6!a~SkɈZ#q朗j.S>jV6*u:*UYJHE3evYw$[,'_ǧ?65M*n9oz|bwxgE8Ⱦ|>8SAQ=Q1jL9uuU؀ILOrTrvG 1d |c 59J_B}Wkv].:L|8gW{ſo7kR ]5PC)*@iaZmG»Z឴>ڕT֬imIY'^&a2w,1ܱz={Qh W^\z,EJeTl[I7@+Bl; Tx^}4:ݞ=Nu$xي4%jkvӨhj ڨVc 9DK \vP`}gL]R*$}"\P_b]ܠF4{u>ΘoOo5"RTEGO­ctehIdV,7.lWm9֬N1L~o+@K=uȱ1$CxYuk`"Au,6FȢj5BD1 Lw4}>U!_ۛi<=*{G;mw*[\c2$Џߖ+4EQhv>}>ʘuE<ёwCV*`㢽wdoC"mHQ{G#0,;p9̛s;:~C.+57lje"{G'rNEJyQG:yYC*y4)hK6 ^QByGN}IIN*{G{G#U#Aü69FaVq%E7wAc.ٌ2jYG[Rnb(S\ u4G߶FۗbJߔeoGR=]MgOU ^QNpyG>㢭gRO;-`.&juGU  Ua5Bm<$ƍ`;UDwy(彣w$Z>H_EJyQG:yYC*y4)h;}xzDظuEّwC(9.ZAڗzޑ]wԽw44xGUm>1#ڰDYǕiܘQb;fOKC(Zy(tIuG9.:b&ץw3sG#h}eF-i^[dZrr۾ N˞}j{](^jz> 9 QNlhl0(ifZ\3O-/AD 'π8tVÅFZv:^oߗ_v):XyHT E 3‡.N3 Ρ H9ư#z҃sXly_[u5\}Q?R EULh+Fh<#a.j%'T?P+[- R?#aa1Ge-X}#,)h9,bQBqh諝5Lva1vJNsX,հXt'yJbQ_v=tVXsXˆ E񰰘XN-?3gl-\9,b= Sb crX-_ScQ?R EU-l/;0OhXGXu+"eX,1˰<aa.=aQXvcb9,6&lʟbŢA;,eXCm?;=[CE5WI/Oݒ"eX<=eW__״Vw AcS7yپ۝8_.'VO.RCկbV*&"RGF2(A|{U˙E Kn/um?/z0&fβ+"m$Ty)9,Xԗb}]=N%5С?ׂ^Í;p/~w]t9ЅAc}:N$Zgp2l#A2Ij2oe,mX[z[gli-MCze_5.?(#e ?d"@3yK[;0w ʭ|jQȗ-vYwWjsO^-;(1p\FAPR޹1#^|Y6>a&B cSo,OPKBek ӎ0ZcUZ.nMj-j K-jM5Ru0AAY3 PD٨)]<R9㦛,ff*RW C^u1:##DG*0o =XB5 1oͫHrO?f9|;TnHhI"Asܣwܖr4x첟]x 1#9, d?1@b6x;Eco'hvQ;꣆ mdwBv{}UШ Ab6x;Eco'xtq;棆+k]k3f7Hop vP f>jx{]B0H3w k 4bFs qDÎwP[wG oc2xVr3f7Hop vP gAG QD585/_Uf:_/fr]O:0}u;KVbwxņ@]pP²>pgVnū%; g0_H0_Z1 522"YҦyVflyHUr.`D+2C r2y S}w-[صLܥ4Вbuzcb$IH<,uwU6vS[*ё@m?&ʴfΝL'&&e5砚t1PmSha+ڰ4*]]fީ /WXe0%e/yyX xwGGQ,G1QK 6ёVjʮ 3yG= aUUo/' !\Ƌpe"HTYTcm͉6":*W4K}$h׉Nt$ҏϐ<,ܕ,U @P] 0ʴ/ʠ\{+#yd2+ա jl/Ҩre|e,yvʼ-W LuqIYC^֔[^MU=we.UɫGnwpF2c9װT>uW&f;A2 (2(W=J2QveRte}i 0`VHʕ$)\0%e/yYSny5UܕT%tW Q|LhCtePvePteDʤtl ա+ڰۋ4\df蚵{C#?ίNp}|!'Ǜ;IˠGsy9cf`fLe_v9Sp},V~7ŚԸ'|#pZ80ybYgOt`-W$U}is}cob;Dx1V^Ѹ>f `Ap}4(?Q^\_eׯrU>ޣYg[K_67x=.CwۇGC\2̂<'\ߋ 1 [*gv\\3KV~-H\u\vr:H׿1`03cAq}2p},V~+-Ǩ?̒=sFz^r괹I "ן=>QY01ӠD{q}c>fa[\QcTПcfɊ~oeq~u\Y/-}lyvKcQbߚHz'nͫ臢2:oϔR:3ExE]kl(tKUbZ%ά;;߸z\*ݕjdnhj|/ZFZv]G3:0$ 8 F74K( {.Y.ny]bW7oHZ x\sJ3!x ̔CwOJ;B=BDz[fe,de_Qj6]L+ u=z2 :֖}fL*qTg9PgFD:q(uy] =DVSfr=3soC*n??`|ԶWF9Ƹ[`լ9r5gDEA5{f3*q=dLe`p&9 =qx3{fe`:Dr`eό zY=3Em̲g6w==3gSh陕Uo;(ˍtVǼg6=f,{f̢ ,hg=i9CjgM^1gl-=3| g9!y*[Z< QΞY3;-,Όd),z̢͞6{f3˞Ym9K p={f3˞3Ku̲g6=5{f3*e,{f3gu*.ŷob;c=dB />1Ѧ$X.[k}cRG]+v1dz})}Sr۾ޓ.Fbj;*]wE٣7a Ty\񆻣-|~+]ԖNjK&Ӑ^?o כuA?fϐܺ=^ane?`4 t5|@KLb^jrbq#2DĖ6 V{hF L. *?.{3ZJCB-As{'^'CD-hFbd$ | L{<[*O !Svħ2#,cPv?ʹHC4kaΪEp;t'$,dY;쑞kA$[r2l85 ́$ ˉYL_n({ǠF]fE=c>Z7zM!K)a2RcR/%ޕkUP(U*b]Ԯeew/GjWh dmxZKdh ]\T{-Ɨq.]E?@} &BC C6ņ,-57 `B]HDh>\Yu2()~sT#0_7`$I7Q?b' ;͌(m4!=l3vPRCώIf-`PZ5I Đ)X{p e:DY["t t o#q8oX!¹J/DZN*1G \0j?)lب)=W D-2P㶨EnYrդCsQ\"Q{EzCZ%Am9xMfUc&@9yU"PBn9XEz /@ؔoYѯS h4S=5V.3KlU%XY] `2ɔ<  r%(9xX}IJpcΈ.ͻH'ӰTz^nKxYg(7z^09Z%& ՛(Xȥ:+FF4~!\4x{4N5#'x:(D!L!.,$cm +c=̯pMקg{u]t+6ņqZ\b.YԼ_R `T9#ѽQ5kc}݀2"Rm u/&bÂ6['?^ *U%2D>zb0?zqǘ %C:9!Ԩ)I%Z2D#[9%KM0ƵSsWk)˥ yA|ԍlTXYnHVPxΣ rİhFb2bMcbVih?;:8VT: 5Wc H99wkAXY|ſ_~.7Jf S+a6w4ݏra)0T}W6!;LY%(\uY#ZU'v[Fs85f@x}l۟FW$A7-W~kޠJ h&Oh2`2C:z.h%^J_TvO|zacR2C\[pMW8ok*{!ߦe9#bjҽݺOWnOR*{Vhq`CF5SV*XqJ88vb;DKDGMl^}uY]w~m>Wu 4-m-Y RQ͔f,Z 96uݔC^؝TUΗX:T% l@n@ \[(N?34ZjZ䵠B3\kNB@jpfL%Ye{lLÉ}-[m] H:d~Ѩx7 ^X2" Q~Ӫ=,gho Ă)}&K WiXJNc#Ũȭ&FXăp욻r [Bɐ)ףwNz^I?WhRUH-l-eWk.Ej[ĨSsNQGȼ+1U!r7+a Тi#"n)f[_m(,c!:P6&l)嬧{Bo 6ߵd!M/e !"64yN>N?01~ZACuH~y^pX*6.Ԏ(Ws VIJQJ?KɰJɫ=zԜdXͰCC,1xf(jRQh-,z,i/1Zbr9jZgQ&$ũ~<1Q@#cR">ha=>Vz1\Fe/L]^ 30 6̈́܏#l$LbI˔-cƁL%>̦VcgI{؝!1+NGc^RɯU60ן 1E3\p+yaoiZp.:U21_Pro ,+C=Ww# Z5eaEh6 T?{-K)C.&'YS r1Ȫ~Ub$NÍo_>) :$!)QJzP,3GaJb4 ێsܿ]s͎TG=emn MY8rl@ ufhm917VWR7lKdK "S2|+vfM! ; '|+(#% 6g *1EHnkQѲs*LJf!y(QP`up(l?̻ rC2IA,D7U˕!z9xtbNBL/F]Q {-kp!zyv`,{b4V*#$lbR'\ف|wRVRXPE~;Q KF1RAuEk(zb7ٌlJ"@ط\K7ݱH_WTˉ\\ɯ4R8f#tjޗC27+'}^6ebz$L4ս(,bL/ӯ&==ƔTΣ52n ܦ6,cf3qP 3g`hM:Q.RVX,{Ѕ(U4|\dv840uIj#'{m}ظoV*Bo7{H~ų)|\IN]?9gxOї;Z/lb4uk"b\W]{u[S]ߛk]F%YmmB#Iq DžYhy$ϫ/[Y_>ӾJ <0#0Sˑ 8F+K>UI0dIa 筺Y3?_2u4^wg%hƊ<zv;1 j3R-:pHnnܚf;<.zf=?b_l)_ȩ,zrƸrÁ_pWKRV?>U?EW}BvcYZURNĿz_~.7ۖtzzyqpHo!ZzmPK!~oword/stylesWithEffects.xml}rƲ:éH$%J>Kkx[vm񊜵!P6IE~ s( NUlҘ{_L7,__x|K׋|^eQoKdˣoߞmwVwOˣO?mw}>[lm~qf||rztMסuo|d!e7*}gq~yxc]4_<ާ~M1]PN#LҟIy*{z8jSt<)J82oIUɱk2"o#O5 u!eȎPĩmh{}{-)ol.]M%QC q៍VE@4%^'ȟ ƀwp@Y9?J.#4!Cu q 1bXi}Ȓp1? PRi7lL&S(2bZ HcX@X-p41_, cih/tv<:%yΩ*+A Ve0n$C80Ł+]`}ީw<߭]ۥiI3d ae{7iH7L 80W :]*M:y^nюxw}}@r@LWgj)!n!\Io K0~vA z&!j.z2W WH5 dTG.Oz9c SqJ.dA9LNl+ aӊ4;}JE0,̼&67) <`{S  7ylB;OUNڪ:73u G' h;Y9$_7]$f/ܴ `KE >[?j8;>+i^אwuW`wuv3Ib7f'b#uU^ R*p*sm A[t΂'~"A#\fW${xGj++?^׿|}Ym\ ԰"glVSlnL %pt07KVEɃ&8'ykx f?g5t}珽/ ɲWC]q X:?pMPfNFvN5#Iքާe&AǕ!H- N YzgqMn6:^(" B&8%-@tarS#hRq tc; I}Ko[}l p[};xҷ#G>Y%PT,x=r5? 7I7Xcg_|?v~1||=~zNC`&[ ߍD1|7]n\{Tt=1Ft18CBnjFߍ/I_|7n$}H⻑L{-x'OIkB$I0ͷ86[_( ϛ1kZs1Rn5v$!z_ 8\ ёO+agԕ~Pރ "WPz`+!5cn׃"˙+HAT93W.ә+9sQwΕUhɠ&[=s3K6`I|f=HӇO}#Slז!R s\emX8>*Ɓ7h; h"&;ֶқe@rlxCq?3ZbJ1vDZL `9EІ٧w !^#9o$›᤾'Qs.U̅t5D[Wђd+ᵚ4ͰgLB,02 J!2IZ$3JSeNzͰ e`sX$5xFd3+0 PFAi9 Fqh mAm2I, ی^(!Gm?Uې>et%#=ipUS՜[U Ԛ3(8j$THYA lC<, \P)K4Y H% Œd Gbc ׳},X.p dޒR,c͒άj#Tr$7+#@/1Dة4+t9UzK7\+nh;']ihCIvSriŌSiؤ;mYoër+LL:CKlK#B"B*3ʼn,xrˣ}  Rd&xkI+,;욬i2T<^/F 8bHW,h7zG_{8fS5Ocp͠dW(&K5p?S^lpIcҐGWy3v#oPcfDq0Cr Jx<"xGRe[Ο A k2eDjT.@aEw(/&"Ӡj椒B9 *fB-CHF]Bģt/1 .vʄ0q8Ї6 DYED䥉 Jx]6#ڍqDN`l|e6E_f{ļvg1%RID;6%D" aJ(-P._  Yõ#4Mb![U}4RM- Wj.u;3M 2/H%K%gky"U{A:Y.=c%']\<(a\_VQm{0bUR 2c/^³K0/Nr{d= W.X!#L(&d*g4[Wfghy {A'h{zwQ[,jU5pYI)ۈk `z5d, Ԧa 0^=I8ED;jm  gx-ljQDF9`0wO{"T# g EvUٞڙj!Uw\DCʘ/Uw\*Ê㺜?cU39'=tZ5:H.8Dw# |*vqj sN?u\9oXr#nKbd`ff.Ռ:^4+.U5}:CfFº>^ ohb'",D4?`*Kޝc'pt߹{'Fk]N1]g2#M>A'©2DRek"bU"))aAJ Z\Ja B5VCYR@8F0tTj%F^6/K2JKaUbI^"ѫn<=u+k r 1Ӯw,mijaNV6-kv @%C>| NmkiYe֤'#8eJ&$_Je2>x}d_+QsH7k|'Dq)sхךS%ީ|Vۡxn/⒢rsHݗqYM3LZ!xqtboDP7Y/yCd/LeBzdF>U|"xq>@ZVۼ98Ll j_-kH13)fWY)ڣRX_~bTh ˓=QcȵlL8u9#1<<"nѬv$QLN H\x*.5] 889O<ҫrbs* ݄s`UUZD*ӻҽIg Mj]2ѠAC3\.Oa j[#p~h{ DAnI.UK,Jb8'VJVy,g;H΂JؑD!LB'+ SޢVK 5j4Z,GrJ۫lvY Vi/IXL!2hYt4Y sB9*6I|nBoAE'Wv@-{P<_&6 b^q4Kv- -@w$\Z,jJKB1O8K_hWM6yQ RgxCS%cs`BbXp}Ur93U;C i5(nwܰ]6D0`Ypm+Hd߯;ϓJ[i 5]|EKA W\IL4ަt S@]Db V9i_cޭՓQ %$M`FUuSxUAF,'4[ug7`1RDu e4_b,$v74k`C<[w+g´}OjTA($È|葈s9&7qI0Z#˛7-^%MY$N e!ʞ%/?n=WR>(=y#u&u]/kEOtGJL6{D'l:͵!|^릩z9F8e!۬Ȟ& -4;&tX:Od0C+' jwԣSbͿ$zM׊jr(SEa EQqHk(1"WSq5U{TS(R2lEsJD♦ G^TEΖ ೽!q8MNV_ [H<7"۽$T #Y ǐYhأһbP-u" VxJ_-mjV_舗Kt |e1_Ge*fKzU-n 쨦b=8Ye9a4 4`CV_޿hfNEQ4_˼efu'2l =i,Էh󎯪S*:u՜gPrz,V)}^% Dqm3h'|lJ7ja}'Vn/Gu9ƿ^H"·de`Sg5 {x[[:>dt|2d1{eŷS._,]eu}^ Ƽ=gLq VŰC99'S_wC=&Lݖr:Ne,Yq$PaQ4 BĄ{~X;/U:bAE`.lN٣"#k2;f}ircb^wc"ZGCea̟fwʾeLJt]ljoŚןh;b"mۅDɭ6xcasmNx[ ^*pb7ẙd wR\լ:f/uΘ9 cԗx6Rbu.Xl -Y4֦o7yYÉf(+EgSJcu ξ?== ]R+Ek+j_&#Q͂JQyVthʒSM]$C(63q7~ޣTG /"p1`Oe`B}\c{qwN+=e1mu <%)ێ' uk07+*HݷUk4N{Z?ۋ'`'%HJPCo+y4?o_7zY ?(jqd/(Ik&pQ 5ϛH&c)pyC@6lwE lqTw pޣ?>+zPt!e B av3FkdCb˙ȑqSUickDRΓ}#S]v/XPD F￿@4P%t 6p%6?\a0ZU4=BgA_g *d2C?]q +Ȏ¡ aSMs,&ۘ-ә⽚ִѡִV=5owKt</]=0{:;G ukpp60;L2_=d wjL緧=՛#9ӗbOgWhӳ`KA%!ySدΠʩ.:&N/]fs0Vғ*Dj3Ƨ65kP{cD73A=j ΠԳܬ5}Eʀ:.Kk5ҽe6T,KͦrabaPM9#z;51ATѠgzJ#R^_ Of-1ՄU$R3 jgP9;[MY jTѠ `Pa ln<)]AHyhIʀ$ZVA%msIgLM9 jTѠo `PEԭ]ZƬ+YU"Te@A-GPy#TQ7o0465`P[d;b ;쒁pIj$GAl4ߓ*9bz hE;!RaC0m~Pm >bG0~l6EnOVzRh6(y_tq[Ma:'7NhU0-rSx ShrÕy3ǐR48*V?ȜMz4_Mi9ߥW;V%˄1 rWMO։kx@[cJ,&jи6}:+i E]1H|Ȣ[8EJ2-#w8EPYaS]P0V0]ՋcH)yd860$Ϛ]No ~W\Ѩ'Iմ%b+:D8h@\D.j9$jTu@kV64z\ fY‹dű[]X[c85(&v+VEDPlӡYc1{&&VX?#WZ3]U>hi)Ƶ4޵}- rإĮYM[֍]1K9.vQ6j4@pcKGv >b2غ7]u㳡[ ls/i!JZ/1`7ZũdHP*7eMX$vzSDͺإt6:l*$SԊ)cc+B(OQq.{FcK7<1}g~ُ|r|(fr8`/o=Db:v~>ݍ$ W '񙜬.6CUWR&]}U_ֆJ~~] ZV bD׶lTϵ}U r%SbECx5]gөyrɼ?v:P%^v*$ ayyjJrTb.].{xŬxH:zbgxz HL.2>;=;6>^ff]~T+.%vۍ]1K9zbeh,vñlQ,ʜ|<JLN.el F6>>7[iHW<.6c_q^^g rRO5Ude]-p(ǩFJ1t2➃[ s'D+9A7°tEg>Ó ]^/.GruqAo|:UsZ>ӊx=e:h{[wZ(Uve;u͖i]FtNQpsZ@ oim5Vǡ77ViUzN+sZ;W9=pyYbɩ\dZt_i=/FWƶFtNkNv}!M8"Ӫ7Ӝ֢1Zi=eћӊxi}Nkld?Ӻupr>sZuZ@ oim5VƷ32ZU&:iW^cMivN~lrlδ 9:{qZ76cnMZN=7U8 ߬ `{R&a{нC޿mڤ?慼3;qe!rJ-\xBUb@%͊3zo1+[gn|^R2ݥ*[qI`&eymb]dٗO~7e!Z\mD9c;xlQr]l*{rk&w<*­ D\E{8q{C˿JGev#^<+ඈ1fh?ommJm%\#wW6owjAlь8i[0| , ҰF!INЃ9 [*z59B;4;>COKhZl{-kC2U#Lq)--s%EޱqИ4QW¥\ xxuhj>$HL%B֔ܽPW,dfj6bC.%E~J<<"0qq8 jo'oݟaMuĀLt0f<+F LgT#=pk/AVsȁ<\NmTYtW*SiK2p+η5`#Q2oJD0RmʰJX.@Seox` *UV yTY%f:}*ĬsT~Щ*>UʔJTTx+η5`#|Q2oJDTRe(@]"dMy݋ Tt6Reyy8trХ^TJ ԰ *G)Nv!j.w%+Rerف:@T\{Jt(2UVYWé2xu=U}L)K2TPWokZrK7GHavde\k4N;.<9A? p9 7|d=o>W eyd9g0$?nY &N-C.Dz{TGOq70ݷh? Xsa`'vdɯ}s̕ ]1[:h;T6CL(?UԮ Y801nTIfҬ;@K\}Ⱦ ҈Tnfp=)-*:'?5z~qf y #h_ 4ǴHz0P7*Sޤ/XИ `v}B4wv \ mg{aٞ7a74 D&F b$߰;17\]]:8j7y_4Ư*VB<}ì^oXV9m=ưJض M:7D)C7ԀzPAvGĕgdްcJ FӮoX9 m7a 7#ö@c|Ca%T¶oh ԉ!J [ Haw&Jo7X~3#h֮X F߰qN z =FP v7TP'(e(o7T#]7:7X~3#h֟O ]n[Gl3S멲%kTIݛ-LYrIx_| @@ɏ;Lj6nt7  ᆀa9*U aMt*7d-1rÚ`4n^V!frJ/:' {w/'FoKúːж4eCXQmC@7_ׂ>?0;ᅟjC`M6e l QcU1`,[m*$j TV׵Uuyf-z+Z!E:ķ:tBT,qWCV -m*[xa 9}/WNN?ٗq-z8+-,qZ)Lx6muW4ruKp)+fLgX2HZYao3Tk xtX73Pf8w'QqL=Cj6Ms{yRjq8@ ;1q&"̕9WnUQ9q\q83Ĩ{ձFq (z_8ED\ p@/81q&"1i h0Wo6sV8镄T3杪ǘ 85o&ǹ]^KM8NIJV199S69`pH h0Wo6s68t6yd#cIbQDP 1"q|;69C3ǩHvPz8aGqqsuC8iG8:~qgUʧǩg'9qʲVmrNjϓSC糤> p@ !81q&"1fǙM/*ǩg'|8׿nguOOeIO~ssUtX}yJITE<yf)ZvLcceFQSY[9_i$:'`&;_*j;e,Ybu&K)>c[<9[~ މW鯩'hYa74m<[ E !J:% Y:!"d*L)ay8<"ncd (R&$ox{-QK:7~ 4uQ]bjG CFTWU'[jVOy{QFE[Ͷ+|"Ķ AeeATZG7H.[B^_jm:6j5BC mGAe{Gc"EFӣw#ަ){Gb5-Cj }"I]EfӇ郌 ^QyG>d&9.;j_{G6$r߆$uw8; "#(< ü9Q74;"QsǦ;Q,wt"Tu5WkHS.&0is8uE ԑw/(9.ZAڗzޑwԽw8^0TnjhjmfEWb^qczG4;:X ϙu%H/fyY[jm1ծP^G{m\m}.;MYj{!%_y(t_uEבwC(9.z/Խ#{[@f{~2VwTY<`PPEV#dFJBiܨ vϳCh.彣wDH)/H'/kH%֐v]"EyM~3}H7.=;|9E+HRO;wkf׷/ QfU#Aü69FaVq%E7wAJF;{G]rQάK0is8uEܑwC(9.;j_zGz#|~KW"rzzyy5`m\ 3/HӲj}^7ʭZzNi`hF::7Jge 5R9viow 7ڊ^kժuQoEUy_l%Uh y [kηx'aFlX|HꇪQ'oj2Z,!n71HTߝ٩= ]V5rbRݻCT藲4Eq[N鋼ޫv.JxBE w*k:*BBgLKԑk橅} #g5\jHˎO] Ou~v.?ş|΁0VUGL  G:?6wuUN?f'}[*]X5'dGCۨjT~bhi4#sHlQ ].sńڌUAv^Qu<,,f?GX1V!EXprX Osh4CcG$djGNa11l)爱^nV] Wjnox_TaTbQ *Sʫ@ψsXzI UaV >ψcsŢxXXQ-)r$b"/E_uq Zo/Pjg a119,6sXSK5,I^ǰXԗb}]k$nE0DbQu<,,f?Sfb9[,g-WwreXbC԰ØsveDpTaTbQ g;[,a.L-9,w݊Hazaa1y2,?9rX,xXssX,z.XI([,XajbE}9,E[aNabQu<,,+^_ $맿na2,Vמ[yW߲ϴVw AcS7i>۝8_SUSVZ!zwr1+O_)#|#Go` NuͽŪ̢WrU ^׷/um;/z0&fβ+"m$Ty)9,Xԗb}]=L%5С/kArZc?;[BY]栱AL'Oy-w3S8~ dVݑZpzzyy5^26_,?̿-=^-3q\ Dl/~sy2@_2WDj Bϥ]/zC;VP>5KRche;۬;vvw'l_r~X^߿?Tw.v̈>, eɀBԛ72< ԒiZ"´# XgiZ&ZEZSMT]~ y3LP7D C1Q6jJ+s&TrN&ك"u]<(yn 2Έ-~f&ё ̛qfk'PcB̛~*'Ұ\kg9Zlp6@m'hv|:ev >*y6d7$gvBv5<7Y.NL4 N@9)=xxTam^||c:_LQ%+Fjf;~bCZ .RktLDaYKk83+A/{*`I1x .)ׄV̱4~̢H/G^չ8dAR ؆{*ъ̐prr< z/j~T| ֤%v-.w) p{^;X)c#IR7RK]|U3ݩ6V0jfo LuqIYC^{ݑQ+*T' Q|nLԒ*htbmu jtھ+Ç!_QmO7HXU ?k&BWƱ"\#06*kU:Xe[00ns Hʕ:Mƒg -Zu"<8I3,!/K=we !e?+(T>qW&j!2 (2(W/EʈF9%$:12Au1Cۋ4\_K2k˕S]\R␗5WS|]KU[p]*Ll=X5,OݕhLʮ ʕwhk]]@_ 5"ՠ/Ҩre|e,IGʼ-W LuqIYC^֔[^MU=we.Uݕr*+9]]+c']-2)2.]*ۂyAu6":*W4'ϨՓ!HԝK-͊lw]h8:S|LVteZPvePteDʤz2Au!"`Xgq:*W)ܷlR80%8eMTy]we.U}W Q|LƹCtePve̟/ K, #8֨, "=^|yJ5WɈ.ߖÌ Ne00?m͢&v pYh_Zm f+ۻ \>B?" Xe7'։ic]kev}UaT{QMY2^'ڬd>Β [7ͯϬ Yb5vwooM4F\!fӽԛ);T+5 ʎ*PZl^`P.ZAmBުG'ccf&͇uw^\٭_?ܟNu.?_,L^eY03cY ![>ΰB||a'\Ǭ_^eE<<{a͸9N~QA%+fy~q\ߣwqV2h\^Y01ӠDaΔ1\3˰տ-_뮪r}fM&5Ic?H,\V9#LX>F>f=rIllq~u\?\L&7׸E4y\3 O0cfk\UϬh>F>f7r;W-^>׿1`03cAq}2p},V~?-Ǩ?̒=s&~ >r괹ǷA"׿N+Rq}, ̃iP\1\3˰տ-_늫r}fG1*1dE\ޣ\(:molz}Bg8_"4_3 0 >f(s}//` 2lo:<\r} s},Y3o7#?ίN;kreO-4nhL6J[I~yPRFR6RJt(Oл}r >@b=n*R0W_kęagTxWoc5q Sb^t M[}WEȷU Ԯ+({&Z9V"b E!%=bRjq IRr@if4PrBIS=y'VVX6|+쓙]ek`;Jͦ ){eG/ /_2Ar엉?QE=3N2\0,ֱ@̈(U'46˞~3\GjjLyfM2qHE-ޠ/7ږh>Gs8wl=5gvZݝHq7"vv}fLxfQE=3N2gv2})y $<3gagV!{fyϬ ,B\hAl=왱y]3^g&<͞Y̆cggl -=ҿʞYm}є Ƹg`celY=3Em̲g=3T_?_g^[>OO//&k~O飝ot 7SS~1Ui۬w'e;4j7oHHvVC2 Y&%&pSCgII #bv˅i:-r0ܰTi|˧& A{bC=, tљ6gT%b`YAPJ*JuIfd]!#uG9#1 K7bO[CHl $N-/bǃnWWyLLʌ$TOB6v" S;EНadGzla@f,6*,' g1mhΒnFg| jiJtIGckA6/=/·ԫJ]I{W2UwC݆TbwQӗ}߽]i1X:lͷjbw/ p1$tisQAh â_!tTB-Tj5j 0$x w!YpeM"|SPuH)Oϓ2n'dD^T043 nYnJֆXAKGj=;& aoh~vBNCi1&-:[.ԣC^`iI1eUn1$B8.!&âgSL7YmtXQLԂpL_s$yW4 Iſibeo}ulO:*i3lLAat?!L PMAV_لh 0A\gpNXf0JhWPl mώ!z֘ moQ_t\gz*՚?]ɀ '蹠{)}S=ꅍ73C_[L>Ipu[= YyLm[7z`-)A`l 峩.5yyu߭vV{CH^mKE*ӴPf)JmCFY4S9h),uSʒcyawSU9_bqS(7%S-rm 8LksEhׂO u΄ {s9$^@u?0ke(#oJcF>l>%vh-;غǙ u݄lɊ&W,Ԣz V%:@oTPcJMdZ^8Fpe33ޝEv:VXFZcz=R EMf*BIdC h|J7H:A'O+Aכ5?ܝtc`Vi+Yj*!Ճ!dz/ dg`CnSAęA;TW[WbB툂pl?' `\Au# DZxzأ'JI Mj*1d:CW[n6 VP(¢w2ޟ1c%&C;mz_qa~ lbGҚ\|N< 0[ =6.-cG.Cunt QT 1mL= KΔQ+41L2 n`TlZj%>Yk}gI3RΨtia9FU(ZEi3xc>]4e!Mgvi㫺\u,^aA /-q2pu7ҠUXʪ[Fm@qڒR>HibBJ}55 {ݎZLgL\%Z*FԚq9^NbѐïkI"bJzJ'2s,F8w5Hu\֖y ؤH'/ζWj [g[ijl&[֖scE~eyq-5xɶ$N 2Z-b[noZ_ b=_ݝ?i·R92\biC*Љ^dY5-?oT0˿Mdb-@ne <^G̼; 8$Bo/S\ic hI'6/rmհRKmƲ7j,F3za{[ޫݚ\S]Run7.AjkHe8.ԮBȣ'yZ}Uy1&ZԼe1r']YJ!K k8?~<@0 kkASk]`Pu~k-7,,D%,Bv; < -~''mZrILHLf+2&,M?fW@CdwPK!mšword/webSettings.xmlSN0 }GP坥:$@&!@ > M6I%zŚl !jt%rkJ4?>gYL)aA6Ѵ+:UƌT\,,Y/8+=8JHnEIWtķRD}d ˬ, *CƧlFSzϬ+*$\y_P5%nߖnN;4@u~B SB Tޑ>9Ψ0^Hr Ҳ*І0føa!To7=p;L`6z쇯}hӯps4 g9-f x&>@X8~9ݵPK!eKg@word/numbering.xml\nFwҋY`Om_W`a Xbf83{O^$p)KEmi)%MRzuS_M },,i<^Di]:Q0=ǝd;U$r4yVvbR>]М-%Q4 .v=x܊QL-].r>! *PVH`<\G.pÌ1t6Xs! o/_ܷx^d{8LؘƖ |A3"\#xR,$ l/,M\p$ť8no\3{HKK{Mpg;vI,n(|h HD !~ڧRR-amڋ/2Wv~ݹ/5v{p]5- bV+N/o %Yy3 "MP~u/}z)^w^oV^eN}H2%/$;@!R|pbDelORҌ`~.P.TP+c7%& tq tjׅڦ^ܸN T ս/6] MG춷_M;B) R^xCG/(RE^m>=Ce&X.P VCa.Y\lvإ5;uѪ::3A,|pUe7njs9`Gk7A8::H=x,AGBk#jj+ /sx6W8 NrخeuKw*BQל"YvZo5!tlfʹ;Yu>L|' MD^Ժˉ9[U}'˖UGݚyN9ڀ~'K,ێ>򍆒;Y0"q3B+m]dvj ˫$߽w| jv$|LYyE^rM"r/{ġ}Ii@R ` DϮօ,R< *ArY$Zv84GO VwgDֳQΙP*+l(kd!tEK.sY6X0vco H b+6т#Ꭺ !,Z>v!̬;YB׷Rl5@PCkl^x2LZ3@vXΠۋYbRɄe5-PZgAUp!AHZQJ벆 yskp1׊e#( b@TBvVOI9p6t54) .`/E#-<*ۅ{+YG5Ѹ7ϣ*k Oa&gaiY/V02aEF9HXè 1EHz9 b=-?G~81 rL&  Ɨ3c. O>PK-!aDե[Content_Types].xmlPK-!N _rels/.relsPK-!iNFword/_rels/document.xml.relsPK-!]b word/document.xmlPK-!: word/endnotes.xmlPK-!word/footnotes.xmlPK-!9^(word/theme/theme1.xmlPK-! word/settings.xmlPK-!4-word/fontTable.xmlPK-!\Gnword/styles.xmlPK-!~oword/stylesWithEffects.xmlPK-!?<vdocProps/app.xmlPK-!p.`{docProps/core.xmlPK-!mšword/webSettings.xmlPK-!eKg@word/numbering.xmlPK|pandoc-1.16.0.2~dfsg/tests/docx/inline_code.native0000644000000000000000000000026212645626061020532 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "an",Space,Str "example",Space,Str "of",Space,Code ("",[],[]) "inline code",Space,Str "with",Space,Str "three",Space,Str "spaces."]] pandoc-1.16.0.2~dfsg/tests/docx/hanging_indent.native0000644000000000000000000000100712645626061021234 0ustar rootroot[Para [Str "This",Space,Str "is",Space,Str "a",Space,Str "hanging",Space,Str "indent,",Space,Str "with",Space,Str "the",Space,Str "left",Space,Str "side",Space,Str "set",Space,Str "to",Space,Str "the",Space,Str "left",Space,Str "margin,",Space,Str "and",Space,Str "it",Space,Str "wraps",Space,Str "around",Space,Str "the",Space,Str "line."] ,BlockQuote [Para [Str "Five",Space,Str "years",Space,Str "have",Space,Str "passed,",Space,Str "five",Space,Str "summers",Space,Str "with",Space,Str "the",Space,Str "length"]]] pandoc-1.16.0.2~dfsg/tests/writer.asciidoc0000644000000000000000000002207512645626061017137 0ustar rootrootPandoc Test Suite ================= John MacFarlane; Anonymous July 17, 2006 This is a set of tests for pandoc. Most of them are adapted from John Gruber’s markdown test suite. ''''' [[headers]] Headers ------- [[level-2-with-an-embedded-link]] Level 2 with an link:/url[embedded link] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [[level-3-with-emphasis]] Level 3 with _emphasis_ ^^^^^^^^^^^^^^^^^^^^^^^ [[level-4]] Level 4 +++++++ [[level-5]] Level 5 [[level-1]] Level 1 ------- [[level-2-with-emphasis]] Level 2 with _emphasis_ ~~~~~~~~~~~~~~~~~~~~~~~ [[level-3]] Level 3 ^^^^^^^ with no blank line [[level-2]] Level 2 ~~~~~~~ with no blank line ''''' [[paragraphs]] Paragraphs ---------- Here’s a regular paragraph. In Markdown 1.0.0 and earlier. Version 8. This line turns into a list item. Because a hard-wrapped line in the middle of a paragraph looked like a list item. Here’s one with a bullet. * criminey. There should be a hard line break + here. ''''' [[block-quotes]] Block Quotes ------------ E-mail style: __________________________________________ This is a block quote. It is pretty short. __________________________________________ ______________________ -- Code in a block quote: .... sub status { print "working"; } .... A list: 1. item one 2. item two Nested block quotes: ______ nested ______ ______ nested ______ -- ______________________ This should not be a block quote: 2 > 1. And a following paragraph. ''''' [[code-blocks]] Code Blocks ----------- Code: .... ---- (should be four hyphens) sub status { print "working"; } this code block is indented by one tab .... And: .... this code block is indented by two tabs These should not be escaped: \$ \\ \> \[ \{ .... ''''' [[lists]] Lists ----- [[unordered]] Unordered ~~~~~~~~~ Asterisks tight: * asterisk 1 * asterisk 2 * asterisk 3 Asterisks loose: * asterisk 1 * asterisk 2 * asterisk 3 Pluses tight: * Plus 1 * Plus 2 * Plus 3 Pluses loose: * Plus 1 * Plus 2 * Plus 3 Minuses tight: * Minus 1 * Minus 2 * Minus 3 Minuses loose: * Minus 1 * Minus 2 * Minus 3 [[ordered]] Ordered ~~~~~~~ Tight: 1. First 2. Second 3. Third and: 1. One 2. Two 3. Three Loose using tabs: 1. First 2. Second 3. Third and using spaces: 1. One 2. Two 3. Three Multiple paragraphs: 1. Item 1, graf one. + Item 1. graf two. The quick brown fox jumped over the lazy dog’s back. 2. Item 2. 3. Item 3. [[nested]] Nested ~~~~~~ * Tab ** Tab *** Tab Here’s another: 1. First 2. Second: * Fee * Fie * Foe 3. Third Same thing but with paragraphs: 1. First 2. Second: * Fee * Fie * Foe 3. Third [[tabs-and-spaces]] Tabs and spaces ~~~~~~~~~~~~~~~ * this is a list item indented with tabs * this is a list item indented with spaces ** this is an example list item indented with tabs ** this is an example list item indented with spaces [[fancy-list-markers]] Fancy list markers ~~~~~~~~~~~~~~~~~~ 1. begins with 2 2. and now 3 + with a continuation a. sublist with roman numerals, starting with 4 b. more items A. a subsublist B. a subsublist Nesting: A. Upper Alpha A. Upper Roman. 1. Decimal start with 6 a. Lower alpha with paren Autonumbering: 1. Autonumber. 2. More. 1. Nested. Should not be a list item: M.A. 2007 B. Williams ''''' [[definition-lists]] Definition Lists ---------------- Tight using spaces: apple:: red fruit orange:: orange fruit banana:: yellow fruit Tight using tabs: apple:: red fruit orange:: orange fruit banana:: yellow fruit Loose: apple:: red fruit orange:: orange fruit banana:: yellow fruit Multiple blocks with italics: _apple_:: red fruit + contains seeds, crisp, pleasant to taste _orange_:: orange fruit + .... { orange code block } .... + __________________ orange block quote __________________ Multiple definitions, tight: apple:: red fruit + computer orange:: orange fruit + bank Multiple definitions, loose: apple:: red fruit + computer orange:: orange fruit + bank Blank line after term, indented marker, alternate markers: apple:: red fruit + computer orange:: orange fruit + 1. sublist 2. sublist [[html-blocks]] HTML Blocks ----------- Simple block on one line: foo And nested without indentation: foo bar Interpreted markdown in a table: This is _emphasized_ And this is *strong* Here’s a simple block: foo This should be a code block, though: ....

              foo
              .... As should this: ....
              foo
              .... Now, nested: foo This should just be an HTML comment: Multiline: Code block: .... .... Just plain comment, with trailing spaces on the line: Code: ....
              .... Hr’s: ''''' [[inline-markup]] Inline Markup ------------- This is __emphasized__, and so __is this__. This is **strong**, and so **is this**. An __link:/url[emphasized link]__. *_This is strong and em._* So is *_this_* word. *_This is strong and em._* So is *_this_* word. This is code: `>`, `$`, `\`, `\$`, ``. [line-through]*This is __strikeout__.* Superscripts: a^bc^d a^_hello_^ a^hello there^. Subscripts: H~2~O, H~23~O, H~many of them~O. These should not be superscripts or subscripts, because of the unescaped spaces: a^b c^d, a~b c~d. ''''' [[smart-quotes-ellipses-dashes]] Smart quotes, ellipses, dashes ------------------------------ ``Hello,'' said the spider. ```Shelob' is my name.'' `A', `B', and `C' are letters. `Oak,' `elm,' and `beech' are names of trees. So is `pine.' `He said, ``I want to go.''' Were you alive in the 70’s? Here is some quoted ``code`' and a ``http://example.com/?foo=1&bar=2[quoted link]''. Some dashes: one—two — three—four — five. Dashes between numbers: 5–7, 255–66, 1987–1999. Ellipses…and…and…. ''''' [[latex]] LaTeX ----- * * latexmath:[$2+2=4$] * latexmath:[$x \in y$] * latexmath:[$\alpha \wedge \omega$] * latexmath:[$223$] * latexmath:[$p$]-Tree * Here’s some display math: latexmath:[\[\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}\]] * Here’s one that has a line break in it: latexmath:[$\alpha + \omega \times x^2$]. These shouldn’t be math: * To get the famous equation, write `$e = mc^2$`. * $22,000 is a _lot_ of money. So is $34,000. (It worked if ``lot'' is emphasized.) * Shoes ($20) and socks ($5). * Escaped `$`: $73 _this should be emphasized_ 23$. Here’s a LaTeX table: ''''' [[special-characters]] Special Characters ------------------ Here is some unicode: * I hat: Î * o umlaut: ö * section: § * set membership: ∈ * copyright: © AT&T has an ampersand in their name. AT&T is another way to write it. This & that. 4 < 5. 6 > 5. Backslash: \ Backtick: ` Asterisk: * Underscore: _ Left brace: \{ Right brace: } Left bracket: [ Right bracket: ] Left paren: ( Right paren: ) Greater-than: > Hash: # Period: . Bang: ! Plus: + Minus: - ''''' [[links]] Links ----- [[explicit]] Explicit ~~~~~~~~ Just a link:/url/[URL]. link:/url/[URL and title]. link:/url/[URL and title]. link:/url/[URL and title]. link:/url/[URL and title] link:/url/[URL and title] link:/url/with_underscore[with_underscore] mailto:nobody@nowhere.net[Email link] link:[Empty]. [[reference]] Reference ~~~~~~~~~ Foo link:/url/[bar]. Foo link:/url/[bar]. Foo link:/url/[bar]. With link:/url/[embedded [brackets]]. link:/url/[b] by itself should be a link. Indented link:/url[once]. Indented link:/url[twice]. Indented link:/url[thrice]. This should [not][] be a link. .... [not]: /url .... Foo link:/url/[bar]. Foo link:/url/[biz]. [[with-ampersands]] With ampersands ~~~~~~~~~~~~~~~ Here’s a http://example.com/?foo=1&bar=2[link with an ampersand in the URL]. Here’s a link with an amersand in the link text: http://att.com/[AT&T]. Here’s an link:/script?foo=1&bar=2[inline link]. Here’s an link:/script?foo=1&bar=2[inline link in pointy braces]. [[autolinks]] Autolinks ~~~~~~~~~ With an ampersand: http://example.com/?foo=1&bar=2 * In a list? * http://example.com/ * It should. An e-mail address: nobody@nowhere.net ________________________________ Blockquoted: http://example.com/ ________________________________ Auto-links should not occur here: `` .... or here: .... ''''' [[images]] Images ------ From ``Voyage dans la Lune'' by Georges Melies (1902): image:lalune.jpg[lalune,title="Voyage dans la Lune"] Here is a movie image:movie.jpg[movie] icon. ''''' [[footnotes]] Footnotes --------- Here is a footnote reference,footnote:[Here is the footnote. It can go anywhere after the footnote reference. It need not be placed at the end of the document.] and another.[multiblock footnote omitted] This should _not_ be a footnote reference, because it contains a space.[^my note] Here is an inline note.footnote:[This is _easier_ to type. Inline notes may contain http://google.com[links] and `]` verbatim characters, as well as [bracketed text].] ___________________________________________ Notes can go in quotes.footnote:[In quote.] ___________________________________________ 1. And in list items.footnote:[In list.] This paragraph should not be part of the note, as it is not indented. pandoc-1.16.0.2~dfsg/changelog0000644000000000000000000137405112645626061014640 0ustar rootrootpandoc (1.16.0.2) * Depend on deepseq rather than deepseq-generics (fpco/stackage#1096). * Fixed regression in latex smart quote parsing (#2645). In cases where a match was not found for a quote, everything from the open quote to the end of the paragraph was being dropped. pandoc (1.16.0.1) * Fixed regression with `--latex-engine` (#2618). In 1.16 `--latex-engine` raises an error if a full path is given. * Org reader: Fix function dropping subtrees tagged `:noexport` (Albert Krewinkel, #2628): * Markdown reader: renormalize table column widths if they exceed 100% (#2626). * Textile reader: don't allow block HTML tags in inline contexts. The reader previously did allow this, following redcloth, which happily parses Html blocks can be
              inlined
              as well. as

              Html blocks can be

              inlined
              as well.

              This is invalid HTML. The above sample now produces;

              Html blocks can be

              inlined

              as well.

              * Improved default template lookup for custom lua scripts (#2625). Previously, if you tried to do `pandoc -s -t /path/to/lua/script.lua`, pandoc would look for the template in `~/.pandoc/templates/default./path/to/lua/script.lua`. With this change it will look in the more reasonable `~/.pandoc/templates/default.script.lua`. This makes it possible to store default templates for custom writers. * RST, Markdown writers: Fixed rendering of grid tables with blank rows (#2615). * LaTeX writer: restore old treatment of Span (#2624). A Span is now rendered with surrounding `{}`, as it was before 1.16. * Entity handling fixes: improved handling of entities like `⟨` that require a trailing semicolon. Allow uppercase `x` in numerical hexidecimal character references, working around a tagsoup bug. * `stack.yaml` - use lts-4.0, but with older aeson to avoid excessive memory use on compile. With aeson 0.10 we were getting an out of memory error on a 2GB Ubuntu 64-bit VM. * Improved deb package creation script. Made `DPKGVER` work. Renamed `COMMIT` to `TREE`. You should now be able to do `TREE=1.16.0.1 DPKGVER=2 make deb`. pandoc (1.16) * Added `Attr` field to `Link` and `Image` (Mauro Bieg, #261, API change). + Added syntax for link and image attributes to pandoc's Markdown. + Updated readers and writers to use link and image attributes when appropriate. + Support image attributes in Docx, Textile, RST readers. * Renamed link attribute extensions. The old `link_attributes` is now `mmd_link_attributes`, and `link_attributes` now enables the new pandoc-style link and image attributes (API change). Note: this change could break some existing workflows. * Implemented `SoftBreak` and new `--wrap` option (#1701, API change). Added threefold wrapping option. + Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` + Added `WrapOption`, exported from `Text.Pandoc.Options` + Changed type of `writerWrapText` in `WriterOptions` from `Bool` to `WrapOption`. + Modified `Text.Pandoc.Shared` functions to allow `SoftBreak`. + Supported `SoftBreak` in readers and writers. * Text.Pandoc.Options: Added `writerDpi` to `WriterOptions` (API change, Mauro Bieg). * Added `--dpi` command-line option (Mauro Bieg). * Rationalized behavior of `--no-tex-ligatures` and `--smart` (#2541). This change makes `--no-tex-ligatures` affect the LaTeX reader as well as the LaTeX and ConTeXt writers. If it is used, the LaTeX reader will parse characters `` ` ``, `'`, and `-` literally, rather than parsing ligatures for quotation marks and dashes. And the LaTeX writer will print unicode quotation mark and dash characters literally, rather than converting them to the standard ASCII ligatures. Note that `--smart` has no effect on the LaTeX reader. `--smart` is still the default for all input formats when LaTeX or ConTeXt is the output format, *unless* `--no-tex-ligatures` is used. Some examples to illustrate the logic: ``` % echo "'hi'" | pandoc -t latex `hi' % echo "'hi'" | pandoc -t latex --no-tex-ligatures 'hi' % echo "'hi'" | pandoc -t latex --no-tex-ligatures --smart ‘hi’ % echo "'hi'" | pandoc -f latex --no-tex-ligatures

              'hi'

              % echo "'hi'" | pandoc -f latex

              ’hi’

              ``` * Removed deprecated options `--offline` and `--html5`. * Fixed language code for Czech (`cs` not `cz`) (#2597). * Implemented `east_asian_line_breaks` extension (#2586). In `Text.Pandoc.Options`, added `Ext_east_asian_line_breaks` constructor to `Extension` (API change). This extension is like `ignore_line_breaks`, but smarter -- it only ignores line breaks between two East Asian wide characters. This makes it better suited for writing with a mix of East Asian and non-East Asian scripts. * Added support for PDF creation via `wkhtmltopdf`. To use this: `pandoc -t html5 -o result.pdf` (and add `--mathjax` if you have math.) Margins can be set using the variables `margin-top`, `margin-bottom`, `margin-left`, `margin-right`. Other styling can be done through CSS. * Fixed cite key parsing regression (jgm/pandoc-citeproc#201). We were capturing final colons as in `[@foo: bar]`; the citation id was being parsed as `@foo:`. * ICML writer: + Fixed image syntax for local files (#2589). + Changed type of `writeICML` (Mauro Bieg). API change: It is now `WriterOptions -> Pandoc -> IO String`. Also handle new image attributes. + Intersperse line breaks instead of appending them to every `ParagraphStyleRange` (Mauro Bieg, #2501). + Add `Cite` style to citations (Mauro Bieg). + Added figure handling (#2590, Mauro Bieg). + Better handling of math. Instead of just printing the raw tex, we now try to fake it with unicode characters. * HTML writer: Include `example` class for example lists (#2524). * ODT/OpenDocument writer: improved image attributes (Mauro Bieg). + Support for percentage widths/heights + Use `Attr` instead of title to get dimensions from ODT walker to `writeOpenDocument`. * AsciiDoc writer: + Support anchors in spans and divs with id elements (jgm/pandoc-citeproc#143). + Fixed code blocks (#1861). * Haddock writer: omit formatting inside links, which isn't supported by Haddock (#2515). * MediaWiki writer: Fixed spacing issues in table cells. + Start cell on new line unless it's a single Para or Plain (#2606). + For single Para or Plain, insert a space after the `|` to avoid problems when the text begins with a character like `-` (#2604). * Beamer writer: mark frame as fragile when it contains verbatim (#1613). * LaTeX writer: + Add support for GAP highlighting using listings (Raniere Silva). + Consider `header-includes` content as well as templates when determining whether to use csquotes (Andreas Lööw). + Create defaults for geometry using `margin-left` etc. If `geometry` has no value, but `margin-left`, `margin-right`, `margin-top`, and/or `-margin-bottom` are given, a default value for `geometry` is created from these. Note that these variables already affect PDF production via HTML5 with `wkhtmltopdf`. * ConTeXt writer: set default layout based on `margin-left`, etc. This sets up `\setuplayout` based on the variables `margin-left`, `margin-right`, `margin-bottom`, and `margin-top`, if no layout is given. * Docx writer: better handling of PDF images. Previously we tried to get the image size from the image even if an explicit size was specified. Since we still can't get image size for PDFs, this made it impossible to use PDF images in docx. Now we don't try to get the image size when a size is already explicitly specified. * Markdown writer: use raw HTML for link/image attributes when the `link_attributes` extension is unset and `raw_html` is set (#2554). * MediaWiki reader: interpret markup inside ``, `` (#2607). * LaTeX reader: + Improved smart quote parsing (#2555). This fixes redering of unmatched quotes. + Use curly quotes for unmatched ` (#2555). + Allow blank space between braced arguments of commands (#2592). * Markdown reader: + Improved pipe table relative widths. Previously pipe table columns got relative widths (based on the header underscore lines) when the source of one of the rows was greater in width than the column width. This gave bad results in some cases where much of the width of the row was due to nonprinting material (e.g. link URLs). Now pandoc only looks at printable width (the width of a plain string version of the source), which should give better results. Thanks to John Muccigrosso for bringing up the issue. + Fixed parsing bug with macros. Previously macro definitions in indented code blocks were being parsed as macro definitions, not code. * Textile reader: skip over attribute in image source (#2515). We don't have a place yet for styles or sizes on images, but we can skip the attributes rather than incorrectly taking them to be part of the filename. * Docx reader: Handle dummy list items (Jesse Rosenthal). These come up when people create a list item and then delete the bullet. It doesn't refer to any real list item, and we used to ignore it. * CommonMark reader/writer rewritten to use latest `cmark`. * Fixed Emoji character definitions (#2523). There were many bugs in the definitions. * `Text.Pandoc.CSS`: + Added `pickStylesToKVs` function to extract multiple properties at once (API change, Mauro Bieg). + Parse CSS that doesn't contain the optional semicolon (Mauro Bieg). * `trypandoc`: sort drop-down lists. * Beamer template: + Made `\euro` conditional on presence of character. for xelatex and lualatex, as it is for pdflatex (Andrew Dunning). + Moved `header-includes` before setting of title (Thomas Hodgson), to match the LaTeX template (jgm/pandoc-templates#168). + Added `section-titles` variable (defaults to true) to enable/suppress section title pages in beamer slide shows (Thomas Hodgson). + Moved beamer themes after fonts, so that themes can change fonts. (Previously the fonts set were being clobbered by lmodern.sty.) (Thomas Hodgson). * Beamer/LaTeX template changes (Thomas Hodgson): + Added `thanks` variable + Use `parskip.sty` when `indent` isn't set (fall back to using `setlength` as before if `parskip.sty` isn't available). + Use `biblio-style` with biblatex. + Added `biblatexoptions` variable. * LaTeX template changes: + Added `paper` after `$papersize$` variable in latex template. Thus you can say `papersize: a4` and the latex will contain `a4paper`. This change may break some existing workflows; if you currently specify `a4paper`, you'll get `a4paperpaper` which is meaningless. However, the change seems worth it, as it will make the `papersize` variable work uniformly across ConTeXt, LaTeX, and html->pdf via wkhtmltopdf. + Only pass options to color package if `colorlinks` is set (Andrew Dunning). + Make definition of `\euro` conditional in xelatex/lualatex, as it is already for pdflatex (Andrew Dunning). + Removed setting of `subject` in PDF metadata. This used to be set to the subtitle, but really the subtitle need not give the subject. Also, `subtitle` can contain formatting, so we'd need, at least, a plain text version for this. + Moved `header-includes` before setting of `\title`, `\author`, etc. This allows these macros to be redefined. + Use `\subtitle` command for `subtitle`, instead of tacking it on to the title as before. We give a no-op fallback definition if it is not defined. This change should produce much better results in classes that support `\subtitle`. With the default article class, which does not define `\subtitle`, subtitles will no longer be printed unless the user defines `\subtitle` and redefines `\maketitle`. + Moved redefinitions of `\paragraph` and `\subparagraph` to before header-includes. * Context template: + Use `simplefonts` for font loading (Paolo Rodríguez). This is needed for things to work on ConTeXt stable from TeXLive 2015. + Revert use of `\setuphead` in title block (Andrew Dunning, Rik Kabel). * Update LaTeX/ConTeXt link colour usage (Andrew Dunning). * Fixed man template so disabling hyphenation actually works. The command needs to come after .TH. * Added 'navigation' variable to beamer template (#2543). Valid values are `empty` (the default), `horizontal`, `vertical`, and `frame`. Note that this changes the default behavior from `horizontal` to `empty`. Closes #2543. * Added `toc` to HTML slide format templates (Andrew Dunning), so that `--toc` creates a contents slide. * Added `stack.full.yaml` to build `pandoc-citeproc` as well. * Allow pipe tables with no body rows (#2556). Previously this raised a runtime error. * Shared: Improved `fetchItem` so that `C:/Blah/Blah.jpg` isn't treated as URL. The Haskell URI parsing routines will accept "C:" as a scheme, so we rule that out manually. This helps with `--self-contained` and absolute Windows paths. * Define a `meta-json` variable for all writers (#2019). This contains a JSON version of all the metadata, in the format selected for the writer. So, for example, to get just the YAML metadata, you can run pandoc with the following custom template: `$meta-json$`. The intent is to make it easier for static site generators and other tools to get at the metadata. * Document limitations of --self-contained (#2553). * Improved Citations section of README (#2551). Added information about `link-citations` and a link to the pandoc-citeproc man page. * `ImageSize`: use `safeRead` instead of `readMaybe`, which isn't in base < 4.6. * Allow .adoc file extension for AsciiDoc (Andrew Dunning). * Improved implicit pandoc-citeproc inclusion. The filter pandoc-citeproc is automatically used when `--bibliography` is specified on the command line, unless `--natbib` or `--biblatex` is used. However, previously this only worked if `--bibliography` was spelled out in full, and not if `--biblio` was used. * reveal.js: Interpret pauses correctly for all headers (#2530). Previously, when using headers below the slide level, pauses are left uninterpreted into pauses. In my opinion, unexpected behavior but intentional looking at the code. * Remove redundant `center` variable for reveal.js (Andrew Dunning). * Parsing: Add `extractIdClass`, modified type of `KeyTable` (Mauro Bieg, API change). * ImageSize: Added functions for converting between image dimensions (Mauro Bieg). * Use lts-3.18 in stack.yaml. This avoids Windows build issues with the HTTP library. * Bump version bounds for dependencies. pandoc (1.15.2.1) * Added two missing test files, and `stack.yaml`, to `extra-source-files` so they're included in the source tarball. * reveal.js template: Fixed parallaxBackground options. `parallaxBackgroundHorizontal` and `parallaxBackgroundVertical` need integer values, not strings. (Vaughn Iverson) pandoc (1.15.2) * `pandoc my.md -t context -o my.pdf` will now create a PDF using ConTeXt rather than LaTeX (#2463). * Fixed omitted `url(...)` in CSS data-uri with `--self-contained` (#2489). * Added `emoji` Markdown extension, enabled by default in `markdown_github` (#2523). Added `Ext_emoji` to `Extension` in `Text.Pandoc.Options` (API change). * `Text.Pandoc.Readers.HTML.parseTags`: Fixed over-eager raw HTML inline parsing (#2469). Tightened up the inline HTML parser so it disallows TagWarnings. * Derive `Generic` instances for the types in `Text.Pandoc.Options`. * Org reader: + Fix paragraph/list interaction (Albert Krewinkel, #2464). Paragraphs can be followed by lists, even if there is no blank line between the two blocks. However, this should only be true if the paragraph is not within a list, were the preceding block should be parsed as a plain instead of paragraph (to allow for compact lists). Thanks to @rgaiacs for bringing this up. + Allow toggling header args (Albert Krewinkel, #2269). Org-mode allows to skip the argument of a code block header argument if it's toggling a value. Argument-less headers are now recognized, avoiding weird parsing errors. + Fix markup parsing in headers (Albert Krewinkel, #2504). Markup as the very first item in a header wasn't recognized. This was caused by an incorrect parser state: positions at which inline markup can start need to be marked explicitly by changing the parser state. This wasn't done for headers. The proper function to update the state is now called at the beginning of the header parser, fixing this issue. + Fix emphasis rules for smart parsing (Albert Krewinkel, #2513). Smart quotes, ellipses, and dashes should behave like normal quotes, single dashes, and dots with respect to text markup parsing. + Require whitespace around definition list markers (#2518). This rule was not checked before, resulting in bugs with footnotes and some link types. * Markdown reader: + Pipe tables with long lines now get relative cell widths (#2471). If a pipe table contains a line longer than the column width (as set by `--columns` or 80 by default), relative widths are computed based on the widths of the separator lines relative to the column width. This should solve persistent problems with long pipe tables in LaTeX/PDF output, and give more flexibility for determining relative column widths in other formats, too. For narrower pipe tables, column widths of 0 are used, telling pandoc not to specify widths explicitly in output formats that permit this. + Improved parser for `mmd_title_block`. We now allow blank metadata fields. These were explicitly disallowed before. + Citation keys can now contain `://`, so URLs and DOIs can be used as citation keys (jgm/pandoc-citeproc#166). * Beamer template: fix incompatibility of section slides with natbib. Natbib (and presumably biblatex) bibliography commands create their own section. Since these are in frame environments, we have an incompatibility with the `\AtBeginSection` macro which creates a special frame when a new section occurs. (We can't have a frame inside another frame.) This change disables `\AtBeginSection` inside bibliography slides. Thinks to Yihui Xie for bringing the problem to my attention. This supersedes #145. See discussion there. * Textile reader: don't do smart punctuation unless explicitly asked (#2480). Note that although smart punctuation is part of the textile spec, it's not always wanted when converting from textile to, say, Markdown. So it seems better to make this an option. * LaTeX reader: Handle `comment` environment (Arata Mizuki). The `comment` environment is handled in a similar way to the `verbatim` environment, except that its content is discarded. * Docx reader: Follow relationships correctly in foot/endnotes (#2258, Jesse Rosenthal). This fixes a problem with links in notes. * LaTeX and ConTeXt writers: support `lang` attribute on divs and spans (Mauro Bieg). For LaTeX, also collect `lang` and `dir` attributes on spans and divs to set the `lang`, `otherlangs` and `dir` variables if they aren’t set already. See #895. * LaTeX writer: + Use proper command for `\textarabic` (Mauro Bieg). + Added `de-CH-1901`, fixed `el-polyton` in `toPloyglossia` (Nick Bart). + Use `\hypertarget` and `\hyperlink` for links. This works correctly to link to Div or Span elements. We now don't bother defining `\label` for Div or Span elements. Closes jgm/pandoc-citeproc#174. + Avoid footnotes in list of figures (#1506). + Properly handle footnotes in captions (#1506). + Add `\protect` to `\hyperlink` (#2490). Thanks to Hadrien Mary. + Set `colorlinks` if `linkcolor`, `urlcolor`, `citecolor`, or `toccolor` is set (#2508). * Textile writer: support start number in ordered lists (#2465). * OpenDocument writer: Allow customization of opendocument automatic styles. Automatic styles can now be inserted in the template, which now provides the enclosing `` tags (#2520). * Docx writer: insert space between footnote reference and note (#2527). This matches Word's default behavior. * EPUB writer: don't download linked media when `data-external` attribute set (#2473). By default pandoc downloads all linked media and includes it in the EPUB container. This can be disabled by setting `data-external` on the tags linking to media that should not be downloaded. Example: * HTML writer: use width on whole table if col widths sum to < 100%. Otherwise some browsers display the table with the columns separated far apart. * AsciiDoc template: Fix `author` and `date`; add `keywords`, `abstract` (Andrew Dunning). * HTML-based templates (Andrew Dunning): + Use en dash instead of hyphen between title prefix and title. + Add `keywords` to metadata. + Add `lang`, `dir`, `quotes` where missing. + Always make author and date display conditional. + Updated dzslides template from source. * Man template: make "generated by" comment conditional. * LaTeX, Beamer templates: + Add `babel-otherlangs` for language divs/spans; `babel-newcommands`, filled by commands that make babel understand the polyglossia-style language directives (Mauro Bieg, #137). + Improved formatting of conditionals; `$for$` is always provided to allow multiple options (Andrew Dunning, #141). + Use `Ligatures=TeX` rather than `Mapping=tex-text` with `fontspec` to improve support for LuaTeX (Andrew Dunning, #135). + Revise `hyperref` usage (Andrew Dunning, #139, #141): - use same options for all LaTeX engines; - add `subtitle` and `keywords` to PDF metadata; - do not override `hyperref` link coloring without user input, effectively making the `hidelinks` option the default (removed as a separate variable); - link colors can be enabled (using a slightly darker version of the old defaults) using a new `colorlinks` variable, automatically used by the LaTeX writer when custom colors are specified; - `pdfborder={0 0 0}` is automatically set by `hyperref` with `colorlinks`, and is only applied if `colorlinks` is disabled. * ConTeXt template (Andrew Dunning): + New variables for controlling styles: `linkstyle`, `linkcolor`, `linkcontrastcolor`, `layout`, `pagenumbering`, `whitespace`, `indenting`, `interlinespace`, `headertext`, `footertext`, `mainfont`, `sansfont`, `monofont`, `mathfont`, `fontsize`. + Default template no longer supports MkII. + Improve writing of title block (suppressing numbering of first page). + Add `title` `subtitle`, `author`, `date`, `keywords` to PDF metadata. + Support `subtitle`, `abstract`. + Support list of figures (`lof`), list of tables (`lot`). + Disable link styling by default. + Define styles for all section types. + Enable microtype. + Improved formatting of conditionals. * Beamer template: added code to prevent slide breaks inside paragraphs (#2422, thanks to Nick Bart). This will matter, in practice, only when `allowframebreaks` is used. It is especially helpful for bibliography slides. * OpenDocument template: Add `` tag around automatic styles. The writer now longer provides this (see #2520). * Restored Text.Pandoc.Compat.Monoid. * Do not export (<>) from custom Prelude. The Prelude now matches base 4.8 Prelude's API. * Don't use custom prelude with ghc 7.10. Use the custom prelude only for earlier versions. This change makes `stack ghci` and `cabal repl` work (#2503), at least with ghc 7.10. * Changed § to % in operators from Odt.Arrows.Utils (#2457). This prevents problems building haddocks with "C" locale. * Change default for old-locale flag to False. * Use stack in deb, osx, and Windows package generators. * Added Vagrantfile for building deb in vm. This should help in automating binary package creation. 'make package' will make the package. 'make package COMMIT=blah' will make the package from commit blah. * README: + Consistent capitalization for pandoc and Markdown. + Fixed `auto_identifiers` examples (Benoit Schweblin). + Improved documentation of template variables (Andrew Dunning). pandoc (1.15.1.1) * `Text.Pandoc.Data`: store paths in dataFiles using posix separators. This way we have uniform separators, whether on Windows or Linux. This should solve a problem where on some Windows versions the data files weren't being found (#2459). pandoc (1.15.1) * `pandocVersion` is now defined in `Text.Pandoc.Shared` and reexported from `Text.Pandoc` (Alex Vong). This allows writers to access it. (Alex Vong) (API change) * For `markdown_mmd`, add: `implicit_figures`, `superscripts`, `subscripts` (#2401). * Added `odt` as input format (Martin Linnemann). Added new module `Text.Pandoc.Reader.ODT` (API change). Fully implemented features: Paragraphs, Headers, Basic styling, Unordered lists, Ordered lists, External Links, Internal Links, Footnotes, Endnotes, Blockquotes. Partly implemented features: Citations, Tables. * Markdown Reader: + Add basic tests for each header style (Ophir Lifshitz). + Add implicit header ref tests for headers with spaces (Ophir Lifshitz). + Skip spaces in headers (Ophir Lifshitz). + Handle 'id' and 'class' in parsing key/value attributes (#2396). `# Header {id="myid" class="foo bar"}` is now equivalent to `# Header {#myid .foo .bar}`. + Use '=' instead of '#' for atx-style headers in markdown+lhs. (Kristof Bastiaensen) + Pipe tables: allow indented columns. Previously the left-hand column could not start with 4 or more spaces indent. This was inconvenient for right-aligned left columns. Note that the first (header column) must still have 3 or fewer spaces indentation, or the table will be treated as an indented code block. + Fix regression: allow HTML comments containing `--`. Technically this isn't allowed in an HTML comment, but we've always allowed it, and so do most other implementations. It is handy if e.g. you want to put command line arguments in HTML comments. * LaTeX reader: + Don't eat excess whitespace after macros with only optional arguments (#2446). + Support longtable (#2411). + Implement `\Cite` (#2335). + Support abstract environment. The abstract populates an `abstract` metadata field. + Properly handle booktabs lines. Lines aren't part of the pandoc table model, so we just ignore them (#2307). * HTML reader: + Handle type attribute on ol, e.g. `
                ` (#2313). + Updated for new automatic header attributes. + Add auto identifiers if not present on headers. This makes TOC linking work properly. + Detect `font-variant` with `pickStyleAttrProps` (Ophir Lifshitz). + Test `
                  ` type, class, and inline list-style(-type) CSS (Ophir Lifshitz). + Better handling of "section" elements (#2438). Previously `
                  ` tags were just parsed as raw HTML blocks. With this change, section elements are parsed as Div elements with the class "section". * MediaWiki reader: handle unquoted table attributes (#2355). * DocBook reader: + Added proper support for DocBook `xref` elements (Frerich Raabe). Added `dbContent` field to reader state, so we can lookup cross refs. + Handle `informalexample` (#2319). * Docx Reader: + Create special punctuation test (Ophir Lifshitz). + Parse soft, no-break hyphen elements (Ophir Lifshitz). + Updated headers test (Ophir Lifshitz). Replaced `styles.xml` in `headers.docx` with pandoc's current `styles.xml`, which contains styles for Heading 1 through 6. Added Heading 4 through 7 to the test document. Note that Heading 7 is not parsed as a Heading because there is no Heading 7 style. * RST reader: better handling of indirect roles. Previously the parser failed on this kind of case .. role:: indirect(code) .. role:: py(indirect) :language: python :py:`hi` Now it correctly recognizes `:py:` as a code role. * Org reader: + Add auto identifiers if not present on headers (#2354, Juliusz Gonera). + Allow verse blocks to contain empty lines (#2402, Albert Krewinkel). * EPUB reader: stop mangling external URLs (#2284). * RST writer: + Don't insert `\ ` when complex expression in matched pairs. E.g. `` [:sup:`3`] `` is okay; you don't need `` [:sup:`3`\ ] ``. + Ensure that `\ ` is inserted when needed before Cite and Span elements that begin with a "complex" element (jgm/pandoc-citeproc#157). + Normalize headers only in "standalone" mode (#2394). * Haddock writer: escape `*` and `^` (G. Bataille). * Markdown writer: + In TOC, add links to headers (#829). + Use unicode super/subscripts for digits in plain output (when the `superscripts` and `subscripts` extensions are not enabled). * Docx writer: + Moved invalid character stripping to `formattedString`. This avoids an inefficient generic traversal (#2356). + Use user data directory for `reference.docx` archive. This allows the test suite to work without installing pandoc first. It also brings the docx writer in line with the odt writer. + Tests: docx writer tests now use `../data` for data directory. This allows tests to be run without installing first. + Tests: Use real jpg (not empty) for docx tests to avoid warning. * LaTeX writer: + Fixed detection of 'chapters' from template. If a documentclass isn't specified in metadata, but the template has a hardwired bookish documentclass, act as if `--chapters` was used. This was the default in earlier versions, but it has been broken for a little while. + Correctly recognize book documentclass in metadata (#2395). + Set language-related variables automatically, depending on the value of the `lang` field, which is now always assumed to be in BCP47 format (Mauro Bieg, #1614, #2437). + Add `\protect` to `\hyperdef` in inline context. This way we don't get an error when this is used as a moveable argument (#2136). + Support all frame attributes in Beamer. + Percent-encode more special characters in URLs (#1640, #2377). The special characters are '<','>','|','"','{','}','[',']','^', '`'. * HTML writer: + Update KaTeX JS and CSS versions (Emily Eisenberg). + For dzslides, add `role="note"` for speaker notes (#1693). + Percent-encode more special characters in URLs (#1640, #2377). The special characters are '<','>','|','"','{','}','[',']','^', '`'. + Render Div with class `section` as `
                  ` in HTML5. * EPUB writer: + In TOC, replace literal `
                  ` with space (#2105). + With `--webtex`, include image file rather than `data:` URI (#2363). * Native writer: format Div properly, with blocks separated. * Support bidirectional text output with XeLaTeX, ConTeXt and HTML (#2191, Mauro Bieg). * Reference Docx: + Add missing Header 6 style (steel blue) (Ophir Lifshitz). + Correct `outlineLvl` for Header styles (Ophir Lifshitz). * Templates + Beamer: Add `innertheme`, `outertheme` variables (Guilhem Bonnefille, #121). Add space after colon in figure caption. Integrate recent font and language updates from LaTeX template; allow use of `mainfont` variable for changing the slide text in XeTeX and LuaTeX (Andrew Dunning, #131). + LaTeX: Add `mainfontoptions`, `sansfontoptions`, `monofontoptions`, `mathfontoptions`, `fontfamilyoptions` (Andrew Dunning, #122). Support handling of bidirectional text (Mauro Bieg, #120). Improve reliability of superscripts/subscripts under XeTeX and prevent letters and numbers from appearing on a different baseline by removing use of the `realscripts` package (via `xltxtra`). To restore use of OpenType characters for these features under XeTeX or LuaTeX, add `\usepackage{realscripts}` to `header-includes` (Andrew Dunning, #130). Remove redundant reference to `xunicode` (Andrew Dunning, #130). Add `fontenc`, `indent`, `subparagraph` variables (Andrew Dunning). Allow use of `hidelinks` variable for `hyperref` package (Hugo Roy, #113). Prevent package clash with `tufte-latex` and other classes that include `hyperref` or `color` (Xavier Olive, #115). + ConTeXt: Support handling of bidirectional text (Mauro Bieg, #120). + LaTeX and ConTeXt: Use more specific language variables. Instead of directly using `lang`, we now use `babel-lang` and `polyglossia-lang` and `context-lang`. These variables are set by the writers to the necessary values, based on the `lang` variable (which now always takes a value in BCP47 format). (Mauro Bieg, #114, #129). + HTML: Support handling of bidirectional text (Mauro Bieg, #120). Move HTML5 shiv after CSS and fix URL (Andrew Dunning). Add dir attribute in html5 (Andrew Dunning). + reveal.js: Add `controls`, `progress` variables (Grégoire Pineau, #127). Add `width`, `height` variables (Andrew Dunning). Update template from 3.1 source (Andrew Dunning). All configuration options are now available as variables, but are only be included if set (reveal.js uses defaults otherwise). + man: Added comment stating that the page is autogenerated by pandoc, giving version. Added `adjusting` and `hyphenate` variables (Alex Vong, #123). * epub.css: added selectors for nested emphasis (Pablo Rodriguez). * MediaBag: ensure that `/` is always used as path separator. * `sample.lua`: define `CaptionedImage`, add newline at end (#2393). * Added `--bash-completion` option. This generates a bash completion script. To use: `eval "$(pandoc --bash-completion)"`. * Text.Pandoc.Error: Define Typeable and Exception instances for PandocError (#2386). * Text.Pandoc.Parsing: `toKey`: strip off outer brackets. This makes keys with extra space at the beginning and end work: e.g. [foo]: bar [ foo ] will now be a link to bar (it wasn't before). * Text.Pandoc: disable `auto_identifiers` for epub. The epub writer inserts its own auto identifiers; this is more complex due to splitting into "chapter" files. * Renamed Text.Pandoc.Compat.Locale -> Text.Pandoc.Compat.Time. It now reexports Data.Time. * Use custom Prelude to avoid compiler warnings. + The (non-exported) prelude is in prelude/Prelude.hs. + It exports Monoid and Applicative, like base 4.8 prelude, but works with older base versions. + It exports (<>) for mappend. + It hides 'catch' on older base versions. * Added a `stack.ymal` and stack install instructions to INSTALL. * Clarified what is "out of scope" in README and CONTRIBUTING.md. * Added note to CONTRIBUTING.md about ghc versions and travis. * Clarify docs on block quotes. The space after `>` is optional (#2346). * Removed obsolete reference to default.csl (#2372). * List all styles in manual for `--reference-docx` (Chris Black) * Don't capitalize header links in man page. * Added section on repl to CONTRIBUTING.md. * README: Added space after backslash in image example (#2329). * Document details of citation locator terms (Nick Bart). * Fixed some internal links in README (#2309). * Improve CSL documentation, variables documentations, links, and cross-references in README. (Andrew Dunning) * Fix build failure with `--flags=-https` (Sergei Trofimovich). * Use `newManager` instead of `withManager` in recent `http-client`. This avoids a deprecation warning. * Allow building with latest versions of http-types, HUnit, criterion, syb, aeson. * Updated benchmark program for new criterion API. * Setup.hs: rewrite so as not to use process, directory, filepath. Using anything outside base is dangerous, since older versions of ghc may link against two different versions. * Added appveyor (Windows continuous integration) builds. * New `.travis.yml`. Autgenerated using `make_travis_yml.hs`. This script has been modified in a few ways, e.g. to add `GHCOPTS`. `make .travis.yml` regenerates it based on the tested-with field of the cabal file. pandoc (1.15.0.6) * `--self-contained`: Fixed overaggressive CSS minimization (#2301, 2286). Previously `--self-contained` wiped out all spaces in CSS, including semantically significant spaces. This was a regression from 1.14.x. * Markdown reader: don't allow bare URI links or autolinks in link label (#2300). Added test cases. * `Text.Pandoc.Parsing`, `uri`: Improved bare autolink detection (#2299). Previously we disallowed `-` at the end of an autolink, and disallowed the combination `=-`. This commit liberalizes the rules for allowing punctuation in a bare URI, and adds test cases. One potential drawback is that you can no longer put a bare URI in em dashes like this: `this uri---http://example.com---is an example.` But in this respect we now match github's treatment of bare URIs. * HTML writer: support speaker notes in dzslides. With this change `
                  ` and also `
                  ` will be output if `-t dzslides` is used. So we can have speaker notes in dzslides too. Thanks to maybegeek. * Updated dzslides template. * Improved documentation of options to print system default files (#2298). `--print-default-data-file` and `--print-default-template`. * DokuWiki writer: use `$..$` for Math instead of `..` (Tiziano Müller). MathJax seems currently to be the only maintained math rendering extension for DokuWiki. * `Text.Pandoc.Shared`: Changed `hierarchicalize` so it treats references div as top-level header (#2294). This fixes a bug with `--section-divs`, where the final references section added by pandoc-citeproc, enclosed in its own div, got nested in the div for the section previous to it. * Allow vector 0.11. * Require cmark > 0.4. pandoc (1.15.0.5) * HTML writer: Fixed email javascript obfuscation with `mailto:` URLs (#2280). This fixes a potential security issue. Because single quotes weren't being escaped in the link portion, a specially crafted email address could allow javascript code injection. * Markdown/HTML readers: Avoid parsing partial URLs like `` as HTML tags (#2277). * RST reader: allow inline formatting in definition list field names (Lars-Dominik Braun). * PDF: Make sure `--latex-engine-opt` goes before the filename on the command line. LaTeX needs the argument to come after the options (#1779). * CommonMark writer: fixed tags used for super/subscript. * ConTeXt template: activate hanging indent for definition lists (Mauro Bieg). * Make cabal require `hsb2hs` >= 0.3.1 if `embed_data_files` specified. This is done by adding `hookedPrograms` in `Setup.hs`, which allows us to include `hsb2hs` in Build-Tools in cabal. * Improved Windows installer (thanks to nkalvi). + When per-machine installation is chosen, the system path is updated instead of the user's. + An appropriate default is used for per-machine installation directory. + Admin privileges are no longer required for a per-user install * Travis: unpack sdist for build to catch packaging bugs. * Improved documentation on where user templates go (#2272). pandoc (1.15.0.4) * Added pandoc.1 man page to the repository. It is no longer built as part of the cabal build process. (This proved too fragile.) pandoc.1 can be regenerated (`make man/pandoc.1`) when `README` is changed. * Copying of the man page now respects `--destdir` (#2262). * Improved error messages for filters. User is now informed if the filter requires an interpreter that isn't found in the path, or if the filter returns an error status. pandoc (1.15.0.3) * Ensure target directory is created when installing man page. pandoc (1.15.0.2) * Added files needed for building man page to Extra-Source-Files. pandoc (1.15.0.1) * Man page is now built and installed as part of the cabal build process. Removed Makefile target for man page. pandoc (1.15) * Man page changes: + Removed `--man1`, `--man5` options (breaking change). + Removed `Text.Pandoc.ManPages` module (breaking API change). + Makefile target for `man/man1/pandoc.1`. This uses pandoc to create the man page from README using a custom template and filters. + Added `man/` directory with template and filters needed to build man page. + We no longer have two man pages: `pandoc.1` and `pandoc_markdown.5`. Now there is just pandoc.1, which has all the content from README. This change was needed because of the extensive cross-references between parts of the README. + Removed old `data/pandoc.1.template` and `data/pandoc_markdown.5.template`. * OpenDocument writer: Do not add a carriage return after a hard line break (Michael Chladek). * ConTeXt writer: + use `\goto` for internal links. + Added a `%` at end for `\reference` to avoid spurious space. * Ignore sandbox on 'make quick' pandoc (1.14.1) * Added `--man1` and `--man5` options to pandoc, allowing pandoc to generate its own man pages. Man pages are no longer automatically generated in the build process (the process for this was too complex and prone to failure, #2190). The `make-pandoc-man-pages` executable has been removed. The `man/` directory has been removed, and man page templates have been moved to `data/`. NOTE TO PACKAGERS: You will no longer find pandoc's man pages in `man/`, but you can generate them using `pandoc --man1 > pandoc.1` and `pandoc --man5 > pandoc_markdown.5`. * Added new unexported module: `Text.Pandoc.ManPages`. * `README` now acts like a data file (even though it isn't in `data/`). So, for example, `pandoc --print-default-data-file README` will produce the README.) This change was required for the `--man1` and `--man5` options, since the man pages are produced from the README, but it may be useful for other purposes as well. * Allow `reference.docx` and `reference.odt` to be used with `--print-default-data-file` and to shadow defaults if placed in the user data directory. Note that as of 1.14, we no longer include these files as data files; instead, we include their components. This change causes pandoc to behave as if it has these data files; they are constructed on demand when needed using `getDefaultReferenceDocx` and `getDefaultReferenceODT`. * Fixed regression in CSS parsing with `--self-contained` (#2224). Pandoc 1.14.0.x used css-text to parse the CSS, but its parser silently drops big sections of CSS. This commit replaces the use of css-text with a small but principled CSS preprocessor, which removes whitespace and comments and replaces `url()` with base 64 data when possible. * Use `https://` instead of `//` for MathJax and KaTeX CDN URLs (#1920). This will allow math to work when pages are being viewed locally. * `Text.Pandoc.Options`: Export `plainExtensions`. These are the extensions used in `plain` output. * LaTeX reader: Don't parse `_` and `^` as sub/superscript outside of math mode; treat them as regular inline text. Normally these will cause an error in LaTeX, but there are contexts (e.g. `alltt` environments) where they are allowed. * HTML reader: allow `` to close ``. * DocBook reader: support `mediaobject`s and `figures` (#2184, Mauro Bieg). * RST reader: Fix reference names with special characters (Lars-Dominik Braun). * Textile writer: escape `+` and `-` as entities (#2225). * DokuWiki writer: Use proper `` tags for code blocks (#2213). * Plain writer: don't use symbols for super/subscript (#2237). Simplified code by using `plainExtensions`. * InDesign writer: Properly escape URLs containing more than one colon character (gohai). * Docx writer: Make sure we use dist version of `reference.docx` (and not the user's version) for certain settings. Taking some settings values from a user-supplied reference.docx can lead to corruption. This fixes a regression from the last release (#2249). * `Text.Pandoc.Shared`: exports `getDefaultReferenceDocx` and `getDefaultReferenceODT` (API change). These functions have been removed from the Docx and ODT writers. * LaTeX template (Xavier Olive): + Added `CJKmainfont` and `CJKoptions` variables. + Allow dvipsnames (e.g. `MidnightBlue`) for colors (Xavier Olive). * Epub templates: use `author.role`, not `author.type`. * Bump cmark version to >= 0.3.4. * Improved Windows installer (#2205, thanks to nkalvi). Users can now select a per-user or systemwide install, and can set the installation path. At the end of installation, the install location is given. The install location is also now given in the list of installed programs in Control Panel. Cleaner WiX syntax is used for setting the path. * Added `download_stats` target to Makefile. pandoc (1.14.0.4) * Added missing commonmark template. * Improved try pandoc (moved button, show raw command). pandoc (1.14.0.3) * Allow compilation with syb 0.5.*. * Custom writer: fixed some compiler warnings for ghc < 7.10. pandoc (1.14.0.2) * Allow building with hslua 0.4. pandoc (1.14.0.1) * Fixed problem with building of `reference.docx` and `reference.odt` when the `embed_data_files` flag is used. Instead of having a phase of the build where `reference.docx` and `reference.odt` are created from their constituent data files, we now construct these archives from their constituents when a `docx` or `odt` is built. The constituent files have been moved from `extra-source-files` to `data-files`, and `reference.docx` and `reference.odt` have been removed. Users can create their own `reference.docx` or `reference.odt` by using pandoc to create a simple `docx` or `odt`. `make-reference-files.hs` has been removed, simplifying the build process (#2187) * Don't include generated man pages in extra-source-files (#2189). * Bumped upper bound for aeson. * ConTeXt writer: create internal link anchors for Div elements with identifiers. (This is needed for linked citations to work.) pandoc (1.14) [new features] * Added `commonmark` as input and output format. * Added `--verbose` flag for debugging output in PDF production (#1840, #1653). * Allow wildcards in `--epub-embed-font` arguments (#1939). * Added `--latex-engine-opt` option (#969, #1779, Sumit Sahrawat). * Added `shortcut_reference_links` extension (Konstantin Zudov, #1977). This is enabled by default for those markdown flavors that support reading shortcut reference links, namely: `markdown`, `markdown_strict`, `markdown_github`, `markdown_php`. If the extension is enabled, the reader parses shortcut reference links like `[foo]`, and the writer creates such links unless doing so would cause problems. Users of markdown flavors that support shortcut reference links should not notice a difference in reading markdown, but the markdown pandoc produces may differ. If shortcut links are not desired, the extension can be disabled in the normal way. [behavior changes] * `--toc` is now supported for `docx` output (#458, Nikolay Yakimov). A "dirty" TOC is created at the beginning of document. It can be regenerated after the document has been opened. * An implicit `--filter pandoc-citeproc` is now triggered only when the `--bibliography` option is used, and not when the `bibliography` field in metadata is specified (#1849). * Markdown reader: + Reference links with `implicit_header_references` are no longer case-sensitive (#1606). + Definition lists no longer require indentation for first line (#2087). Previously the body of the definition (after the `:` or `~` marker) needed to be in column 4. This commit relaxes that requirement, to better match the behavior of PHP Markdown Extra. So, now this is a valid definition list: foo : bar + Resolve a potentially ambiguity with table captions: foo : bar ----- table ----- Is "bar" a definition, or the caption for the table? We'll count it as a caption for the table. + Disallow headerless pipe tables (#1996), to conform to GFM and PHP Markdown Extra. Note: If you have been using headerless pipe tables, this change may cause existing tables to break. + Allow pipe tables with header but no body (#2017). + Allow a digit as first character of a citation key (Matthias Troffaes). See https://github.com/jgm/pandoc-citeproc/issues/97 * LaTeX reader: + Don't limit includes to `.tex` extension (#1882). If the extension is not `.tex`, it must be given explicitly in the `\input` or `\include`. * Docx reader: + Allow numbering in the style file. This allows inherited styles with numbering (lists) (Jesse Rosenthal). * Org reader: + Support smart punctuation (Craig Bosma). + Drop trees with a :noexport: tag (Albert Krewinkel). Trees having a `:noexport:` tag set are not exported. This mirrors org-mode. + Put header tags into empty spans (Albert Krewinkel, #2160). Org mode allows headers to be tagged: `* Headline :TAG1:TAG2`. Instead of being interpreted as part of the headline, the tags are now put into the attributes of empty spans. Spans without textual content won't be visible by default, but they are detectable by filters. They can also be styled using CSS when written as HTML. + Generalize code block result parsing (Albert Krewinkel). Previously, only code blocks were recognized as result blocks; now, any kind of block can be the result. * Append newline to the LineBreak in Dokuwiki, HTML, EPUB, LaTeX, MediaWiki, OpenDocument, Texinfo writers (#1924, Tim Lin). * HTML writer: + Add "inline" or "display" class to math spans (#1914). This allows inline and display math to be styled differently. + Include raw latex blocks if `--mathjax` specified (#1938). + Require highlighting-kate >= 0.5.14 (#1903). This ensures that all code blocks will be wrapped in a `div` with class `sourceCode`. Also, the default highlighting CSS now adds `div.sourceCode { x-overflow: auto; }`, which means that code blocks (even with line numbers) will acquire a scroll bar on screens too small to display them (e.g. mobile phones). See also jgm/highlighting-kate#65. * LaTeX writer: + Use a declaration for tight lists (Jose Luis Duran, Joseph Harriott). Previously, pandoc hard-coded some commands to make tight lists in LaTeX. Now we use a custom command instead, allowing the styling to be changed in a macro in the header. (Note: existing templates may need to be modified to include the definition of this macro. See the current template.) + Beamer output: if the header introducing a slide has the class `fragile`, add the `[fragile]` option to the slide (#2119). * MediaWiki writer: + Use `File:` instead of the deprecated `Image:` for images and other media files (Greg Rundlett). * DocBook writer: + Render a `Div (id,_,_) [Para _]` element as a `para` element with an `id` attribute. This makes links to citations work in DocBook with pandoc-citeproc. * RST writer: + Normalize headings to sequential levels (Nikolay Yakimov). This is pretty much required by docutils. + Treat headings in block quotes, etc as rubrics (Nikolay Yakimov). + Better handling of raw latex inline (#1961). We use `` :raw-latex:`...` `` and add a definition for this role to the template. * EPUB writer: + Remove `linear=no` from cover `itemref` (#1609). + Don't use `sup` element for epub footnotes (#1995). Instead, just use an a element with class `footnoteRef`. This allows more styling options, and provides better results in some readers (e.g. iBooks, where anything inside the a tag breaks popup footnotes). + Take TOC title from `toc-title` metadata field. * Docx writer: + Implemented `FirstParagraph` style (Jesse Rosenthal). Following the ODT writer, we add the `FirstParagraph` style to the first text paragraph following an image, blockquote, table, heading, or beginning of document. This allows it to be styled differently. The default is for it to be the same as `Normal`. + Added `BodyText` style (Jesse Rosenthal). We apply a `BodyText` style to all unstyled paragraphs. This is, essentially, the same as `Normal`, except that since not everything inherits from `BodyText` (the metadata won't, for example, or the headers or footnote numbers), we can change the text in the body without having to make exceptions for everything. If we do want to change *everything*, we can still do it through `Normal`. + Altered `Blockquote` style slightly (Jesse Rosenthal). Since `BlockQuote` derives from `BodyText`, we just want to specify by default that it won't indent, regardless of what `BodyText` does. Note that this will not produce any visible difference in the default configuration. + Take TOC title from `toc-title` metadata field (Nikolay Yakimov). + Added a style to figure images (Nikolay Yakimov). Figures with empty captions use style `Figure`. Figures with nonempty captions use style `Figure with Caption`, which is based on `Figure`, and additionally has `keepNext` set. * ODT writer: + Added figure captions (Nikolay Yakimov). The following styles are used for figures: `Figure` -- for figure with empty caption), `FigureWithCaption` (based on `Figure`) -- for figure with caption, `FigureCaption` (based on `Caption`) -- for figure captions. Also, `TableCaption` (based on `Caption`) is used for table captions. [API changes] * New `Text.Pandoc.Error` module with `PandocError` type (Matthew Pickering). * All readers now return `Either PandocError Pandoc` instead of `Pandoc` (Matthew Pickering). This allows better handling of errors. * Added `Text.Pandoc.Writers.CommonMark`, exporting `writeCommonMark`. * Added `Text.Pandoc.Readers.CommonMark`, exporting `readCommonMark`. * Derive `Data` and `Typeable` instances for `MediaBag`, `Extension`, `ReaderOptions`, `EPUBVersion`, `CiteMethod`, `ObfuscationMethod`, `HTMLSlideVariant`, `TrackChanges`, `WriterOptions` (Shabbaz Youssefi). * New `Ext_shortcut_reference_links` constructor for `Extension` (Konstantin Zudov). [bug fixes] * Markdown reader: + Allow smart `'` after inline math (#1909, Nikolay Yakimov). + Check for tex macros after indented code (#1973). + Rewrote `charsInBalancedBrackets` for efficiency. + Make sure a closing `
                  ` doesn't get included in a definition list item (#2127). + Don't parse bracketed text as citation if it might be a link, image, or footnote (Nikolay Yakimov). + Require space after key in mmd title block (#2026, Nikolay Yakimov). Require space after key-value delimiter colon in mmd title block. + Require nonempty value in mmd title block (Nikolay Yakimov). + Disable all metadata block extensions when parsing metadata field values (#2026, Nikolay Yakimov). Otherwise we could get a mmd title block inside YAML metadata, for example. * HTML reader: + Improve self-closing tag detection in `htmlInBalanced` (#2146). + Handle tables with `` in body rows (#1859, Mauro Bieg). + Fixed `htmlTag` (#1820). If the tag parses as a comment, we check to see if the input starts with ` bbb` can be a single paragraph. + Fixed superscripts with links: `^[link](/foo)^` gets recognized as a superscripted link, not an inline note followed by garbage. + Fixed regression, making markdown reference keys case-insensitive again. Resolves Issue #272. + Properly handle abbreviations (like `Mr.`) at the end of a line. + Better handling of intraword underscores, avoiding exponential slowdowns in some cases. Resolves Issue #182. + Fixed bug in alignments in tables with blank rows in the header. * RST reader: + Field lists now allow spaces in field names, and block content in field values. (Thanks to Lachlan Musicman for pointing out the bug.) + Definition list items are now always `Para` instead of `Plain`, matching behavior of `rst2xml.py`. + In image blocks, the description is parsed properly and used for the alt attribute, not also the title. + Skip blank lines at beginning of file. Resolves Debian #611328. * LaTeX reader: + Improved parsing of preamble. Previously you'd get unexpected behavior on a document that contained `\begin{document}` in, say, a verbatim block. + Allow spaces between `\begin` or `\end` and `{`. + Support `\L` and `\l`. + Skip comments inside paragraphs. * LaTeX writer: + Escape strings in `\href{..}`. + In nonsimple tables, put cells in `\parbox`. * OpenDocument writer: don't print raw TeX. * Markdown writer: + Fixed bug in `Image`. URI was getting unescaped twice! + Avoid printing extra blank lines at the end if there are no notes or references. * LaTeX and ConTeXt: Escape `[` and `]` as `{[}` and `{]}`. This avoids unwanted interpretation as an optional argument. * ConTeXt writer: Fixed problem with inline code. Previously `}` would be rendered `\type{}}`. Now we check the string for '}' and '{'. If it contains neither, use `\type{}`; otherwise use `\mono{}` with an escaped version of the string. * `:` now allowed in HTML tags. Resolves Issue #274. pandoc (1.6) [ John MacFarlane ] * New EPUB and HTML Slidy writers. (Issue #122) - EPUB is a standard ebook format, used in Apple's iBooks for the iPad and iPhone, Barnes and Noble's nook reader, the Sony reader, and many other devices. - Slidy, like S5, is a system for producing HTML+javascript slide shows. * All input is assumed to be UTF-8, no matter what the locale and ghc version, and all output is UTF-8. This reverts to pre-1.5 behavior. Also, a BOM, if present, is stripped from the input. * Markdown now supports grid tables, whose cells can contain arbitrary block elements. (Issue #43) * Sequentially numbered example lists in markdown with `@` marker. * Markdown table captions can begin with a bare colon and no longer need to include the English word "table." Also, a caption can now occur either before or after the table. (Issue #227) * New command-line options: - `--epub-stylesheet` allows you to specify a CSS file that will be used to style your ebook. - `--epub-metadata` allows you to specify metadata for the ebook. - `--offline` causes the generated HTML slideshow to include all needed scripts and stylesheets. - `--webtex` causes TeX math to be converted to images using the Google Charts API (unless a different URL is specified). - `--section-divs` causes div tags to be added around each section in an HTML document. (Issue #230, 239) * Default behavior of S5 writer in standalone mode has changed: previously, it would include all needed scripts and stylesheets in the generated HTML; now, only links are included unless the `--offline` option is used. * Default behavior of HTML writer has changed. Between 1.2 and 1.5, pandoc would enclose sections in div tags with identifiers on the div tags, so that the sections can be manipulated in javascript. This caused undesirable interactions with raw HTML div tags. So, starting with 1.6, the default is to put the identifiers directly on the header tags, and not to include the divs. The `--section-divs` option selects the 1.2-1.5 behavior. * API changes: - `HTMLMathMethod`: Added `WebTeX`, removed `MimeTeX`. - `WriterOptions`: Added `writerUserDataDir`, `writerSourceDirectory`, `writerEPUBMetadata` fields. Removed `writerIncludeBefore`, `writerIncludeAfter`. - Added `headerShift` to `Text.Pandoc.Shared`. - Moved parsing code and `ParserState` from `Text.Pandoc.Shared` to a new module, `Text.Pandoc.Parsing`. - Added `stateHasChapters` to `ParserState`. - Added `HTMLSlideVariant`. - Made `KeyTable` a map instead of an association list. - Added accessors for `Meta` fields (`docTitle`, `docAuthors`, `docDate`). - `Pandoc`, `Meta`, `Inline`, and `Block` have been given `Ord` instances. - Reference keys now have a type of their own (`Key`), with its own `Ord` instance for case-insensitive comparison. - Added `Text.Pandoc.Writers.EPUB`. - Added `Text.Pandoc.UUID`. - Removed `Text.Pandoc.ODT`, added `Text.Pandoc.Writers.ODT`. Removed `saveOpenDocumentAsODT`, added `writeODT`. - Added `Text.Pandoc.Writers.Native` and `writeNative`. Removed `prettyPandoc`. - Added `Text.Pandoc.UTF8` for portable UTF8 string IO. - Removed `Text.Pandoc.Writers.S5` and the `writeS5` function. Moved `s5Includes` to a new module, `Text.Pandoc.S5`. To write S5, you now use `writeHtml` with `writerSlideVariant` set to `S5Slides` or `SlidySlides`. * Template changes. If you use custom templates, please update them, particularly if you use syntax highlighting with pandoc. The old HTML templates hardcoded highlighting CSS that will no longer work with the most recent version of highlighting-kate. - HTML template: avoid empty meta tag if no date. - HTML template: Use default highlighting CSS from highlighting-kate instead of hard-coding the CSS into the template. - HTML template: insert-before text goes before the title, and immediately after the tag, as documented. (Issue #241) - Added slidy and s5 templates. - Added amssymb to preamble of latex template. (github Issue 1) * Removed excess newlines at the end of output. Note: because output will not contain an extra newline, you may need to make adjustments if you are inserting pandoc's output into a template. * In S5 and slidy, horizontal rules now cause a new slide, so you are no longer limited to one slide per section. * Improved handling of code in man writer. Inline code is now monospace, not bold, and code blocks now use .nf (no fill) and .IP (indented para). * HTML reader parses `` as Code. (Issue #247) * html+lhs output now contains bird tracks, even when compiled without highlighting support. (Issue #242) * Colons are now no longer allowed in autogenerated XML/HTML identifiers, since they have a special meaning in XML. * Code improvements in ODT writer. Remote images are now replaced with their alt text rather than a broken link. * LaTeX reader improvements: - Made latex `\section`, `\chapter` parsers more forgiving of whitespace. - Parse `\chapter{}` in latex. - Changed `rawLaTeXInline` to accept `\section`, `\begin`, etc. - Use new `rawLaTeXInline'` in LaTeX reader, and export `rawLaTeXInline` for use in markdown reader. - Fixes bug wherein `\section{foo}` was not recognized as raw TeX in markdown document. * LaTeX writer: images are automatically shrunk if they would extend beyond the page margin. * Plain, markdown, RST writers now use unicode for smart punctuation. * Man writer converts math to unicode when possible, as in other writers. * `markdown2pdf` can now recognize citeproc options. * Command-line arguments are converted to UTF-8. (Issue #234) * `Text.Pandoc.TeXMath` has been rewritten to use texmath's parser. This allows it to handle a wider range of formulas. Also, if a formula cannot be converted, it is left in raw TeX; formulas are no longer partially converted. * Unicode curly quotes are left alone when parsing smart quotes. (Issue #143) * Cabal file changes: - Removed parsec < 3 restriction. - Added 'threaded' flag for architectures where GHC lacks a threaded runtime. - Use 'threaded' only for markdown2pdf; it is not needed for pandoc. - Require highlighting-kate 0.2.7. * Use explicit imports from `Data.Generics`. Otherwise we have a conflict with the 'empty' symbol, introduced in syb >= 0.2. (Issue #237) * New data files: slidy/slidy.min.js, slidy/slidy.min.css, epub.css. pandoc (1.5.1.1) [ John MacFarlane ] * Fixed uniqueIdent in Shared so that header identifiers work as advertized in the README and are are valid XHTML names. pandoc (1.5.1) [ John MacFarlane ] * Fixed treatment of unicode characters in URIs. + Shared now exports escapeURI and unescapeURI. These handle UTF8 encoding and decoding as well as URI escaping/unescaping. + Shared: uri and emailAddress now return a pair of the original parsed text and the escaped URI (in the latter case, with the mailto: prefix). + HTML reader: unsanitaryURI has been modified to allow unicode high characters in a URI. + Readers: All link and image URIs are now escaped using escapeURI. + Markdown and RST writers: unescapeURI is used so that URIs in these formats are human-readable. * Setup.hs: Don't assume that the build directory is "dist". Instead, get it from localBuildInfo. * OpenDocument writer: Use a Map for stTextStyleAttr. This avoids duplicates (and invalid xml). Resolves Issue #222. pandoc (1.5.0.1) [ John MacFarlane ] * HTML writer: Fixed error in math writer (with MathML option) that caused an infinite loop for unparsable MathML. pandoc (1.5) [ John MacFarlane ] * Added --mathml option. When this is selected, pandoc will convert TeX math into MathML. + Added data/MathMLinHTML.js, which is included when no URL is provided for --mathml. This allows MathML to be displayed (in better browsers) as text/html. + Removed Text.Pandoc.LaTeXMathML. The module was no longer necessary; it was replaced by two lines in pandoc.hs. + Replaced LaTeXMathML.js.commend and LaTeXMathML.js.packed with a single combined file, LaTeXMathML.js. * Added --data-dir option. This specifies a user data directory. If not specified, will default to ~/.pandoc on unix or Application Data\pandoc on Windows. Files placed in the user data directory will override system default data files. * Added Maybe datadir parameter to readDataFile, saveOpenDocumentAsODT, latexMathMLScript, s5HeaderIncludes, and getDefaultTemplate. If Nothing, no user directory is searched for an override. * Added 'plain' output format. This is similar to markdown, but removes links, pictures, inline formatting, and most anything that looks even vaguely markupish. The function writePlain is exported by Text.Pandoc.Writers.Markdown, with which it shares most of its code. * Allow multi-line titles and authors in meta block. Titles may span multiple lines, provided continuation lines begin with a space character. Separate authors may be put on multiple lines, provided each line after the first begins with a space character. Each author must fit on one line. Multiple authors on a single line may still be separated by a semicolon. Based on a patch by Justin Bogner. * When given an absolute URI as parameter, pandoc will try to fetch the content via HTTP. So you can do: 'pandoc -r html -w markdown http://www.fsf.org' Adds dependency on HTTP. * Made HTML reader much more forgiving. + Incorporated idea (from HXT) that an element can be closed by an open tag for another element. + Javascript is partially parsed to make sure that a in a comment or string. + More lenient non-quoted attribute values. Now we accept anything but a space character, quote, or <>. This helps in parsing e.g. www.google.com! + Bare & signs are now parsed as a string. This is a common HTML mistake. + Skip a bare < in malformed HTML. * Removed html2markdown and hsmarkdown. + html2markdown is no longer needed, since you can now 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'. * In most writers, an image in a paragraph by itself is now rendered as a figure, with the alt text as the caption. (Texinfo, HTML, RST, MediaWiki, Docbook, LaTeX, ConTeXt, HTML.) Other images are rendered inline. * Depend on extensible-exceptions. This allows pandoc to be compiled on GHC 6.8. * Added --base-header-level option. For example, --base-header-level=2 will change level 1 headers to level 2, level 2 to level 3, etc. Closes Debian #563416. * Incomplete support for RST tables (simple and grid). Thanks to Eric Kow. Colspans and rowspans not yet supported. * Added accessors (docTitle, docAuthors, docDate) to Meta type. * MediaWiki writer: format links with relative URLs as wikilinks. The new rule: If the link target is an absolute URL, an external link is created. Otherwise, a wikilink is created. * Text.Pandoc.Shared: Export uniqueIdent, and don't allow tilde in identifier. Note: This may break links to sections that involve tildes. * Markdown(+lhs) reader: handle "inverse bird tracks." Inverse bird tracks (<) are used for haskell example code that is not part of the literate Haskell program. Resolves Issue #211. * LaTeX reader: + Recognize '\ ' (interword space). + Recognize nonbreaking space '~'. + Ignore \section, \pdfannot, \pdfstringdef. Ignore alt title in section headers. Don't treat \section as inline LaTeX. Resolves Issue #202. + LaTeX reader: allow any special character to be escaped. Resolves Issue #221. + LaTeX reader: treat \paragraph and \subparagraph as level 4, 5 headers. Resolves Issue #207. * Use template variables for include-before/after. + These options now imply -s; previously they worked also in fragment mode. + Users can now adjust position of include-before and include-after text in the templates. + Default position of include-before moved back (as it was before 1.4) before table of contents. + Resolves Issue #217. * Don't print an empty table header: (all writers). Resolves Issue #210. * HTML, Docbook writer: Use tbody, thead, and cols in tables. * HTML writer: Don't include TOC div if table of contents is empty. * Markdown writer: Fixed citations. Previously the markdown writer printed raw citation codes, e.g. [geach1970], rather than the expanded citations provided by citeproc, e.g. (Geach 1970). Now it prints the expanded citations. This means that the document produced can be processed as a markdown document without citeproc. Thanks to dsanson for reporting, and Andrea Rossato for the patch. * Improved and simplified title block in context template. Previously it caused an error if there was no title. This method should also be easier for users to customize. * Markdown reader: + Treat p., pp., sec., ch., as abbreviations in smart mode. + Disallow blank lines in inline code span. + Allow footnotes to be indented < 4 spaces. This fixes a regression. A test case has been added. + Escape spaces in URLs as %20. Previously they were incorrectly escaped as +, which is appropriate only for the query part of a URL. Resolves Issue #220. + Require two spaces after capital letter + period for list item. Otherwise "E. coli" starts a list. This might change the semantics of some existing documents, since previously the two-space requirement was only enforced when the second word started with a capital letter. But it is consistent with the existing documentation and follows the principle of least surprise. Resolves Issue #212. * LaTeX template: redefine labelwidth when using enumerate package. Otherwise the list labels (numbers) often extend past the left margin, which looks bad. * Mediawiki writer: Don't print a "== Notes ==" header before references. This is too English-centric. Writers can provide their own header at the end of the document. * Promoted mediawiki headers. '= head =' is now level 1, '== head ==' level 2, etc. This seems to be correct; it's only by convention that wikipedia articles have level 2 headers at most. Patch due to Eric Kow. * RunTests.hs: Set LANG to a UTF-8 locale. Use 'pandoc --data-dir=' so data files don't need to have been installed. This removes the need to set HOME. * HTML reader: + Handle spaces before . Resolves Issue #216. + Be forgiving in parsing a bare list within a list. The following is not valid xhtml, but the intent is clear:
                  1. one
                    1. sub
                  2. two
                  We'll treat the
                    as if it's in a
                  1. . Resolves Issue #215. * Updated INSTALL instructions. cabal method is now promoted. * Updated markdown2pdf man page. It no longer says all pandoc options are accepted. * README/man pages: Removed advice to pipe through tidy before HTML reader. This is obsolete, now that we have a forgiving HTML parser. * LaTeX writer: set numbersections template variable, so the section numbering options work again. * Removed obsolete Makefile. * Website: renamed index.txt.in -> index.txt. * New batch file to make-windows-installer. + Removed old Makefile.windows + Added make-windows-installer.bat + Modified default installer name in pandoc-setup.iss * Removed freebsd and macports directories. They are no longer up to date. * Setup.hs: + Made man page building sensitive to build verbosity. + Improved detection of highlighting support in test hook. + Install wrapper scripts into cabal bin directory. + Also simplified installManpages. + Setup.hs: install manpages to mandir. Code borrowed from darcs. * Changed default of writerXeTeX to False. * HTML writer: don't include empty UL if --toc but no sections. Resolves Issue #199. * LaTeX writer: + If book, report, or memoir documentclass, use \chapter{} for first-level headers. Otherwise use \section{}. + Removed stLink, link template variable. Reason: we now always include hyperref in the template. * LaTeX template: + Only show \author if there are some. + Always include hyperref package. It is used not just for links but for toc, section heading bookmarks, footnotes, etc. Also added unicode=true on hyperref options. * markdown2pdf: always do at least two runs. hyperref bookmarks require this. * cabal file: Removed unneeded dependency on template-haskell. * Windows installer - fixed bug in data file locations. Resolves Issue #197. * Deprecated --custom-header in documentation. Removed old "Custom Headers" section in README. pandoc (1.4) [ John MacFarlane ] * Pandoc will now compile with either GHC 6.10 or 6.12. + Don't use System.IO.UTF8 when compiling with 6.12 + Use -fno-warn-unused-do-bind option when compiling with 6.12 * Replaced old headers with templates. Now users have much more control over the way documents appear in --standalone mode, and writer code is simplified. Resolves Issues #59, 147. Every effort has been made to retain backwards compatibilty. So, the --custom-header option should still work as before. + Added Text.Pandoc.Templates. This provides functions for retrieving default templates and for rendering templates. + System templates (in the pandoc data directory) can be overridden by user templates in $HOME/.pandoc/templates. + Removed Text.Pandoc.DefaultHeaders. + Removed data/headers directory. + Added templates directory. + Added writerTemplate and writerVariables fields to WriterOptions. + Removed writerTitlePrefix, writerHeader fields from WriterOptions. + Changed --print-default-header to --print-default-template. + Added --template option. + Added -V/--variable option to set custom template variables. * Pandoc no longer requires Template Haskell. Resolves Issue #186. + Removed need for TH in ODT module. Instead get reference.odt from data file at run time. + Removed TH dependency from S5 module. S5 module now exports s5HeaderIncludes, which pandoc.hs includes if writer is s5 and standalone. + Refactored LaTeXMathML not to use TH. * Meta is now Meta [Inline] [[Inline]] [Inline] rather than Meta [Inline] [String] String. Authors and date in Meta are now lists of Inline elements rather than raw strings. This means that they can be formatted and can include footnotes. NOTE: This may be a breaking change for those using pandoc as a library. * Added readDataFile to Text.Pandoc.Shared. This retrieves a data file from the user pandoc data directory (~/.pandoc on unix), or, if not found there, from the system data directory ($CABALDIR/shared/pandoc-VERSION/). All data files, including templates, LaTeXMathML.js, s5 styles, and reference.odt, can be overridden by the user. * s5 files moved from data/ui/default to s5/default. * Use unicode instead of entities in HTML and XML output. Resolves Issue #163. * Prettier HTML footnote references: put anchor inside sup, instead of other way. Resolves Issue #191. Thanks to infinity0x. * Added --xetex option to pandoc and markdown2pdf. If --xetex is specified, pandoc produces latex suitable for processing by xelatex, and markdown2pdf uses xelatex to create the PDF. Resolves Issue #185. * RTF writer: multiple authors now occupy multiple paragraphs rather than using a line break. * Man writer: now the "--after-body" will come after the "AUTHORS" section, whereas before it would come before it. This is a slight break from backwards compatibility. * Added --reference-odt option, so users may customize the styles used in pandoc-generated ODT files. Users may also place a default reference.odt in the ~\.pandoc directory. * ODT writer: + Indented and line-broke styles.xml so it can be modified more easily. + Omitted some unnecessary style declarations. + Don't wrap text in OpenDocument writer. The tags are too long, making wrapping ugly and pointless. * LaTeX reader: use \\ to separate multiple authors. * Markdown reader: use ; as separator between authors. This allows you to use ',' within author names: e.g. "John Jones, Jr." * S5 writer: use linebreak to separate authors in title page. * RST reader: Allow :: before lhs code block. The RST spec requires the :: before verbatim blocks. This :: should not be treated as literal colons. Resolves Issue #189. * Documented pandoc 1.3's new definition list syntax in README. (An oversight in the last release.) * markdown2pdf.hs: + interpret ! in a log as an error line. + --toc now works properly. * Changes in RunTests.hs: + Use the Diff library rather than a local copy of Diff.hs. (This vastly increases performance.) This change means that 'cabal test' presupposes that the Diff library is installed. + Removed tests/Diff.hs from cabal file. + Changed RunTests to use local environment. We need at least HOME, so pandoc can find its data directory. * Updated windows installer to install data files in the app directory. * Windows installer now installs portable wrappers hsmarkdown and markdown2pdf. pandoc (1.3) [ John MacFarlane ] * Added --id-prefix option (Issue #41). This adds a prefix to all automatically generated HTML identifiers, which helps prevent duplicate identifiers when you're generating a fragment (say a blog post). * Added --indented-code-classes option. This specifies classes to use for indented code blocks. (Patch due to buttock; Issue #87.) * --number-sections now affects HTML output as well as ConTeXt and LaTeX (Issue #150). * Improved syntax for markdown definition lists (Issue #24). Definition lists are now more compatible with PHP Markdown Extra. + You can have multiple definitions for a term (but still not multiple terms). + Multi-block definitions no longer need a column before each block (indeed, this will now cause multiple definitions). + The marker no longer needs to be flush with the left margin, but can be indented at or two spaces. Also, ~ as well as : can be used as the marker (this suggestion due to David Wheeler.) + There can now be a blank line between the term and the definitions. * Better looking simple tables. Resolves Issue #180. + Markdown reader: simple tables are now given column widths of 0. + Column width of 0 is interpreted as meaning: use default column width. + Writers now include explicit column width information only for multiline tables. (Exception: RTF writer, which requires column widths. In this case, columns are given equal widths, adding up to the text width.) + Simple tables should now look better in most output formats. * Allow markdown tables without headers (Issue #50). The new syntax is described in README. Also allow optional line of dashes at bottom of simple tables. * Compensate for width of final table column (Issue #144). * Treat a backslash followed by a newline as a hard line break in markdown. Resolves Issue #154. This is a nice alternative to markdown's "invisible" way of indicating hardline breaks using lines that end with two spaces. * Improved performance of markdown reader by ~10% by eliminating the need for a separate parsing pass for notes. Raw notes are now stored on the first pass (which parses references), then parsed when the note is inserted into the AST. The stateNotes field in ParserState is now a list of [(String, String)] pairs instead of [(String, [Block])]. * In markdown reader, treat 4 or more * or _ in a row as literal text. (Trying to parse long strings of * or _ as strong or emph leads to exponential performance problems.) * Markdown reader: Use + rather than %20 for spaces in URLs. * Fixed htmlComment parser, adding a needed 'try'. * Don't print raw HTML in man output. * Allow . _ and ~ in header identifiers. * Specially mark code blocks that were "literate" in the input. They can then be treated differently in the writers. This allows authors to distinguish bits of the literate program they are writing from source code examples, even if the examples are marked as Haskell for highlighting. (Issue #174.) * Modified html+lhs output to use "haskell" highlighter instead of "literateHaskell". The highlighting module now adds bird tracks after highlighting (for HTML output), if the code block has the "literate" class. This gives better results, because kate's haskell highlighter is much better than the literateHaskell highlighter. * Fixed handling of footnotes in titles (HTML) and headers (LaTeX). (Issue #137.) * Support for "..code-block" directive in RST reader. Not core RST, but used in Sphinx for code blocks annotated with syntax information. Thanks to Luke Plant for the patch. * Added "head" to list of block-level HTML tags. Resolves Issue #108. * Added stripTags to Text.Pandoc.XML. This is used in the HTML writer. * Set utf-8 encoding in texinfo headers. * Docbook writer: add ids to sections. Use link for internal links. (Issue #60.) * Blank lines after lists in MediaWiki writer. * Properly handle commented-out list items in markdown. Resolves Issue #142. Example: - a - c * Changed heuristic in compactify. compactify has to decide whether a Para that ends a list is a Para intentionally, or just because of the blank lines at the end of every list. In the latter case the Para is turned to a Plain. The old heuristic was: change final Para to Plain iff the other items all end in Plain. This produces bad results when, for example, an item contains just a Plain and an HTML comment, as it does in the list above. The new heuristic: change final Para to Plain iff the other items don't contain a Para. * Added % as an rst underline character. Resolves Issue #173. * Fix inline math parser so that \$ is allowed in math. Resolves Issue #169. * Translate \int (integral) into unicode when using unicode math method. Resolves Issue #177. * markdown2pdf.hs improvements: + Use System.IO.UTF8. + Print error messages on last attempt. + Do not create a backup when overwriting a PDF (Issue #166). + Accept --longopt=val options. + Added man/man1/markdown2pdf.1 to extra-tmp-files in cabal, so that it is properly cleaned. * Added haddock comments warning that readers assume \n line endings. * Updated COPYRIGHT file. * Makefile: Changed EXECSBASE so it doesn't pull in hsmarkdown & markdown2pdf. Otherwise strip tries to strip shell scripts when you install using 'make'. * Changed Makefile so it doesn't build Haskell wrappers. * Fixed Makefile so it doesn't try to build man pages in build-doc. * Install pcre3.dll in Windows install script; this allows us to package a version of pandoc with highlighting support. pandoc (1.2.1) [ John MacFarlane ] * Fixed regression with --preserveTabs. Brought back optPreserveTabs. The trick of setting tabStop to 0 to mean "preserve tabs" had a bad side effect: strings of 0 spaces were interpreted as indentation. So, with --preserve-tabs, unindented paragraphs were treated as code. Resolves Issue #138. * HTML writer: wrap sections in divs. Resolves Issue #70. + hierarchicalize has been rationalized; it builds a hierarchical representation of the document from the headers, and simultaneously gives each section a unique identifier based on the heading title. + Identifiers are now attached to the divs rather than to the headers themselves. + Table of content backlinks go to the beginning of the table, rather than to the section reference that was clicked. + Code for constructing identifiers has been moved to Text.Pandoc.Shared from the HTML writer, since it is now consumed only by hierarchicalize. + In --strict mode, pandoc just prints bare headings, as before (unless --toc has been specified). + In s5 output, it does not wrap sections in divs, as that seems to confuse the s5 javascript. * Man writer: break lines at end of each sentence. groff expects this and treats '.' and '?' differently when followed by line ending as opposed to ordinary space. Also, don't escape periods. Instead, use zero-width character \& to avoid unwanted interpretation of periods at start of line. Resolves Issue #148. * Markdown writer: Added '#' and '>' to list of characters to be escaped in markdown output. Removed '<', as it is not an officially escapable character. This partially resolves Issue #96. * Make --smart the default for man output format. Otherwise we have trouble dividing lists of endlines into sentences. * DocBook writer: Use language attribute to indicate source language in code blocks. * RST reader: + Allow # to continue list, even if the list was started with an explicit marker. For example: A. my list #. continued Resolves Issue #140. + Allow continuation lines in line blocks. Also added test cases for line blocks for RST reader. Resolves Issue #149. + Allow explicit links with spaces in URL: `link `_ * Improved LaTeX reader's coverage of math modes. Remove displaymath* (which is not in LaTeX) and recognize all the amsmath environments that are alternatives to eqnarray, namely equation, equation*, gather, gather*, gathered, multline, multline*, align, align*, alignat, alignat*, aligned, alignedat, split. Resolves Issue #103. Thanks to shreevatsa.public for the patch. * Markdown reader: + Allow -, _, :, . in markdown attribute names. These are legal in XML attribute names. + Use non-breaking spaces in abbreviations. + Markdown reader: improved efficiency of abbreviation parsing. Instead of a separate abbrev parser, we just check for abbreviations each time we parse a string. This gives a huge performance boost with -S. Resolves Issue #141. * Improved efficiency of shared parsers: hexNum, htmlComment, whitespace, indentSpaces. * Export HTMLMathMethod in Text.Pandoc. * Export languagesByExtension in Text.Pandoc.Highlighting. * Added new Haskell version of markdown2pdf, due to Paulo Tanimoto. This should be more portable than the old shell script. * Made 'pandoc -v' more explicit about compiler options. Resolves Issue #139. * pandoc.hs: Made --strict compatible with --standalone, --toc. * Use Paths_pandoc to get version number, instead of hard-coding it into Text/Pandoc.hs. pandoc (1.2) [ John MacFarlane ] * Added support for literate Haskell. lhs support is triggered by '+lhs' suffixes in formats. For example, 'latex+lhs' is literate Haskell LaTeX. '.lhs' files are treated by default as literate markdown. + Added stateLiterateHaskell to parser state. + Added parser for lhsCodeBlock to Markdown, RST, LaTeX readers. + Added parser for |inline lhs| to LaTeX reader. + Added writerLiterateHaskell to WriterOptions. + Added lhs support to Markdown, RST, LaTeX, HTML writers. + Added definition of code environment to LaTeX header. + Added tests (run only if highlighting support compiled in). + Documented lhs features in man page and README. * In Text.Pandoc.Definition, added processWith, processWithM, and queryWith, and deprecated processPandoc and queryPandoc for these more general functions. * Fixed bug in mediawiki writer: improper closing tags in tables. Thanks to Benct Philip Jonsson for reporting the bug. * Added --email-obfuscation option. + Added writer option for email obfuscation. + Implemented email obfuscation options in HTML writer. + Added option to option parser. + Documented in README and pandoc man page. + Resolves Issue #97. * LaTeX writer: fixed bug with empty table cells. Resolves Issue #107. Thanks to rodja.trappe for the patch. * Fixed bug with header spacing in Markdown and RST writers. A null header (Meta [] [] []) should not cause a blank line at the beginning of output. But a blank line is needed between a non-null header and the main text. * Markdown reader: Relax spacing rules for $$ in display math. Now space and newlines are allowed after the opening $$ and before the closing $$. However, the display math cannot contain an entirely blank line. Resolves Issue #105. * Markdown reader: Gobble space after Plain blocks containing only raw html inline. Otherwise following header blocks are not parsed correctly, since the parser sees blank space before them. Resolves Issue #124. * Markdown reader: Allow " as well as '' to end a latex double-quote. * Conditionally depend on syb and base >= 4 if ghc >= 6.10. Resolves Issue #109. * Fixed problems in RST and markdown output due to bug in pretty-1.0.1.0 + Added hang' function to Text.Pandoc.Shared; this will be used instead of hang, which doesn't work properly in pretty-1.0.1.0. When pretty is upgraded, we can go back to hang. See http://article.gmane.org/gmane.comp.lang.haskell.general/16687 + Use hang' (and some different techniques) in RST and markdown writers. Some output is now a bit different. * Brought citeproc support up to date for citeproc-hs-0.2. (Patch by Andrea Rossato.) * Moved all haskell source to src subdirectory. Renamed Main.hs to pandoc.hs. * Rewrote hsmarkdown in Haskell for portability (src/hsmarkdown.hs). For now, keeping the old shell script too. * Added TemplateHaskell to Extensions for executable, removed -threaded for library. Thanks to duncan.coutts for the bug report. Resolves Issue #121. * Moved some Extra-Source-Files to Data-Files. * Moved tabFilter to Shared. * In pandoc.hs, removed optPreserveTabs; instead, tabstop of 0 means preserve tabs. * Minor code cleanup based on hlint suggestions. pandoc (1.1) [ John MacFarlane ] * Main.hs: + Changed date on copyright message in Main.hs. + Have the '-v' option print syntax highlighting languages separated by commas, and wrapped in lines, instead of in five columns as before. * Added --jsmath option. Resolves Issue #68. + Added --jsmath option to Main.hs + Added JsMath to HTMLMathMethod in Text.Pandoc.Shared. + Handle math appropriately in HTML writer when JsMath selected. + Documented the option in README and man page. * Text.Pandoc.Shared: Changed compactify to use a better heuristic for tight and loose lists. Final Para is changed to Plain if all other list items *end* with a Plain block. Addresses Issue #99. * HTML reader: + Added colons to protocols in unsanitaryURI. Closes Issue #88. + HTML reader: Don't interpret contents of
                     blocks as markdown.
                          Added rawVerbatimBlock parser.  Resolves Issue #94.
                    
                      * Markdown reader:
                    
                        + Allow URLs with spaces in them in links and references, but escape
                          them as "%20".
                        + Allow blank space at the end of horizontal rules.
                    
                      * RST reader: Modified 'unknownDirective' parser to handle comment
                        blocks correctly, and added tests for comment blocks. Resolves Issue
                        #86. Closes Debian Bug #500662.
                    
                      * HTML writer:
                    
                        + Include classes on tr elements in HTML output:
                          "header", "odd", "even".  This allows tables to be styled with
                          lines in alternating colors.  Resolves Issue #91.
                        + Enclose all LaTeXMathML bits in .
                          This prevents parts of the document that are not math from being
                          interpreted as math by LaTeXMathML.js.
                    
                      * OpenDocument and ODT writers:  Added support for HorizontalRule elements,
                        which were formerly ignored.  Resolves Issue #95.
                    
                      * Text.Pandoc.Shared:  Modified wrappedTeX to eliminate the line break
                        between a footnote and immediately following nonspace characters in
                        LaTeX and ConTeXt output. (This gets interpreted as a space, which
                        is not desired in cases like "text^[note]---".)  Resolves Issue #93.
                    
                      * Windows installer: Don't require admin privileges to run
                        installer.  Modified pandoc-setup.iss, and changed modpath.iss to
                        modify HKCU path if user lacks admin privileges.  Also fixed case
                        where oldpath is empty (previously this led to the new path
                        beginning with a semicolon).
                    
                      * Updated INSTALL instructions for Arch packages and OS X install using
                        cabal-install.
                    
                      * Removed the (now unneeded) debian directory.
                        Removed empty Codec and System directories.
                    
                      * Moved odt-styles/ to data/.  Removed unneeded variable in Makefile.
                    
                      * Modified Setup.hs so that the "test" target returns an error status
                        when tests fail, and "build" returns a success status if
                        the build succeeds.  Resolves Issue #100.
                    
                      * Added BUGS to files in tarball.
                    
                    
                    pandoc (1.0.0.1)
                    
                      [ John MacFarlane ]
                    
                      * Removed spurious reference to pdf output format from pandoc(1) man page.
                    
                    pandoc (1.0)
                    
                      [ Andrea Rossato ]
                    
                      * Added new OpenDocument writer.
                    
                      * Added support for SmallCaps inline element.
                    
                      * Added support for integrating pandoc with citeproc-hs.
                    
                        + Added Cite element to definition and writers.
                        + Added Text.Pandoc.Biblio module
                        + Note: This support is included only if the 'citeproc'
                          Cabal configuration flag is set.
                    
                      * Made Pandoc data structure an instance of Typeable.
                        Added new processPandoc and queryPandoc functions, to query
                        or transform matching elements in a Pandoc structure.
                    
                      [ Peter Wang ]
                    
                      * Added new Texinfo writer.
                    
                      [ John MacFarlane ]
                    
                      * Changes to Texinfo writer:
                    
                        + No space between paragraph and following @verbatim (provides more
                          pleasing appearance in text formats)
                        + Blank line consistently after list environments.
                        + Removed deVerb.
                        + Use @code instead of @verb for inline code (this solves the character
                          escaping problem for texi2dvi and texi2pdf).
                        + Added news of Texinfo writer to README.
                        + Added Texinfo to list of formats in man page, and removed extra 'groff'.
                        + Added texi & texinfo extensions to Main.hs, and fixed bug in determining
                          default output extension.
                        + Modified disallowedInNode in Texinfo writer to correct list of disallowed characters.
                    
                      * Added tests for OpenDocument writer.
                    
                      * Added ODT writer (using zip-archive library to package output of
                        OpenDocument writer).  Added odt-styles directory with default ODT styles.
                    
                      * Added new mediawiki writer and tests.
                    
                      * Markdown reader: Added support for delimited code blocks, with optional
                        syntax highlighting using highlighting-kate (if the 'highlighting'
                        configuration option is selected).
                    
                        + Currently highlighting is supported only in the HTML writer.
                        + Delimited code blocks can have attributes; using the language name as
                          class triggers highlighting.
                        + New Attributes parameter in CodeBlock structure.
                        + --version now indicates whether syntax highlighting support is compiled
                          in, and prints a list of supported languages
                    
                      * Removed debian directory. Pandoc is no longer a native debian package.
                    
                      * Changes to build process:  pandoc can now be built from the repository
                        using Cabal.  No unix tools are needed (so, pandoc can be built on Windows
                        without Cygwin).
                    
                        + Include shell scripts themselves in repo, rather than generating from wrappers.
                          Removed wrappers directory and wrappers Makefile target.
                        + Text/Pandoc/ASCIIMathML.hs, Text/Pandoc/DefaultHeaders.hs,
                          and Text/Pandoc/Writers/S5.hs are no longer built in Makefile
                          from templates in the templates/ directory. Instead, they use template
                          haskell to read data at compile time from the relevant files in data/.
                          Template haskell functions go in a new module, Text.Pandoc.TH.
                        + man pages are now generated in Setup.hs hook, not by Makefile
                        + Makefile 'tarball' target now calls Cabal's 'sdist'
                        + Added "Extra-Source-Files" to pandoc.cabal, so sdist contains everything needed
                        + Added "Build-Type" field to pandoc.cabal to avoid warning.
                        + Added to "Extra-source-files" and "Extra-tmp-files" in pandoc.cabal,
                          so 'sdist' and 'clean' will work properly.
                        + Setup.hs now generates man pages in a postbuild hook.
                        + Added dependency-checking to Setup.hs, so it only rebuilds things
                          that need rebuilding.
                        + Added 'library' and 'executable' configuration flags.
                          Cabal can now be told to build just the library or just the executable.
                        + CABALOPTS may now be specified with 'make' to pass Cabal configuration flags.
                          For example:  CABALOPTS=-fhighlighting make
                    
                      * Rewrote test suite so it doesn't depend on perl or unix tools.
                    
                        + Replaced old runtests.pl with a Haskell script RunTests.hs.
                        + Added Diff.hs module to be used by RunTests.hs instead of unix 'diff'.
                        + Added test hook to Setup.hs, so tests may be run from cabal.
                        + Changed Makefile's 'test' target to run tests via cabal.
                        + Removed old generate.sh.
                        + Since we no longer have 'sed' to filter out raw HTML sections
                          from the docbook writer test, or raw LaTeX sections from the
                          context writer test, we now just include these sections.
                          They can be taken out if it is necessary to process the files.
                        + Updated latex and context writer tests to remove extra spaces
                          after '\\item'
                        + Added a markdown table reader test.
                        + Added markdown-reader-more.txt to test suite, for additional test cases
                          for raw ConTeXt environments and more.
                    
                      * Compatibility fixes for CPP, Cabal, and haddock:
                    
                        + Use CPP in "Extensions" field in pandoc.cabal.
                        + Removed use of backslash string continuations in source files.
                    
                      * Removed pandoc.cabal.ghc66.  We now require Cabal >= 1.2, GHC >= 6.8,
                        base >= 3.
                    
                      * Require parsec < 3.
                        The compatibility module in parsec 3.0.0 gives far worse performance than
                        parsec 2.1.  Eventually pandoc will be upgraded to use the new bytestring
                        version of parsec, and then we'll go to parsec 3.0.0.
                    
                      * Removed Text.Regex dependencies by rewriting using plain Haskell
                        (Text.Pandoc.Writers.RTF, Text.Pandoc.Writers.HTML, Main.hs)
                    
                      * Moved Text.Pandoc.Writers.DefaultHeaders -> Text.Pandoc.DefaultHeaders.
                    
                      * Makefile:
                    
                        + Added 'configure' as dependency of 'uninstall-all'.
                          (It uses the Cabal build program.)
                        + Makefile:  only use --with-hc-pkg if GHC_PKG is defined.
                          Note that Cabal will automatically choose the ghc-pkg appropriate
                          for the compiler selected, so normally specifying GHC by itself
                          is sufficient.
                    
                      * Removed Text.Pandoc.UTF8 module; instead, depend on utf8-string and use
                        its IO and conversion functions.
                    
                      * Added -Wall to ghc-options in pandoc.cabal.  Cleaned up modules so that
                        everything is -Wall clean.
                    
                        + Added pragma to HTML writer to avoid deprecation warning for use of "start" attribute.
                        + Added pragma to Text/Pandoc/Shared.hs to get rid of "orphan instance" warnings.
                          (These are caused by the Lift instance for ByteString.)
                    
                      * Changed the comment used to replace unsafe HTML if sanitize-html option
                        selected.
                    
                      * Made -c/--css option repeatable on the command line (like -H, -A, -B).
                    
                      * Moved XML-formatting functions to new unexported module Text.Pandoc.XML.
                    
                      * Escape '\160' as " ", not " " in XML.
                        "nbsp" isn't a predefined XML entity.
                    
                      * Fixed bug in RST reader, which would choke on: "p. one\ntwo\n".
                        Added some try's in ordered list parsers.
                    
                      * Man writer:  don't escape " as \".
                    
                      * Allow newline before URL in markdown link references.  Resolves Issue #81.
                        Added tests for this issue in new "markdown-reader-more" tests.
                        Changed RunTests.hs to run these tests.
                    
                      * Support for display math.  Resolves Issue #47.
                    
                        + Added a DisplayMath/InlineMath selector to Math inlines.
                        + Markdown parser yields DisplayMath for $$...$$.
                        + LaTeX parser yields DisplayMath when appropriate.  Removed
                          mathBlock parsers, since the same effect is achieved by the math
                          inline parsers, now that they handle display math.
                        + Writers handle DisplayMath as appropriate for the format.
                        + Modified tests accordingly; added new tests for display math.
                    
                      * Use LaTeXMathML instead of ASCIIMathML.  LaTeXMathML is closer
                        to LaTeX in its display of math, and supports many non-math LaTeX environments.
                    
                        + Changed -m option to use LaTeXMathML rather than ASCIIMathML.
                        + Modified HTML writer to print raw TeX when LaTeXMathML is
                          being used instead of suppressing it.
                        + Removed ASCIIMathML files from data/ and added LaTeXMathML.
                        + Replaced ASCIIMathML with LaTeXMathML in source files.
                        + Modified README and pandoc man page source.
                        + Added --latexmathml option (kept --asciimathml as a synonym
                          for backwards compatibility)
                    
                      * Markdown reader: Parse setext headers before atx headers.
                        Test case:
                           # hi
                           ====
                        parsed by Markdown.pl as an H1 header with contents "# hi".
                    
                      * Markdown reader: Treat "mixed" lists the same way as Markdown.pl does.
                        The marker on the first list item determines the type of the whole
                        list.  Thus, a list like
                           1. one
                           -  two
                           *  three
                        gets parsed as a single ordered list.  (Previous versions of pandoc
                        treated this as an ordered list with an unordered sublist.)
                    
                      * Markdown smart typography:
                    
                        + Em dashes no longer eat surrounding whitespace.  Resolves Issue #69.
                        + Use nonbreaking spaces after known abbreviations in markdown parser.
                          Thus, for example, "Mr. Brown" comes out as "Mr.~Brown" in LaTeX, and does
                          not produce a sentence-separating space.  Resolves Issue #75.
                    
                      * Markdown writer: Print unicode \160 literally, rather than as  .
                    
                      * Treat '\ ' in (extended) markdown as nonbreaking space.
                        Print nonbreaking space appropriately in each writer (e.g. ~ in LaTeX).
                    
                      * The '--sanitize-html' option now examines URIs in markdown links
                        and images, and in HTML href and src attributes.  If the URI scheme
                        is not on a whitelist of safe schemes, it is rejected.  The main point
                        is to prevent cross-site scripting attacks using 'javascript:' URIs.
                        See http://www.mail-archive.com/markdown-discuss@six.pairlist.net/msg01186.html
                        and http://ha.ckers.org/xss.html.  Resolves Issue #62.
                    
                      * HTML writer:
                    
                        + Override Text.XHtml's stringToHtml function,
                          so that characters below 0xff are not converted to numerical entity
                          references. Also convert '\160' to " ". This should aid readability
                          and editability of the HTML source. It does presuppose that the HTML
                          will be served as UTF-8.
                        + In code blocks, change leading newlines to 
                    tags. (Some browsers ignore them.) Resolves Issue #71. See http://six.pairlist.net/pipermail/markdown-discuss/2008-May/001297.html + Use style attributes rather than css classes for strikethrough and ordered list styles. This works better when fragments, rather than standalone documents, are generated. * HTML reader: Count anything that isn't a known block (HTML) tag as an inline tag (rather than the other way around). Added "html", "head", and "body" to list of block tags. Resolves Issue #66, allowing to count as an inline tag. * RTF writer: Fixed bug. Extra spaces were being printed after emphasized, boldface, and other inline elements. Resolves Issue #64. * LaTeX reader: improvements in raw LaTeX parsing. + "loose punctuation" (like {}) parsed as Space + Para elements must contain more than Str "" and Space elements + Added parser for "\ignore" command used in literate haskell. + Reworked unknownCommand and rawLaTeXInline: when not in "parse raw" mode, these parsers simply strip off the command part and allow the arguments to be parsed normally. So, for example, \blorg{\emph{hi}} will be parsed as Emph "hi" rather than Str "{\\emph{hi}}". + Parse lhs "code" environments as verbatim. Refactored parsers for verbatim environments. + Removed specialEnvironment parser. + parse '{}', if present, after \textless, \textgreater, \textbar, \textbackslash, \ldots. + Parse unescaped special characters verbatim rather than changing them to spaces. This way arguments of unknown commands will appear in braces. * Parse raw ConTeXt environments as TeX in markdown reader. Resolves Issue #73. * Moved BlockWrapper and wrappedBlocksToDoc from ConTeXt writer to Shared. * Made some structural changes to parsing of raw LaTeX environments. Previously there was a special block parser for LaTeX environments. It returned a Para element containing the raw TeX inline. This has been removed, and the raw LaTeX environment parser is now used in the rawLaTeXInline parser. The effect is exactly the same, except that we can now handle consecutive LaTeX and ConTeXt environments not separated by spaces. This new flexibility is required by the example in Issue #73: \placeformula \startformula L_{1} = L_{2} \stopformula API change: The LaTeX reader now exports rawLaTeXEnvironment' (which returns a string) rather than rawLaTeXEnvironment (which returns a block element). This is more likely to be useful in other applications. * Use \textsubscr instead of \textsubscript for LaTeX subscript macro. \textsubscript conflicts with a definition in the memoir class. Resolves Issue #65. * Removed unneeded space after "\\item" in LaTeX and ConTeXt output. * Added amsmath package to default LaTeX header. Resolves Issue #48. * Added \setupitemize[autointro] to ConTeXt header, to prevent orphaned list introduction lines. * Changed Float to Double in definition of Table element. (Double is more efficient in GHC.) * Fixed bug in Markdown parser: regular $s triggering math mode. For example: "shoes ($20) and socks ($5)." The fix consists in two new restrictions: + the $ that ends a math span may not be directly followed by a digit. + no blank lines may be included within a math span. Thanks to Joseph Reagle for noticing the bug. * Use Data.List's 'intercalate' instead of custom 'joinWithSep'. Removed 'joinWithSep' from Text.Pandoc.Shared. * Updated README and man pages. Acknowledge contributors in README. Added paragraph to README about producing S5 with separate CSS/javascript. * Updated INSTALL to reflect new build system (including configuration options) and document new dependencies. Added note to INSTALL that Cabal >= 1.2 is required for build. Resolves Issue #74. * Fixed some haddock documentation errors. * Small fix to markdown2pdf man page: only input needs to be piped through iconv. pandoc (0.46) unstable; urgency=low [ John MacFarlane ] * Made -H, -A, and -B options cumulative: if they are specified multiple times, multiple files will be included. * Added optional HTML sanitization using a whitelist. When this option is specified (--sanitize-html on the command line), unsafe HTML tags will be replaced by HTML comments, and unsafe HTML attributes will be removed. This option should be especially useful for those who want to use pandoc libraries in web applications, where users will provide the input. + Main.hs: Added --sanitize-html option. + Text.Pandoc.Shared: Added stateSanitizeHTML to ParserState. + Text.Pandoc.Readers.HTML: - Added whitelists of sanitaryTags and sanitaryAttributes. - Added parsers to check these lists (and state) to see if a given tag or attribute should be counted unsafe. - Modified anyHtmlTag and anyHtmlEndTag to replace unsafe tags with comments. - Modified htmlAttribute to remove unsafe attributes. - Modified htmlScript and htmlStyle to remove these elements if unsafe. + Modified README and man pages to document new option. * Improved handling of email addresses in markdown and reStructuredText. Consolidated uri and email address parsers. (Resolves Issue #37.) + New emailAddress and uri parsers in Text.Pandoc.Shared. - uri parser uses parseURI from Network.URI. - emailAddress parser properly handles email addresses with periods in them. + Removed uri and emailAddress parsers from Text.Pandoc.Readers.RST and Text.Pandoc.Readers.Markdown. * Markdown reader: + Fixed emph parser so that "*hi **there***" is parsed as a Strong nested in an Emph. (A '*' is only recognized as the end of the emphasis if it's not the beginning of a strong emphasis.) + Moved blockQuote parser before list parsers for performance. + Modified 'source' parser to allow backslash-escapes in URLs. So, for example, [my](/url\(1\)) yields a link to /url(1). Resolves Issue #34. + Disallowed links within links. (Resolves Issue #35.) - Replaced inlinesInBalanced with inlinesInBalancedBrackets, which instead of hard-coding the inline parser takes an inline parser as a parameter. - Modified reference and inlineNote to use inlinesInBalancedBrackets. - Removed unneeded inlineString function. - Added inlineNonLink parser, which is now used in the definition of reference. - Added inlineParsers list and redefined inline and inlineNonLink parsers in terms of it. - Added failIfLink parser. + Better handling of parentheses in URLs and quotation marks in titles. - 'source' parser first tries to parse URL with balanced parentheses; if that doesn't work, it tries to parse everything beginning with '(' and ending with ')'. - source parser now uses an auxiliary function source'. - linkTitle parser simplified and improved, under assumption that it will be called in context of source'. + Make 'block' conditional on strictness state, instead of using failIfStrict in block parsers. Use a different ordering of parsers in strict mode (raw HTML block before paragraph) for performance. In non-strict mode use rawHtmlBlocks instead of htmlBlock. Simplified htmlBlock, since we know it's only called in strict mode. + Improved handling of raw HTML. (Resolves Issue #36.) - Tags that can be either block or inline (e.g. ) should be treated as block when appropriate and as inline when appropriate. Thus, for example, hi should be treated as a paragraph with inline tags, while hi should be treated as a paragraph within tags. - Moved htmlBlock after para in list of block parsers. This ensures that tags that can be either block or inline get parsed as inline when appropriate. - Modified rawHtmlInline' so that block elements aren't treated as inline. - Modified para parser so that paragraphs containing only HTML tags and blank space are not allowed. Treat these as raw HTML blocks instead. + Fixed bug wherein HTML preceding a code block could cause it to be parsed as a paragraph. The problem is that the HTML parser used to eat all blank space after an HTML block, including the indentation of the code block. (Resolves Issue #39.) - In Text.Pandoc.Readers.HTML, removed parsing of following space from rawHtmlBlock. - In Text.Pandoc.Readers.Markdown, modified rawHtmlBlocks so that indentation is eaten *only* on the first line after the HTML block. This means that in
                    foo
                    the foo won't be treated as a code block, but in
                    foo
                    it will. This seems the right approach for least surprise. * RST reader: + Fixed bug in parsing explicit links (resolves Issue #44). The problem was that we were looking for inlines until a '<' character signaled the start of the URL; so, if you hit a reference-style link, it would keep looking til the end of the document. Fix: change inline => (notFollowedBy (char '`') >> inline). Note that this won't allow code inlines in links, but these aren't allowed in resT anyway. + Cleaned up parsing of reference names in key blocks and links. Allow nonquoted reference links to contain isolated '.', '-', '_', so so that strings like 'a_b_' count as links. + Removed unnecessary check for following link in str. This is unnecessary now that link is above str in the definition of 'inline'. * HTML reader: + Modified rawHtmlBlock so it parses and tags. This allows these tags to be handled correctly in Markdown. HTML reader now uses rawHtmlBlock', which excludes and , since these are handled in parseHtml. (Resolves Issue #38.) + Fixed bug (emph parser was looking for `` tag, not ``). + Don't interpret contents of style tags as markdown. (Resolves Issue #40.) - Added htmlStyle, analagous to htmlScript. - Use htmlStyle in htmlBlockElement and rawHtmlInline. - Moved "script" from the list of tags that can be either block or inline to the list of block tags. + Modified rawHtmlBlock to use anyHtmlBlockTag instead of anyHtmlTag and anyHtmlEndTag. This fixes a bug in markdown parsing, where inline tags would be included in raw HTML blocks. + Modified anyHtmlBlockTag to test for (not inline) rather than directly for block. This allows us to handle e.g. docbook in the markdown reader. * LaTeX reader: Properly recognize --parse-raw in rawLaTeXInline. Updated LaTeX reader test to use --parse-raw. * HTML writer: + Modified rules for automatic HTML header identifiers to ensure that identifiers begin with an alphabetic character. The new rules are described in README. (Resolves Issue #33.) + Changed handling of titles in HTML writer so you don't get "titleprefix - " followed by nothing. * ConTeXt writer: Use wrappers around Doc elements to ensure proper spacing. Each block element is wrapped with either Pad or Reg. Pad'ed elements are guaranteed to have a blank line in between. * RST writer: + Refactored RST writer to use a record instead of a tuple for state, and to include options in state so it doesn't need to be passed as a parameter. + Use an interpreted text role to render math in restructuredText. See http://www.american.edu/econ/itex2mml/mathhack.rst for the strategy. [ Recai Oktaş ] * Debian packaging changes: + Remove the empty 'include' directory in -dev package, which lintian complains about. + Bump Standarts-Version to 3.7.3. + Use new 'Homepage:' field to specify the upstream URL on suggestion of lintian. -- Recai Oktaş Tue, 08 Jan 2008 05:13:31 +0200 pandoc (0.45) unstable; urgency=low [ John MacFarlane ] * Simplified parsing of reference keys and notes in markdown and RST readers: The Reference data structure from Text.Pandoc.Shared is no longer needed, since referenceKey and noteBlock parses return strings (as many blank lines as were occupied by the key or note) and update state themselves. getPosition and setPosition are now used to ensure that error messages will give the correct line number. This yields cleaner (and slightly faster) code, with more accurate parsing error messages. * Added new Math inline element: + Markdown and LaTeX readers now convert TeX math into Math elements, not TeX. + This allows math to be treated differently from raw TeX in output. TeX elements are no longer printed in output formats other than Markdown, LaTeX, and ConTeXt. But Math elements are always printed. * New default handling of math in writers: + New module Text.Pandoc.Readers.TeXMath exports readTeXMath, which parses raw TeX math and outputs a string of Pandoc inlines that tries to render it as far as possible using unicode characters, lapsing into literal TeX when needed. + readTeXMath is now used for default HTML output in HTML, S5, RTF, and Docbook, if no other method for displaying math in HTML is specified. Enclosing $'s are no longer printed by default. + By default, math is put inside ``. This way it can be distinguished from the surrounding text, e.g. put in a different font. * New --gladtex and --mimetex options for display of math in HTML: + If --gladtex is specified, math is output between `` tags, so it can be processed by gladTeX. + If --mimetex is specified, math is put in `` tags with a link to the mimetex CGI script (or any other script that takes TeX math as input and outputs an image). The URL of the script may be specified, but defaults to /cgi-bin/mimetex.cgi. + HTMLMathMethod structure in WriterOptions keeps track of how to display math in HTML output. + Updated README with a description of the four options for displaying math in HTML. * HTML reader: + Fixed bug: parser for minimized attributes should not swallow trailing spaces. + Simplified HTML attribute parsing. + Changed parsing of code blocks in HTML reader: `` tag is no longer needed. `
                    ` suffices. All HTML tags in the code block
                          (e.g. for syntax highlighting) are skipped, because they are not
                          portable to other output formats. A `...` block not
                          surrounded by `
                    ` now counts as inline HTML, not a code block.
                        + Remove just one leading and one trailing newline from contents of
                          `
                    ...
                    ` in codeBlock parser. * Markdown reader: + Removed support for box-style block quotes. + Require space before title in links and references. This fixes a bug in parsing URLs like http://silly/url(withparen). + Improved and simplified setextHeader parser. + Fixed logic in smart quote parsing, adding some needed 'try' statements. + Fixed smart quote parsing so that unicode characters 8216 and 8217 are recognized as single quotes, and 8220 and 8221 as double quotes. * RST reader: + Fixed bug in parsing of code blocks. Previously a full tab indent was required, but RST allows code to be indented any amount. Resolves Issue #27. + Allow field lists to be indented. + Parse the contents of field lists instead of treating as a raw string. + Represent field lists as definition lists instead of blockquotes. + Fixed bug in which metadata would be overridden if the document contained multiple field lists. + Parse fields associated with '.. image::' blocks, and use 'alt' field, if given, for image alt and title attributes. * LaTeX reader: + Modified specialChar so that '"' characters are parsed. + Fixed a bug in parsing of \[ \] math blocks (thanks to Mark Kalderon). * HTML writer: + Changes in handling of math (see above). + Don't produce HTML for table of contents if there are no headers. (This would be an empty list, which is invalid XHTML.) * Markdown writer: + Don't print title attribute if title is empty. (This differs from the behavior of Markdown.pl, and agrees with PHP Markdown. But John Gruber has indicated that he prefers this behavior.) Adjusted test suite accordingly. + Fixed incorrect line wrapping in paragraphs including hard line breaks. Resolves Issue #25. + Fixed bug in markdown writer: If an ordered list item began with a marker greater than 3 characters in width, and the item took more than one line, it would appear on the line after the list marker, e.g.: (12) My list item. Multiline. Now it works as follows: (12) My list item. Multiline. * RST writer + Fixed bug in RST writer's handling of ordered lists. Previously, list items with multiple lines would not always line up with single-line list items. Now, list items are nested the length of the list marker + 1. This looks better and ensures that list items all line up. (Note that list markers are padded to the length of the longest list marker in the series.) + Use 3-space indent for unordered lists. + If label for a link reference contains a colon, surround it by ` signs so it won't be interpreted as the end of the link label. * LaTeX writer: + Cleaner output for footnotes. Footnotes now always begin on a new line, and the final } is on a line by itself only when it needs to be (i.e. only when the note ends with a Verbatim environment). + Added writer options to state, so state doesn't need to be passed as a parameter. + Text wrapping now provided, using wrapTeXIfNeeded. * ConTeXt writer: many improvements for more idiomatic ConTeXt output (thanks to Idris Samawi Hamid for suggestions). + PrettyPrint module now used for output. + Writer options are now in state, so they don't have to be passed as a parameter. + Text wrapping now provided, using wrapTeXIfNeeded. + Better treatment of footnotes: footnotes are always on lines by themselves, and the final } is on a line by itself only when it needs to be (after \stoptyping). + Use \subject, \subsubject, ... or \section, \subsection, ... for headings, depending on whether --number-sections option is selected. + Extra blank line inserted after \stopitemize + Use new, "official" definition of blockquote environment. Also, use blank line after \startblockquote to balance blank line at the end. + Both itemized and enumerated lists are now generated using \start-stopitemize, with appropriate options. Removed definitions of ltxenum and ltxitem, which are no longer needed. Provided defaults for itemized lists in the preamble. State keeps track of ordered list level, so that when default numbering is specified, the appropriate scheme can be used. + Changed \useurl to \useURL. + Changed link color from red to blue. + Use \subsubsubsubsection etc., since these are supported (up to at least sub x 5). * Text.Pandoc.Shared: + Save and restore position in parseFromString, so that accurate error messages can be given. + Improved efficiency of romanNumeral parser. + Added wrappedTeX and wrapTeXIfNeeded functions. These ensure that footnotes occur on lines by themselves (to make them easier to see and move) and do not screw up line wrapping. * Text.Pandoc.UTF8: modified fromUTF8 to strip out the BOM if present. Windows Notepad and other applications insert a BOM at the beginning of a UTF8 file. * Main.hs (tabFilter): Treat '\r' at end of line as newline (in addition to "\r\n" and '\n'). * Added a writer option for wrapped text and a command-line option '--no-wrap', which disables text wrapping and minimizes whitespace in HTML. (Resolves Issue #26.) + Added support for '--no-wrap' to Main.hs. + Added wrapIfNeeded function to Text.Pandoc.Shared. + Use wrapIfNeeded instead of wrapped in the RST, Man, Docbook, and Markdown writers. + Added render and renderFragment helpers to HTML writer. * Modified html2markdown to run tidy only if the HTML cannot be parsed. Previously html2markdown piped all input through tidy before passing it to pandoc. This caused problems on certain pages (e.g. http://daringfireball.com/markdown) which have well-formed XHTML that causes tidy to choke. The solution is to pipe through tidy only if pandoc cannot parse the input by itself. This means that a temp file is now always used, even when input comes from a local file or standard input. * Removed 'version' constant from Main.hs; added 'pandocVersion' to Text.Pandoc library. * pandoc.cabal: + Modified to work with GHC 6.8 and Cabal configurations. (For GHC 6.8, pretty and containers must be added to Build-Depends, and it is desirable to use the -O2 compiler option.) Cabal configurations allows one to select options depending on the compiler version. For GHC 6.6, the splitBase option can be disabled. + pandoc.cabal.ghc66 is provided for users with older versions of Cabal, which do not support configurations. + Use Ghc-Prof-Options to ensure that '-auto-all' is used when '--enable-(executable|library)-profiling' is specified. Updated PROFILING instructions accordingly. * Makefile: + Makefile now checks GHC version. If GHC is 6.6, pandoc.cabal.ghc66 is copied to pandoc.cabal, and the old pandoc.cabal is copied to pandoc.cabal.orig. Otherwise, pandoc.cabal is copied to pandoc.cabal.orig but otherwise unmodified. This way, the Makefile will work properly with either GHC 6.6 or 6.8. + Changed BUILDCONF to point to dist/setup-config, not .setup-config. This is where current versions of Cabal put it. + Added $(BUILDCMD) target, so setup doesn't get compiled every time. + Removed dependency of templates on ./templates, which is circular now that templates is a subdirectory of the top-level. * MacPorts Portfile: + Modified to install the pandoc library in addition to programs. + Installation must be done manually rather than using Makefile's install-all. + Note that the library must be registered in the activate phase, after the library files have been copied out of the destroot. Cabal generates a 'register.sh' script that will do this. * debian/control: Added libghc6-network-dev, libghc6-xhtml-dev, and libghc6-mtl-dev as dependencies for libghc6-pandoc-dev. Closes: #445235 * debian/rules: Converted to UTF-8. * Changed pandoc home page to http://johnmacfarlane.net/pandoc/. * Updated ASCIIMathML.js to latest version. * Directory structure: + Moved everything from src into the top-level directory. + Changed references to source directory in Makefile and pandoc.cabal.*. + Moved ASCIIMathML.js, headers, and ui into templates directory. + Modified fillTemplates.pl to reflect new paths. [ Recai Oktaş ] * Makefile: Fixed the issue of having two copies of the library documentation under some usage scenarios. * Replaced 'ghc' with '$(GHC)' in Makefile, and made GHC and GHC_PKG configurable through the environment, to support unusual ghc installations. For example: GHC=/opt/ghc/bin/ghc GHC_PKG=/opt/ghc/bin/ghc-pkg make -- Recai Oktaş Sun, 07 Oct 2007 20:51:43 +0300 pandoc (0.44) unstable; urgency=low [ John MacFarlane ] * Fixed bug in HTML writer: when --toc was used, anchors were put around headers, which is invalid XHTML (block content within inline element). Now the anchors are put inside the header tags. Resolves Issue #23. * Added xmlns attribute to html element in html writer tests. This attribute is added by more recent versions of the xhtml library (>= 3000), and is required for valid XHTML. [ Recai Oktaş ] * On configure, compile 'Setup.hs' to 'setup' and use 'setup' as the build command instead of 'runhaskell', which, on some platforms (such as s390, alpha, m68k), throws the following error: runhaskell Setup.hs configure --prefix=/usr ghc-6.6.1: not built for interactive use This causes a serious FTBFS bug. Closes: #440668. -- Recai Oktaş Mon, 03 Sep 2007 18:24:02 +0300 pandoc (0.43) unstable; urgency=low [ John MacFarlane ] * The focus of this release is performance. The markdown parser is about five times faster than in 0.42, based on benchmarks with the TextMate manual. * Main.hs: Replaced CRFilter and tabFilter with single function tabFilter, which operates on the whole string rather than breaking it into lines, and handles dos-style line-endings as well as tabs. * Added separate LaTeX reader and native reader tests; removed round-trip tests. * Text.Pandoc.Shared: + Removed tabsToSpaces and tabsInLine (they were used only in Main.hs.) + General code cleanup (to elimante warnings when compiling with -Wall.) + Added 'wrapped' function, which helps wrap text into paragraphs, using the prettyprinting library. + Rewrote charsInBalanced and charsInBalanced'. - Documented restriction: open and close must be distinct characters. - Rearranged options for greater efficiency. - Bug fix: Changed inner call to charsInBalanced inside charsInBalanced' to charsInBalanced'. + anyLine now requires that the line end with a newline (not eof). This is a harmless assumption, since we always add newlines to the end of a block before parsing with anyLine, and it yields a 10% speed boost. + Removed unnecessary 'try' in anyLine. + Removed unneeded 'try' from romanNumeral parser. + Use notFollowedBy instead of notFollowedBy' in charsInBalanced. + Removed unneeded 'try' in parseFromString. + Removed unneeded 'try' from stringAnyCase. (Now it behaves like 'string'.) + Changed definition of 'enclosed' in Text.Pandoc.Shared so that 'try' is not automatically applied to the 'end' parser. Added 'try' in calls to 'enclosed' where needed. Slight speed increase. * Writers: + Replaced individual wrapping routines in RST, Man, and Markdown writers with 'wrapped' from Text.Pandoc.Shared. + Rewrote LaTeX writer to use the prettyprinting library, so we get word wrapping, etc. + Modified latex writer tests for new latex writer using prettyprinter. + Fixed bug in LaTeX writer: autolinks would not cause '\usepackage{url}' to be put in the document header. Also, changes to state in enumerated list items would be overwritten. + In Markdown writer, escape paragraphs that begin with ordered list markers, so they don't get interpreted as ordered lists. * Text.Pandoc.Reades.LaTeX: + Fixed bug in LaTeX reader, which wrongly assumed that the roman numeral after "enum" in "setcounter" would consist entirely of "i"s. 'enumiv' is legitimate. + LaTeX command and environment names can't contain numbers. + Rearranged order of parsers in inline for slight speed improvement. + Added '`' to special characters and 'unescapedChar'. * Text.Pandoc.Readers.RST: + Removed unneeded try's in RST reader; also minor code cleanup. + Removed tabchar. + Rearranged parsers in inline (doubled speed). * Text.Pandoc.Readers.Markdown: + Skip notes parsing if running in strict mode. (This yields a nice speed improvement in strict mode.) + Simplify autolink parsing code, using Network.URI to test for URIs. Added dependency on network library to debian/control and pandoc.cabal. + More perspicuous definition of nonindentSpaces. + Removed unneeded 'try' in 'rawLine'. + Combined linebreak and whitespace into a new whitespace parser, to avoid unnecessary reparsing of space characters. + Removed unnecessary 'try' in 'codeBlock', 'ellipses', 'noteMarker', 'multilineRow', 'dashedLine', 'rawHtmlBlocks'. + Use lookAhead in parsers for setext headers and definition lists to see if the next line begins appropriately; if not, don't waste any more time parsing. + Don't require blank lines after code block. (It's sufficient to end code block with a nonindented line.) + Changed definition of 'emph': italics with '_' must not be followed by an alphanumeric character. This is to help prevent interpretation of e.g. `[LC_TYPE]: my_type` as `[LCTYPE]:mytype`. + Improved Markdown.pl-compatibility in referenceLink: the two parts of a reference-style link may be separated by one space, but not more... [a] [link], [not] [a link]. + Fixed markdown inline code parsing so it better accords with Markdown.pl: the marker for the end of the code section is a clump of the same number of `'s with which the section began, followed by a non-` character. So, for example, ` h ``` i ` -> `h ``` i`. + Split 'title' into 'linkTitle' and 'referenceTitle', since the rules are slightly different. + Rewrote 'para' for greater efficiency. + Rewrote link parsers for greater efficiency. + Removed redundant 'referenceLink' in definition of inline (it's already in 'link'). + Refactored escapeChar so it doesn't need 'try'. + Refactored hrule for performance in Markdown reader. + More intelligent rearranging of 'inline' so that most frequently used parsers are tried first. + Removed tabchar parser, as whitespace handles tabs anyway. * Text.Pandoc.CharacterReferences: + Refactored. + Removed unnecessary 'try's for a speed improvement. + Removed unnecessary '&' and ';' from the entity table. * Build process: + Makefile: Get VERSION from cabal file, not Main.hs. + Modified MacPorts Portfile: - Depend on haddock - Build and install libraries and library documentation in addition to pandoc executable - Added template item for md5 sum in Portfile.in. - Incorporated changes from MacPorts repository (r28278). + FreeBSD port: Don't try to generate distinfo in Makefile. It can be made using 'make makesum' in FreeBSD. + Make both freebsd and macports targets depend on tarball. * Website and documentation: + Updated INSTALL instructions. + Added pandocwiki demo to website. + Removed local references to Portfile, since pandoc is now in the MacPorts repository. -- Recai Oktaş Sun, 02 Sep 2007 15:50:11 +0300 pandoc (0.42) unstable; urgency=low [ John MacFarlane ] * Main.hs: Use utf8 conversion on the extra files loaded with the -H, -C, -B, and -A options. This fixes problems with unicode characters in these files. * Exposed Text.Pandoc.ASCIIMathML, since it is imported in Text.Pandoc.Readers.HTML and without it we get a linking error when using the library. * Markdown reader: + Added new rule for enhanced markdown ordered lists: if the list marker is a capital letter followed by a period (including a single-letter capital roman numeral), then it must be followed by at least two spaces. The point of this is to avoid accidentally treating people's initials as list markers: a paragraph might begin, "B. Russell was an English philosopher," and this shouldn't be treated as a list. Documented change in README. + Blocks that start with "p. " and a digit are no longer treated as ordered lists (it's a page number). + Added a needed 'try' to listItem. + Removed check for a following setext header in endline. A full test is too inefficient (doubles benchmark time), and the substitute we had before is not 100% accurate. + Don't use Code elements for autolinks if --strict specified. * LaTeX writer: When a footnote ends with a Verbatim environment, the close } of the footnote cannot occur on the same line or an error occurs. Fixed this by adding a newline before the closing } of every footnote. * HTML writer: + Removed incorrect "{}" around style information in HTML tables. Column widths now work properly in HTML. + If --strict option is specified (and --toc is not), don't include identifiers in headers, for better Markdown compatibility. * Build process: + Separated $(web_dest) and website targets. + In website, index.txt is now constructed from template index.txt.in. + Added freebsd target to Markefile. This creates the freebsd Makefile from Makefile.in, and creates distinfo. Removed Makefile and distinfo from the repository. + Added macport target to Makefile. Portfile is built from template Portfile.in. + Removed OSX package targets. (Too many difficulties involving dependencies on dynamic libraries.) + More complete INSTALL instructions for all architectures. * Website: + Added a programming demo, pandocwiki. [ Recai Oktaş ] * Do not forget to close pandoc's ITP. Closes: #391666 -- Recai Oktaş Sun, 26 Aug 2007 22:51:32 +0300 pandoc (0.41) unstable; urgency=low [ John MacFarlane ] * Fixed bugs in HTML reader: + Skip material at end *only if* `` is present (previously, only part of the document would be parsed if an error was found; now a proper error message is given). + Added new constant eitherBlockOrInline with elements that may count either as block-level or as inline. Modified isInline and isBlock to take this into account. + Modified rawHtmlBlock to accept any tag (even an inline tag): this is innocuous, because rawHtmlBlock is tried only if a regular inline element can't be parsed. + Added a necessary 'try' in definition of 'para'. * Fixed bug in markdown ordered list parsing. The problem was that anyOrderedListStart did not check for a space following the ordered list marker. So in 'A.B. 2007' the parser would be expecting a list item, but would not find one, causing an error. Fixed a similar bug in the RST reader. Resolves Issue #22. * Refactored RST and Markdown readers using parseFromString. * LaTeX reader will now skip anything after \end{document}. * Fixed blockquote output in markdown writer: previously, block quotes in indented contexts would be indented only in the first line. * Added note to INSTALL about variations in versions of the xhtml library that can lead to failed tests (thanks to Leif LeBaron). -- Recai Oktaş Sun, 19 Aug 2007 23:26:07 +0300 pandoc (0.4) unstable; urgency=low [ John MacFarlane ] * Added two new output formats: groff man pages and ConTeXt. By default, output files with extensions ".ctx" and ".context" are assumed to be ConTeXt, and output files with single-digit extensions are assumed to be man pages. * Enhanced ordered lists (documented in README, under Lists): + The OrderedList block element now stores information about list number style, list number delimiter, and starting number. + The readers parse this information when possible. + The writers use this information to style ordered lists. + The enhancement can be disabled using the --strict option. * Added support for tables (with a new Table block element). Two kinds of tables are supported: a simple table with one-line rows, and a more complex variety with multiline rows. All output formats are supported, but only markdown tables are parsed at the moment. The syntax is documented in README. * Added support for definition lists (with a new DefinitionList block element). All output and input formats are supported. The syntax is documented in README. * Added support for superscripts and subscripts (with new Superscript and Subscript inline elements). All input and output formats. The syntax is documented in README. * Added support for strikeout (with a new Strikeout inline element). All input and output formats are supported. Thanks to Bradley Kuhn, who contributed a patch. The syntax is documented in README. Resolves Issue #18. * Added a --toc|--table-of-contents option. This causes an automatically generated table of contents (or an instruction that creates one) to be inserted at the beginning of the document. Not supported in S5, DocBook, or man page writers. * Modified the -m|--asciimathml option: + If an optional URL argument is provided, a link is inserted instead of the contents of the ASCIIMathML.js script. + Nothing is inserted unless the document actually contains LaTeX math. * Removed Blank block element as unnecessary. * Removed Key and Note blocks from the Pandoc data structure. All links are now stored as explicit links, and note contents are stored with the (inline) notes. + All link Targets are now explicit (URL, title) pairs; there is no longer a 'Ref' target. + Markdown and RST parsers now need to extract data from key and note blocks and insert them into the relevant inline elements. Other parsers have been simplified, since there is no longer any need to construct separate key and note blocks. + Markdown, RST, and HTML writers need to construct lists of notes; Markdown and RST writers need to construct lists of link references (when the --reference-links option is specified); and the RST writer needs to construct a list of image substitution references. All writers have been rewritten to use the State monad when state is required. + Several functions (generateReference, keyTable, replaceReferenceLinks, replaceRefLinksBlockList, and some auxiliaries used by them) have been removed from Text.Pandoc.Shared, since they are no longer needed. New functions and data structures (Reference, isNoteBlock, isKeyBlock, isLineClump) have been added. The functions inTags, selfClosingTag, inTagsSimple, and inTagsIndented have been moved to the DocBook writer, since that is now the only module that uses them. NoteTable is now exported in Text.Pandoc.Shared. + Added stateKeys and stateNotes to ParserState; removed stateKeyBlocks, stateKeysUsed, stateNoteBlocks, stateNoteIdentifiers, stateInlineLinks. + Added writerNotes and writerReferenceLinks to WriterOptions. * Added Text.Pandoc module that exports basic readers, writers, definitions, and utility functions. This should export everything needed for most uses of Pandoc libraries. The haddock documentation includes a short example program. * Text.Pandoc.ASCIIMathML is no longer an exported module. * Added Text.Pandoc.Blocks module to help in printing markdown and RST tables. This module provides functions for working with fixed-width blocks of text--e.g., placing them side by side, as in a table row. * Refactored to avoid reliance on Haskell's Text.Regex library, which (a) is slow, and (b) does not properly handle unicode. This fixed some strange bugs, e.g. in parsing S-cedilla, and improved performance. + Replaced 'gsub' with a general list function 'substitute' that does not rely on Text.Regex. + Rewrote extractTagType in HTML reader so that it doesn't use regexs. + In Markdown reader, replaced email regex test with a custom email autolink parser (autoLinkEmail). Also replaced selfClosingTag regex with a custom function isSelfClosingTag. + Modified Docbook writer so that it doesn't rely on Text.Regex for detecting 'mailto' links. + Removed escapePreservingRegex and reamped entity-handling functions in Text.Pandoc.Shared and Text.Pandoc.CharacterReferences to avoid reliance on Text.Regex (see below on character reference handling changes). * Renamed Text.Pandoc.Entities as Text.Pandoc.CharacterReferences. * Changed handling of XML entities. Entities are now parsed (and unicode characters returned) in the Markdown and HTML readers, rather than being handled in the writers. In HTML and Docbook writers, UTF-8 is now used instead of entities for characters above 128. This makes the HTML and DocBook output much more readable and more easily editable. + Removed sgmlHexEntity, sgmlDecimalEntity, sgmlNamedEntity, and sgmlCharacterEntity regexes from Text.Pandoc.Shared. + Renamed escapeSGMLChar to escapeCharForXML. Added escapeStringForXML. Moved both functions to Text.Pandoc.Writers.Docbook. + Added characterReference parser to Text.Pandoc.CharacterReferences. This parses a string and return a unicode character. + Rewrote decodeCharacterReferences to use the new parser instead of Text.Regex. + Added new charRef parser for Markdown and HTML, which replaces the old 'entity' parser. Added '&' as a special character in Markdown reader. + Modified HTML and Markdown readers to call decodeEntities on all raw strings (e.g. authors, dates, link titles), to ensure that no unprocessed entities are included in the native representation of the document. (In the HTML reader, most of this work is done by a change in extractAttributeName.) + In XML and Markdown output, escape unicode nonbreaking space as ' ', since a unicode non-breaking space is impossible to distinguish visually from a regular space. (Resolves Issue #3.) + Removed encodeEntitiesNumerical. + Use Data.Map for entityTable and (new) reverseEntityTable, for a slight performance boost over the old association list. + Removed unneeded decodeEntities from 'str' parser in HTML and Markdown readers. * Text.Pandoc.UTF8: Renamed encodeUTF8 to toUTF8, decodeUTF8 to fromUTF8, for clarity. * Replaced old haskell98 module names replaced by hierarchical module names, e.g. List by Data.List. Removed haskell98 from dependencies in pandoc.cabal, and added mtl (needed for state monad). Substituted xhtml for html. * Refactored and cleaned up character escaping in writers, using backslashEscapes and escapeStringUsing functions. * Instead of adding "\n\n" to the end of an input string in Main.hs, this is now done in the readers. This makes the libraries behave the way you'd expect from the pandoc program. Resolves Issue #10. * URLs and email addresses in autolinks are now typeset as Code. * In Main.hs, changed putStr to putStrLn -- mainly because MacOS X doesn't display the whole output unless there's a line ending. * Major code cleanup in all modules, for greater consistency, concision, and readability. * HTML reader: + Fixed several bugs (extractTagType, attribute parsing). + Remove Null blocks in lists of blocks when possible. + Allow HTML comments as raw HTML inline. * Markdown reader: + Ordered list items may no longer begin with uppercase letters, or letters greater than 'n'. (This prevents first initials and page reference, e.g. 'p. 400', from being parsed as beginning lists.) Also, numbers beginning list items may no longer end with ')', which is now allowed only after letters. Note: These changes may cause documents to be parsed differently. Users should take care in upgrading. + Changed autoLink parsing to conform better to Markdown.pl's behavior. `` is not treated as a link, but ``, ``, and `` are. + Cleaned up handling of embedded quotes in link titles. Now these are stored as a '"' character, not as '"'. + Use lookAhead parser for the 'first pass' (looking for reference keys), instead of parsing normally, then using setInput to reset input. This yields a slight performance boost. + Fixed several bugs in smart quote recognition. + Fixed bug in indentSpaces (which didn't properly handle cases with mixed spaces and tabs). + Consolidated 'text', 'special', and 'inline' into 'inline'. + Fixed bug which allowed URL and title to be separated by multiple blank lines in links and reference keys. They can be on separate lines but can't have blank lines between them. + Correctly handle bracketed text inside inline footnotes and links,using new function inlinesInBalanced. Resolves Issue #14. + Fixed bug in footnotes: links in footnotes were not being processed. Solution: three-stage parse. First, get all the reference keys and add information to state. Next, get all the notes and add information to state. (Reference keys may be needed at this stage.) Finally, parse everything else. + Replaced named constants like 'emphStart' with literals. + Removed an extra occurance of escapedChar in definition of inline. * RST reader: + Allow the URI in a RST hyperlink target to start on the line after the reference key. + Added 'try' in front of 'string', where needed, or used a different parser. This fixes a bug where ````` would not be correctly parsed as a verbatim `. + Fixed slow performance in parsing inline literals in RST reader. The problem was that ``#`` was seen by 'inline' as a potential link or image. Fix: inserted 'notFollowedBy (char '`')' in link parsers. Resolves Issue #8. + Use lookAhead instead of getInput/setInput in RST reader. Removed unneeded getState call, since lookAhead automatically saves and restores the parser state. + Allow hyperlink target URIs to be split over multiple lines, and to start on the line after the reference. Resolves Issue #7. + Fixed handling of autolinks. * LaTeX reader: + Replaced 'choice [(try (string ...), ...]' idiom with 'oneOfStrings', for clarity. + Added clauses for tilde and caret. Tilde is \ensuremath{\sim}, and caret is \^{}, not \^ as before. + Added parsing for \url. + Parse \texttt{} as code, provided there's nothing fancy inside. * HTML writer: + Modified HTML writer to use the Text.XHtml library. This results in cleaner, faster code, and it makes it easier to use Pandoc in other projects, like wikis, which use Text.XHtml. Two functions are now provided, writeHtml and writeHtmlString: the former outputs an Html structure, the latter a rendered string. The S5 writer is also changed, in parallel ways (writeS5, writeS5String). + The Html header is now written programmatically, so it has been removed from the 'headers' directory. The S5 header is still needed, but the doctype and some of the meta declarations have been removed, since they are written programatically. This change introduces a new dependency on the xhtml package. + Fixed two bugs in email obfuscation involving improper escaping of '&' in the `
                  2. ') -- return the footnote reference, linked to the note. return '' .. num .. '' end function Span(s, attr) return "" .. s .. "" end function Cite(s, cs) local ids = {} for _,cit in ipairs(cs) do table.insert(ids, cit.citationId) end return "" .. s .. "" end function Plain(s) return s end function Para(s) return "

                    " .. s .. "

                    " end -- lev is an integer, the header level. function Header(lev, s, attr) return "" .. s .. "" end function BlockQuote(s) return "
                    \n" .. s .. "\n
                    " end function HorizontalRule() return "
                    " end function CodeBlock(s, attr) -- If code block has class 'dot', pipe the contents through dot -- and base64, and include the base64-encoded png as a data: URL. if attr.class and string.match(' ' .. attr.class .. ' ',' dot ') then local png = pipe("base64", pipe("dot -Tpng", s)) return '' -- otherwise treat as code (one could pipe through a highlighter) else return "
                    " .. escape(s) ..
                               "
                    " end end function BulletList(items) local buffer = {} for _, item in pairs(items) do table.insert(buffer, "
                  3. " .. item .. "
                  4. ") end return "
                      \n" .. table.concat(buffer, "\n") .. "\n
                    " end function OrderedList(items) local buffer = {} for _, item in pairs(items) do table.insert(buffer, "
                  5. " .. item .. "
                  6. ") end return "
                      \n" .. table.concat(buffer, "\n") .. "\n
                    " end -- Revisit association list STackValue instance. function DefinitionList(items) local buffer = {} for _,item in pairs(items) do for k, v in pairs(item) do table.insert(buffer,"
                    " .. k .. "
                    \n
                    " .. table.concat(v,"
                    \n
                    ") .. "
                    ") end end return "
                    \n" .. table.concat(buffer, "\n") .. "\n
                    " end -- Convert pandoc alignment to something HTML can use. -- align is AlignLeft, AlignRight, AlignCenter, or AlignDefault. function html_align(align) if align == 'AlignLeft' then return 'left' elseif align == 'AlignRight' then return 'right' elseif align == 'AlignCenter' then return 'center' else return 'left' end end function CaptionedImage(src, tit, caption) return '
                    \n\n' .. '

                    ' .. caption .. '

                    \n
                    ' end -- Caption is a string, aligns is an array of strings, -- widths is an array of floats, headers is an array of -- strings, rows is an array of arrays of strings. function Table(caption, aligns, widths, headers, rows) local buffer = {} local function add(s) table.insert(buffer, s) end add("") if caption ~= "" then add("") end if widths and widths[1] ~= 0 then for _, w in pairs(widths) do add('') end end local header_row = {} local empty_header = true for i, h in pairs(headers) do local align = html_align(aligns[i]) table.insert(header_row,'') empty_header = empty_header and h == "" end if empty_header then head = "" else add('') for _,h in pairs(header_row) do add(h) end add('') end local class = "even" for _, row in pairs(rows) do class = (class == "even" and "odd") or "even" add('') for i,c in pairs(row) do add('') end add('') end add('\n" .. s .. "" end -- The following code will produce runtime warnings when you haven't defined -- all of the functions you need for the custom writer, so it's useful -- to include when you're working on a writer. local meta = {} meta.__index = function(_, key) io.stderr:write(string.format("WARNING: Undefined function '%s'\n",key)) return function() return "" end end setmetatable(_G, meta) pandoc-1.16.0.2~dfsg/data/templates/0000755000000000000000000000000012645626061015662 5ustar rootrootpandoc-1.16.0.2~dfsg/data/templates/default.commonmark0000644000000000000000000000033212645626061021371 0ustar rootroot$if(titleblock)$ $titleblock$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ $toc$ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.epub30000644000000000000000000000246712645626061020257 0ustar rootroot$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $for(header-includes)$ $header-includes$ $endfor$ $if(titlepage)$
                    $for(title)$ $if(title.type)$

                    $title.text$

                    $else$

                    $title$

                    $endif$ $endfor$ $if(subtitle)$

                    $subtitle$

                    $endif$ $for(author)$

                    $author$

                    $endfor$ $for(creator)$

                    $creator.text$

                    $endfor$ $if(publisher)$

                    $publisher$

                    $endif$ $if(date)$

                    $date$

                    $endif$ $if(rights)$
                    $rights$
                    $endif$
                    $else$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ $endif$ pandoc-1.16.0.2~dfsg/data/templates/default.markdown0000644000000000000000000000033212645626061021050 0ustar rootroot$if(titleblock)$ $titleblock$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ $toc$ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.opendocument0000644000000000000000000000406112645626061021731 0ustar rootroot $automatic-styles$ $for(header-includes)$ $header-includes$ $endfor$ $if(title)$ $title$ $endif$ $for(author)$ $author$ $endfor$ $if(date)$ $date$ $endif$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.context0000644000000000000000000000717412645626061020725 0ustar rootroot$if(context-lang)$ \mainlanguage[$context-lang$] $endif$ $if(context-dir)$ \setupalign[$context-dir$] \setupdirections[bidi=on,method=two] $endif$ % Enable hyperlinks \setupinteraction [state=start, $if(title)$ title={$title$}, $endif$ $if(subtitle)$ subtitle={$subtitle$}, $endif$ $if(author)$ author={$for(author)$$author$$sep$; $endfor$}, $endif$ $if(keywords)$ keyword={$for(keywords)$$keywords$$sep$; $endfor$}, $endif$ style=$linkstyle$, color=$linkcolor$, contrastcolor=$linkcontrastcolor$] % make chapter, section bookmarks visible when opening document \placebookmarks[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][chapter, section] \setupinteractionscreen[option=bookmark] \setuptagging[state=start] $if(papersize)$ \setuppapersize[$for(papersize)$$papersize$$sep$,$endfor$] $endif$ $if(layout)$ \setuplayout[$for(layout)$$layout$$sep$,$endfor$] $endif$ $if(pagenumbering)$ \setuppagenumbering[$for(pagenumbering)$$pagenumbering$$sep$,$endfor$] $endif$ % use microtypography \definefontfeature[default][default][script=latn, protrusion=quality, expansion=quality, itlc=yes, textitalics=yes, onum=yes, pnum=yes] \definefontfeature[smallcaps][script=latn, protrusion=quality, expansion=quality, smcp=yes, onum=yes, pnum=yes] \setupalign[hz,hanging] \setupitaliccorrection[global, always] \setupbodyfontenvironment[default][em=italic] % use italic as em, not slanted \usemodule[simplefonts$if(fontsize)$,$fontsize$$endif$] \setmainfontfallback[DejaVu Serif][range={greekandcoptic, greekextended}, force=yes, rscale=auto] $if(mainfont)$ \setmainfont[$mainfont$] $endif$ $if(sansfont)$ \setsansfont[$sansfont$][rscale=auto] $endif$ $if(monofont)$ \setmonofont[$monofont$][features=none, rscale=auto] $endif$ $if(mathfont)$ \setmathfont[$mathfont$][rscale=auto] $endif$ \setupwhitespace[$if(whitespace)$$whitespace$$else$medium$endif$] $if(indenting)$ \setupindenting[$for(indenting)$$indenting$$sep$,$endfor$] $endif$ $if(interlinespace)$ \setupinterlinespace[$for(interlinespace)$$interlinespace$$sep$,$endfor$] $endif$ \setuphead[chapter] [style=\tfd,header=empty] \setuphead[section] [style=\tfc] \setuphead[subsection] [style=\tfb] \setuphead[subsubsection] [style=\bf] \setuphead[subsubsubsection] [style=\sc] \setuphead[subsubsubsubsection][style=\it] $if(headertext)$ \setupheadertexts$for(headertext)$[$headertext$]$endfor$ $endif$ $if(footertext)$ \setupfootertexts$for(footertext)$[$footertext$]$endfor$ $endif$ $if(number-sections)$ $else$ \setuphead[chapter, section, subsection, subsubsection, subsubsubsection, subsubsubsubsection][number=no] $endif$ \definedescription [description] [headstyle=bold, style=normal, location=hanging, width=broad, margin=1cm, alternative=hanging] \setupitemize[autointro] % prevent orphan list intro \setupitemize[indentnext=no] \setupfloat[figure][default={here,nonumber}] \setupfloat[table][default={here,nonumber}] \setupthinrules[width=15em] % width of horizontal rules $for(header-includes)$ $header-includes$ $endfor$ \starttext $if(title)$ \startalignment[middle] {\tfd $title$} $if(subtitle)$ \smallskip {\tfa $subtitle$} $endif$ $if(author)$ \smallskip {\tfa $for(author)$$author$$sep$\crlf $endfor$} $endif$ $if(date)$ \smallskip {\tfa $date$} $endif$ \bigskip \stopalignment $endif$ $if(abstract)$ \midaligned{\it Abstract} \startnarrower[2*middle] $abstract$ \stopnarrower \blank[big] $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ \completecontent $endif$ $if(lot)$ \completelistoftables $endif$ $if(lof)$ \completelistoffigures $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ \stoptext pandoc-1.16.0.2~dfsg/data/templates/default.html0000644000000000000000000000305512645626061020177 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$ $for(author)$

                    $author$

                    $endfor$ $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.epub0000644000000000000000000000247212645626061020170 0ustar rootroot $pagetitle$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $for(header-includes)$ $header-includes$ $endfor$ $if(titlepage)$ $for(title)$ $if(title.text)$

                    $title.text$

                    $else$

                    $title$

                    $endif$ $endfor$ $if(subtitle)$

                    $subtitle$

                    $endif$ $for(author)$

                    $author$

                    $endfor$ $for(creator)$

                    $creator.text$

                    $endfor$ $if(publisher)$

                    $publisher$

                    $endif$ $if(date)$

                    $date$

                    $endif$ $if(rights)$
                    $rights$
                    $endif$ $else$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ $endif$ pandoc-1.16.0.2~dfsg/data/templates/default.man0000644000000000000000000000100012645626061017772 0ustar rootroot$if(has-tables)$ .\"t $endif$ $if(pandoc-version)$ .\" Automatically generated by Pandoc $pandoc-version$ .\" $endif$ $if(adjusting)$ .ad $adjusting$ $endif$ .TH "$title$" "$section$" "$date$" "$footer$" "$header$" $if(hyphenate)$ .hy $else$ .nh \" Turn off hyphenation by default. $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ $if(author)$ .SH AUTHORS $for(author)$$author$$sep$; $endfor$. $endif$ pandoc-1.16.0.2~dfsg/data/templates/default.slideous0000644000000000000000000000533612645626061021066 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(duration)$ $endif$ $for(include-before)$ $include-before$ $endfor$
                    of {$$slidecount} ½ {$$title}, {$$author}
                    $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$

                    $for(author)$$author$$sep$
                    $endfor$

                    $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.textile0000644000000000000000000000014712645626061020710 0ustar rootroot$for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.latex0000644000000000000000000001533212645626061020351 0ustar rootroot\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$babel-lang$,$endif$$if(papersize)$$papersize$paper,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} $if(fontfamily)$ \usepackage[$for(fontfamilyoptions)$$fontfamilyoptions$$sep$,$endfor$]{$fontfamily$} $else$ \usepackage{lmodern} $endif$ $if(linestretch)$ \usepackage{setspace} \setstretch{$linestretch$} $endif$ \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[$if(fontenc)$$fontenc$$else$T1$endif$]{fontenc} \usepackage[utf8]{inputenc} $if(euro)$ \usepackage{eurosym} $endif$ \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} $if(euro)$ \newcommand{\euro}{€} $endif$ $if(mainfont)$ \setmainfont[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$} $endif$ $if(sansfont)$ \setsansfont[$for(sansfontoptions)$$sansfontoptions$$sep$,$endfor$]{$sansfont$} $endif$ $if(monofont)$ \setmonofont[Mapping=tex-ansi$if(monofontoptions)$,$for(monofontoptions)$$monofontoptions$$sep$,$endfor$$endif$]{$monofont$} $endif$ $if(mathfont)$ \setmathfont(Digits,Latin,Greek)[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} $endif$ $if(CJKmainfont)$ \usepackage{xeCJK} \setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$} $endif$ \fi % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} $if(geometry)$ \usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry} $endif$ \usepackage{hyperref} $if(colorlinks)$ \PassOptionsToPackage{usenames,dvipsnames}{color} % color is loaded by hyperref $endif$ \hypersetup{unicode=true, $if(title-meta)$ pdftitle={$title-meta$}, $endif$ $if(author-meta)$ pdfauthor={$author-meta$}, $endif$ $if(keywords)$ pdfkeywords={$for(keywords)$$keywords$$sep$; $endfor$}, $endif$ $if(colorlinks)$ colorlinks=true, linkcolor=$if(linkcolor)$$linkcolor$$else$Maroon$endif$, citecolor=$if(citecolor)$$citecolor$$else$Blue$endif$, urlcolor=$if(urlcolor)$$urlcolor$$else$Blue$endif$, $else$ pdfborder={0 0 0}, $endif$ breaklinks=true} \urlstyle{same} % don't use monospace font for urls $if(lang)$ \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[shorthands=off,$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} $if(babel-newcommands)$ $babel-newcommands$ $endif$ \else \usepackage{polyglossia} \setmainlanguage[$polyglossia-lang.options$]{$polyglossia-lang.name$} $for(polyglossia-otherlangs)$ \setotherlanguage[$polyglossia-otherlangs.options$]{$polyglossia-otherlangs.name$} $endfor$ \fi $endif$ $if(natbib)$ \usepackage{natbib} \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ \usepackage$if(biblio-style)$[style=$biblio-style$]$endif${biblatex} $if(biblatexoptions)$\ExecuteBibliographyOptions{$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$}$endif$ $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ $endif$ $if(listings)$ \usepackage{listings} $endif$ $if(lhs)$ \lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{} $endif$ $if(highlighting-macros)$ $highlighting-macros$ $endif$ $if(verbatim-in-note)$ \usepackage{fancyvrb} \VerbatimFootnotes % allows verbatim text in footnotes $endif$ $if(tables)$ \usepackage{longtable,booktabs} $endif$ $if(graphics)$ \usepackage{graphicx,grffile} \makeatletter \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} \def\maxheight{\ifdim\Gin@nat@height>\textheight\textheight\else\Gin@nat@height\fi} \makeatother % Scale images if necessary, so that they will not overflow the page % margins by default, and it is still possible to overwrite the defaults % using explicit options in \includegraphics[width, height, ...]{} \setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} $endif$ $if(links-as-notes)$ % Make links footnotes instead of hotlinks: \renewcommand{\href}[2]{#2\footnote{\url{#1}}} $endif$ $if(strikeout)$ \usepackage[normalem]{ulem} % avoid problems with \sout in headers with hyperref: \pdfstringdefDisableCommands{\renewcommand{\sout}{}} $endif$ $if(indent)$ $else$ \IfFileExists{parskip.sty}{% \usepackage{parskip} }{% else \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} } $endif$ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} $if(numbersections)$ \setcounter{secnumdepth}{5} $else$ \setcounter{secnumdepth}{0} $endif$ $if(subparagraph)$ $else$ % Redefines (sub)paragraphs to behave more like sections \ifx\paragraph\undefined\else \let\oldparagraph\paragraph \renewcommand{\paragraph}[1]{\oldparagraph{#1}\mbox{}} \fi \ifx\subparagraph\undefined\else \let\oldsubparagraph\subparagraph \renewcommand{\subparagraph}[1]{\oldsubparagraph{#1}\mbox{}} \fi $endif$ $if(dir)$ \ifxetex % load bidi as late as possible as it modifies e.g. graphicx $if(latex-dir-rtl)$ \usepackage[RTLdocument]{bidi} $else$ \usepackage{bidi} $endif$ \fi \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \TeXXeTstate=1 \newcommand{\RL}[1]{\beginR #1\endR} \newcommand{\LR}[1]{\beginL #1\endL} \newenvironment{RTL}{\beginR}{\endR} \newenvironment{LTR}{\beginL}{\endL} \fi $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(title)$ \title{$title$$if(thanks)$\thanks{$thanks$}$endif$} $endif$ $if(subtitle)$ \providecommand{\subtitle}[1]{} \subtitle{$subtitle$} $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} $endif$ \date{$date$} \begin{document} $if(title)$ \maketitle $endif$ $if(abstract)$ \begin{abstract} $abstract$ \end{abstract} $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ { $if(colorlinks)$ \hypersetup{linkcolor=$if(toccolor)$$toccolor$$else$black$endif$} $endif$ \setcounter{tocdepth}{$toc-depth$} \tableofcontents } $endif$ $if(lot)$ \listoftables $endif$ $if(lof)$ \listoffigures $endif$ $body$ $if(natbib)$ $if(bibliography)$ $if(biblio-title)$ $if(book-class)$ \renewcommand\bibname{$biblio-title$} $else$ \renewcommand\refname{$biblio-title$} $endif$ $endif$ \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} $endif$ $endif$ $if(biblatex)$ \printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$ $endif$ $for(include-after)$ $include-after$ $endfor$ \end{document} pandoc-1.16.0.2~dfsg/data/templates/default.texinfo0000644000000000000000000000137312645626061020710 0ustar rootroot\input texinfo @documentencoding UTF-8 $for(header-includes)$ $header-includes$ $endfor$ $if(strikeout)$ @macro textstrikeout{text} ~~\text\~~ @end macro $endif$ $if(subscript)$ @macro textsubscript{text} @iftex @textsubscript{\text\} @end iftex @ifnottex _@{\text\@} @end ifnottex @end macro $endif$ $if(superscript)$ @macro textsuperscript{text} @iftex @textsuperscript{\text\} @end iftex @ifnottex ^@{\text\@} @end ifnottex @end macro $endif$ @ifnottex @paragraphindent 0 @end ifnottex $if(titlepage)$ @titlepage @title $title$ $for(author)$ @author $author$ $endfor$ $if(date)$ $date$ $endif$ @end titlepage $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ @contents $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ @bye pandoc-1.16.0.2~dfsg/data/templates/default.dokuwiki0000644000000000000000000000020212645626061021050 0ustar rootroot$for(include-before)$ $include-before$ $endfor$ $if(toc)$ __TOC__ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.revealjs0000644000000000000000000001601712645626061021050 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $if(theme)$ $else$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$
                    $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$ $for(author)$

                    $author$

                    $endfor$ $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $body$
                    $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.icml0000644000000000000000000000347312645626061020163 0ustar rootroot $charStyles$ LeftAlign . 10 $parStyles$ $body$ $hyperlinks$ pandoc-1.16.0.2~dfsg/data/templates/default.mediawiki0000644000000000000000000000020212645626061021165 0ustar rootroot$for(include-before)$ $include-before$ $endfor$ $if(toc)$ __TOC__ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.s50000644000000000000000000000475512645626061017572 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$
                    $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$ $if(author)$

                    $for(author)$$author$$sep$
                    $endfor$

                    $endif$ $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $body$ $for(include-after)$ $include-after$ $endfor$
                    pandoc-1.16.0.2~dfsg/data/templates/default.beamer0000644000000000000000000001462012645626061020466 0ustar rootroot\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$babel-lang$,$endif$$if(handout)$handout,$endif$$if(beamer)$ignorenonframetext,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} \setbeamertemplate{caption}[numbered] \setbeamertemplate{caption label separator}{: } \setbeamercolor{caption name}{fg=normal text.fg} \beamertemplatenavigationsymbols$if(navigation)$$navigation$$else$empty$endif$ $if(fontfamily)$ \usepackage[$for(fontfamilyoptions)$$fontfamilyoptions$$sep$,$endfor$]{$fontfamily$} $else$ \usepackage{lmodern} $endif$ \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[$if(fontenc)$$fontenc$$else$T1$endif$]{fontenc} \usepackage[utf8]{inputenc} $if(euro)$ \usepackage{eurosym} $endif$ \else % if luatex or xelatex \ifxetex \usepackage{mathspec} \else \usepackage{fontspec} \fi \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} $if(euro)$ \newcommand{\euro}{€} $endif$ $if(mainfont)$ \setmainfont[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$} $endif$ $if(sansfont)$ \setsansfont[$for(sansfontoptions)$$sansfontoptions$$sep$,$endfor$]{$sansfont$} $endif$ $if(monofont)$ \setmonofont[Mapping=tex-ansi$if(monofontoptions)$,$for(monofontoptions)$$monofontoptions$$sep$,$endfor$$endif$]{$monofont$} $endif$ $if(mathfont)$ \setmathfont(Digits,Latin,Greek)[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} $endif$ $if(CJKmainfont)$ \usepackage{xeCJK} \setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$} $endif$ \fi $if(theme)$ \usetheme{$theme$} $endif$ $if(colortheme)$ \usecolortheme{$colortheme$} $endif$ $if(fonttheme)$ \usefonttheme{$fonttheme$} $endif$ $if(mainfont)$ \usefonttheme{serif} % use mainfont rather than sansfont for slide text $endif$ $if(innertheme)$ \useinnertheme{$innertheme$} $endif$ $if(outertheme)$ \useoutertheme{$outertheme$} $endif$ % use upquote if available, for straight quotes in verbatim environments \IfFileExists{upquote.sty}{\usepackage{upquote}}{} % use microtype if available \IfFileExists{microtype.sty}{% \usepackage{microtype} \UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts }{} $if(lang)$ \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[shorthands=off,$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} $if(babel-newcommands)$ $babel-newcommands$ $endif$ \else \usepackage{polyglossia} \setmainlanguage[$polyglossia-lang.options$]{$polyglossia-lang.name$} $for(polyglossia-otherlangs)$ \setotherlanguage[$polyglossia-otherlangs.options$]{$polyglossia-otherlangs.name$} $endfor$ \fi $endif$ \newif\ifbibliography $if(natbib)$ \usepackage{natbib} \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ \usepackage$if(biblio-style)$[style=$biblio-style$]$endif${biblatex} $if(biblatexoptions)$\ExecuteBibliographyOptions{$for(biblatexoptions)$$biblatexoptions$$sep$,$endfor$}$endif$ $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ $endif$ $if(listings)$ \usepackage{listings} $endif$ $if(lhs)$ \lstnewenvironment{code}{\lstset{language=Haskell,basicstyle=\small\ttfamily}}{} $endif$ $if(highlighting-macros)$ $highlighting-macros$ $endif$ $if(verbatim-in-note)$ \usepackage{fancyvrb} \VerbatimFootnotes % allows verbatim text in footnotes $endif$ $if(tables)$ \usepackage{longtable,booktabs} \usepackage{caption} % These lines are needed to make table captions work with longtable: \makeatletter \def\fnum@table{\tablename~\thetable} \makeatother $endif$ $if(graphics)$ \usepackage{graphicx,grffile} \makeatletter \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth\else\Gin@nat@width\fi} \def\maxheight{\ifdim\Gin@nat@height>\textheight0.8\textheight\else\Gin@nat@height\fi} \makeatother % Scale images if necessary, so that they will not overflow the page % margins by default, and it is still possible to overwrite the defaults % using explicit options in \includegraphics[width, height, ...]{} \setkeys{Gin}{width=\maxwidth,height=\maxheight,keepaspectratio} $endif$ % Prevent slide breaks in the middle of a paragraph: \widowpenalties 1 10000 \raggedbottom $if(section-titles)$ \AtBeginPart{ \let\insertpartnumber\relax \let\partname\relax \frame{\partpage} } \AtBeginSection{ \ifbibliography \else \let\insertsectionnumber\relax \let\sectionname\relax \frame{\sectionpage} \fi } \AtBeginSubsection{ \let\insertsubsectionnumber\relax \let\subsectionname\relax \frame{\subsectionpage} } $endif$ $if(links-as-notes)$ % Make links footnotes instead of hotlinks: \renewcommand{\href}[2]{#2\footnote{\url{#1}}} $endif$ $if(strikeout)$ \usepackage[normalem]{ulem} % avoid problems with \sout in headers with hyperref: \pdfstringdefDisableCommands{\renewcommand{\sout}{}} $endif$ \setlength{\emergencystretch}{3em} % prevent overfull lines \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} $if(numbersections)$ \setcounter{secnumdepth}{5} $else$ \setcounter{secnumdepth}{0} $endif$ $if(dir)$ \ifxetex % load bidi as late as possible as it modifies e.g. graphicx $if(latex-dir-rtl)$ \usepackage[RTLdocument]{bidi} $else$ \usepackage{bidi} $endif$ \fi \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \TeXXeTstate=1 \newcommand{\RL}[1]{\beginR #1\endR} \newcommand{\LR}[1]{\beginL #1\endL} \newenvironment{RTL}{\beginR}{\endR} \newenvironment{LTR}{\beginL}{\endL} \fi $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(title)$ \title{$title$} $endif$ $if(subtitle)$ \subtitle{$subtitle$} $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} $endif$ \date{$date$} \begin{document} $if(title)$ \frame{\titlepage} $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ \begin{frame} \tableofcontents[hideallsubsections] \end{frame} $endif$ $body$ $if(natbib)$ $if(bibliography)$ $if(biblio-title)$ $if(book-class)$ \renewcommand\bibname{$biblio-title$} $else$ \renewcommand\refname{$biblio-title$} $endif$ $endif$ \begin{frame}[allowframebreaks]{$biblio-title$} \bibliographytrue \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} \end{frame} $endif$ $endif$ $if(biblatex)$ \begin{frame}[allowframebreaks]{$biblio-title$} \bibliographytrue \printbibliography[heading=none] \end{frame} $endif$ $for(include-after)$ $include-after$ $endfor$ \end{document} pandoc-1.16.0.2~dfsg/data/templates/default.rst0000644000000000000000000000076512645626061020050 0ustar rootroot$if(title)$ $title$ $endif$ $for(author)$ :Author: $author$ $endfor$ $if(date)$ :Date: $date$ $endif$ $if(author)$ $else$ $if(date)$ $endif$ $endif$ $if(math)$ .. role:: math(raw) :format: html latex .. $endif$ $if(rawtex)$ .. role:: raw-latex(raw) :format: latex .. $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ .. contents:: :depth: $toc-depth$ .. $endif$ $for(header-includes)$ $header-includes$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.org0000644000000000000000000000044712645626061020024 0ustar rootroot$if(title)$ #+TITLE: $title$ $endif$ $if(author)$ #+AUTHOR: $for(author)$$author$$sep$; $endfor$ $endif$ $if(date)$ #+DATE: $date$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.plain0000644000000000000000000000033212645626061020331 0ustar rootroot$if(titleblock)$ $titleblock$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ $toc$ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.dzslides0000644000000000000000000001031612645626061021052 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $if(css)$ $for(css)$ $endfor$ $else$ $endif$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$
                    $if(author)$$for(author)$$author$$sep$, $endfor$$endif$ · $if(date)$$date$$endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ $dzslides-core$ pandoc-1.16.0.2~dfsg/data/templates/default.html50000644000000000000000000000274412645626061020270 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$ $for(author)$

                    $author$

                    $endfor$ $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$ $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.slidy0000644000000000000000000000370212645626061020356 0ustar rootroot $for(author-meta)$ $endfor$ $if(date-meta)$ $endif$ $if(keywords)$ $endif$ $if(title-prefix)$$title-prefix$ – $endif$$pagetitle$ $if(quotes)$ $endif$ $if(highlighting-css)$ $endif$ $for(css)$ $endfor$ $if(math)$ $math$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(duration)$ $endif$ $for(include-before)$ $include-before$ $endfor$ $if(title)$

                    $title$

                    $if(subtitle)$

                    $subtitle$

                    $endif$ $if(author)$

                    $for(author)$$author$$sep$
                    $endfor$

                    $endif$ $if(date)$

                    $date$

                    $endif$
                    $endif$ $if(toc)$
                    $toc$
                    $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.asciidoc0000644000000000000000000000065512645626061021014 0ustar rootroot$if(titleblock)$ $title$ $if(author)$ $for(author)$$author$$sep$; $endfor$ $endif$ $if(date)$ $date$ $endif$ $if(keywords)$ :keywords: $for(keywords)$$keywords$$sep$, $endfor$ $endif$ $if(toc)$ :toc: $endif$ $endif$ $if(abstract)$ [abstract] == Abstract $abstract$ $endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ pandoc-1.16.0.2~dfsg/data/templates/default.opml0000644000000000000000000000036412645626061020202 0ustar rootroot $title$ $date$ $for(author)$$author$$sep$; $endfor$ $body$ pandoc-1.16.0.2~dfsg/data/templates/default.docbook0000644000000000000000000000131712645626061020652 0ustar rootroot $if(mathml)$ $else$ $endif$
                    $title$ $if(author)$ $for(author)$ $author$ $endfor$ $endif$ $if(date)$ $date$ $endif$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$
                    pandoc-1.16.0.2~dfsg/data/templates/default.haddock0000644000000000000000000000000712645626061020622 0ustar rootroot$body$ pandoc-1.16.0.2~dfsg/data/templates/default.rtf0000644000000000000000000000111212645626061020016 0ustar rootroot{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}} {\colortbl;\red255\green0\blue0;\red0\green0\blue255;} \widowctrl\hyphauto $for(header-includes)$ $header-includes$ $endfor$ $if(title)$ {\pard \qc \f0 \sa180 \li0 \fi0 \b \fs36 $title$\par} $endif$ $for(author)$ {\pard \qc \f0 \sa180 \li0 \fi0 $author$\par} $endfor$ $if(date)$ {\pard \qc \f0 \sa180 \li0 \fi0 $date$\par} $endif$ $if(spacer)$ {\pard \ql \f0 \sa180 \li0 \fi0 \par} $endif$ $if(toc)$ $toc$ $endif$ $for(include-before)$ $include-before$ $endfor$ $body$ $for(include-after)$ $include-after$ $endfor$ } pandoc-1.16.0.2~dfsg/data/bash_completion.tpl0000644000000000000000000000330412645626061017553 0ustar rootroot#!/bin/bash # This script enables bash autocompletion for pandoc. To enable # bash completion, add this to your .bashrc: # eval "$(pandoc --bash-completion)" _pandoc() { local cur prev opts lastc informats outformats datadir COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" # These should be filled in by pandoc: opts="%s" informats="%s" outformats="%s" datadir="%s" case "${prev}" in --from|-f|--read|-r) COMPREPLY=( $(compgen -W "${informats}" -- ${cur}) ) return 0 ;; --to|-t|--write|-w|-D|--print-default-template) COMPREPLY=( $(compgen -W "${outformats}" -- ${cur}) ) return 0 ;; --email-obfuscation) COMPREPLY=( $(compgen -W "references javascript none" -- ${cur}) ) return 0 ;; --latex-engine) COMPREPLY=( $(compgen -W "pdflatex lualatex xelatex" -- ${cur}) ) return 0 ;; --print-default-data-file) COMPREPLY=( $(compgen -W "reference.odt reference.docx $(find ${datadir} | sed -e 's/.*\/data\///')" -- ${cur}) ) return 0 ;; --highlight-style) COMPREPLY=( $(compgen -W "pygments tango espresso zenburn kate monochrome haddock" -- ${cur}) ) return 0 ;; *) ;; esac case "${cur}" in -*) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; *) COMPREPLY=( $(compgen -f ${cur}) ) return 0 ;; esac } complete -F _pandoc pandoc pandoc-1.16.0.2~dfsg/data/epub.css0000644000000000000000000000110012645626061015321 0ustar rootroot/* This defines styles and classes used in the book */ body { margin: 5%; text-align: justify; font-size: medium; } code { font-family: monospace; } h1 { text-align: left; } h2 { text-align: left; } h3 { text-align: left; } h4 { text-align: left; } h5 { text-align: left; } h6 { text-align: left; } h1.title { } h2.author { } h3.date { } ol.toc { padding: 0; margin-left: 1em; } ol.toc li { list-style-type: none; margin: 0; padding: 0; } a.footnoteRef { vertical-align: super; } em, em em em, em em em em em { font-style: italic;} em em, em em em em { font-style: normal; } pandoc-1.16.0.2~dfsg/data/dzslides/0000755000000000000000000000000012645626061015505 5ustar rootrootpandoc-1.16.0.2~dfsg/data/dzslides/template.html0000644000000000000000000004456012645626061020217 0ustar rootroot The Title Of Your Presentation

                    My Presentation

                    by John Doe

                    Some random text: But I've never been to the moon! You can see how I lived before I met you. Also Zoidberg. I could if you hadn't turned on the light and shut off my stereo.

                    An incremental list

                    • Item 1
                    • Item 2
                    • Item 3
                      • Item 3.1
                      • Item 3.2
                    Some notes. They are only visible using onstage shell.
                    Who's brave enough to fly into something we all keep calling a death sphere?

                    In the onstage shell, notes scroll rather than overflow:

                    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ac dui eu est feugiat lacinia sit amet nec leo. Mauris eu ipsum leo. Nulla mi odio, cursus sed sollicitudin non, fringilla id magna. Suspendisse sit amet posuere elit. Maecenas iaculis, turpis a placerat imperdiet, libero lorem feugiat nisi, nec tincidunt diam nibh sit amet massa. Vestibulum quis adipiscing tellus. Maecenas sollicitudin sodales pulvinar. Donec dui ipsum, bibendum facilisis consequat interdum, tempus ut mauris. Aliquam ut dolor nec odio scelerisque bibendum quis in neque. Aliquam dui dui, pulvinar quis fermentum quis, gravida eu augue. Nunc tristique dolor a urna pulvinar bibendum. Curabitur mollis cursus neque, in scelerisque metus porta non. Donec tempor enim in nibh vestibulum et convallis nisi malesuada. Duis ut lectus sed metus venenatis porttitor id pharetra quam. Suspendisse sapien turpis, ornare in molestie et, gravida eget turpis.

                    Part two

                    An image
                    Kittens are so cute!
                    A video

                    End!

                    pandoc-1.16.0.2~dfsg/data/MathMLinHTML.js0000644000000000000000000000476112645626061016370 0ustar rootroot/* March 19, 2004 MathHTML (c) Peter Jipsen http://www.chapman.edu/~jipsen Released under the GNU General Public License version 2 or later. See the GNU General Public License (at http://www.gnu.org/copyleft/gpl.html) for more details. */ function convertMath(node) {// for Gecko if (node.nodeType==1) { var newnode = document.createElementNS("http://www.w3.org/1998/Math/MathML", node.nodeName.toLowerCase()); for(var i=0; i < node.attributes.length; i++) newnode.setAttribute(node.attributes[i].nodeName, node.attributes[i].value); for (var i=0; i"); document.write(""); } if(typeof window.addEventListener != 'undefined'){ window.addEventListener('load', convert, false); } if(typeof window.attachEvent != 'undefined') { window.attachEvent('onload', convert); } pandoc-1.16.0.2~dfsg/data/docx/0000755000000000000000000000000012645626061014621 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/word/0000755000000000000000000000000012645626061015574 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/word/styles.xml0000644000000000000000000003001212645626061017635 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/settings.xml0000644000000000000000000000411712645626061020161 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/document.xml0000644000000000000000000000132112645626061020131 0ustar rootroot Hello world. pandoc-1.16.0.2~dfsg/data/docx/word/theme/0000755000000000000000000000000012645626061016676 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/word/theme/theme1.xml0000644000000000000000000001677212645626061020620 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/fontTable.xml0000644000000000000000000000467612645626061020251 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/_rels/0000755000000000000000000000000012645626061016700 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/word/_rels/footnotes.xml.rels0000644000000000000000000000017512645626061022411 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/_rels/document.xml.rels0000644000000000000000000000206112645626061022203 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/numbering.xml0000644000000000000000000000331412645626061020305 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/footnotes.xml0000644000000000000000000000163512645626061020343 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/word/webSettings.xml0000644000000000000000000000030712645626061020614 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/docProps/0000755000000000000000000000000012645626061016412 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/docProps/app.xml0000644000000000000000000000132412645626061017714 0ustar rootroot 83 false false 12 12.0000 false Microsoft Word 12.0.0 583 0 6 false 475 8 1 pandoc-1.16.0.2~dfsg/data/docx/docProps/core.xml0000644000000000000000000000061112645626061020062 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/_rels/0000755000000000000000000000000012645626061015725 5ustar rootrootpandoc-1.16.0.2~dfsg/data/docx/_rels/.rels0000644000000000000000000000107712645626061016700 0ustar rootroot pandoc-1.16.0.2~dfsg/data/docx/[Content_Types].xml0000644000000000000000000000304512645626061020433 0ustar rootroot pandoc-1.16.0.2~dfsg/README0000644000000000000000000041430212645626061013637 0ustar rootroot% Pandoc User's Guide % John MacFarlane % January 12, 2016 Synopsis ======== `pandoc` [*options*] [*input-file*]... Description =========== 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 [Markdown], [CommonMark], [PHP Markdown Extra], [GitHub-Flavored Markdown], and (subsets of) [Textile], [reStructuredText], [HTML], [LaTeX], [MediaWiki markup], [TWiki markup], [Haddock markup], [OPML], [Emacs Org mode], [DocBook], [txt2tags], [EPUB], [ODT] and [Word docx]; and it can write plain text, [Markdown], [CommonMark], [PHP Markdown Extra], [GitHub-Flavored Markdown], [reStructuredText], [XHTML], [HTML5], [LaTeX] (including [`beamer`] slide shows), [ConTeXt], [RTF], [OPML], [DocBook], [OpenDocument], [ODT], [Word docx], [GNU Texinfo], [MediaWiki markup], [DokuWiki markup], [Haddock markup], [EPUB] (v2 or v3), [FictionBook2], [Textile], [groff man] pages, [Emacs Org mode], [AsciiDoc], [InDesign ICML], and [Slidy], [Slideous], [DZSlides], [reveal.js] or [S5] HTML slide shows. It can also produce [PDF] output on systems where LaTeX, ConTeXt, or `wkhtmltopdf` is installed. Pandoc's enhanced version of Markdown includes syntax for [footnotes], [tables], flexible [ordered lists], [definition lists], [fenced code blocks], [superscripts and subscripts], [strikeout], [metadata blocks], automatic tables of contents, embedded LaTeX [math], [citations], and [Markdown inside HTML block elements][Extension: `markdown_in_html_blocks`]. (These enhancements, described below under [Pandoc's Markdown], can be disabled using the `markdown_strict` input or output format.) In contrast to most existing tools for converting Markdown to HTML, which use regex substitutions, pandoc has a modular design: it consists of a set of readers, which parse text in a given format and produce a native representation of the document, and a set of writers, which convert this native representation into a target format. Thus, adding an input or output format requires only adding a reader or writer. Because pandoc's intermediate representation of a document is less expressive than many of the formats it converts between, one should not expect perfect conversions between every format and every other. Pandoc attempts to preserve the structural elements of a document, but not formatting details such as margin size. And some document elements, such as complex tables, may not fit into pandoc's simple document model. While conversions from pandoc's Markdown to all formats aspire to be perfect, conversions from formats more expressive than pandoc's Markdown can be expected to be lossy. [Markdown]: http://daringfireball.net/projects/markdown/ [CommonMark]: http://commonmark.org [PHP Markdown Extra]: https://michelf.ca/projects/php-markdown/extra/ [GitHub-Flavored Markdown]: https://help.github.com/articles/github-flavored-markdown/ [reStructuredText]: http://docutils.sourceforge.net/docs/ref/rst/introduction.html [S5]: http://meyerweb.com/eric/tools/s5/ [Slidy]: http://www.w3.org/Talks/Tools/Slidy/ [Slideous]: http://goessner.net/articles/slideous/ [HTML]: http://www.w3.org/html/ [HTML5]: http://www.w3.org/TR/html5/ [XHTML]: http://www.w3.org/TR/xhtml1/ [LaTeX]: http://latex-project.org [`beamer`]: https://ctan.org/pkg/beamer [Beamer User's Guide]: http://ctan.math.utah.edu/ctan/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf [ConTeXt]: http://contextgarden.net/ [RTF]: http://en.wikipedia.org/wiki/Rich_Text_Format [DocBook]: http://docbook.org [txt2tags]: http://txt2tags.org [EPUB]: http://idpf.org/epub [OPML]: http://dev.opml.org/spec2.html [OpenDocument]: http://opendocument.xml.org [ODT]: http://en.wikipedia.org/wiki/OpenDocument [Textile]: http://redcloth.org/textile [MediaWiki markup]: https://www.mediawiki.org/wiki/Help:Formatting [DokuWiki markup]: https://www.dokuwiki.org/dokuwiki [TWiki markup]: http://twiki.org/cgi-bin/view/TWiki/TextFormattingRules [Haddock markup]: https://www.haskell.org/haddock/doc/html/ch03s08.html [groff man]: http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man7/groff_man.7.html [Haskell]: https://www.haskell.org [GNU Texinfo]: http://www.gnu.org/software/texinfo/ [Emacs Org mode]: http://orgmode.org [AsciiDoc]: http://www.methods.co.nz/asciidoc/ [DZSlides]: http://paulrouget.com/dzslides/ [Word docx]: http://www.microsoft.com/interop/openup/openxml/default.aspx [PDF]: https://www.adobe.com/pdf/ [reveal.js]: http://lab.hakim.se/reveal-js/ [FictionBook2]: http://www.fictionbook.org/index.php/Eng:XML_Schema_Fictionbook_2.1 [InDesign ICML]: https://www.adobe.com/content/dam/Adobe/en/devnet/indesign/cs55-docs/IDML/idml-specification.pdf Using `pandoc` -------------- 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 (though output to *stdout* is disabled for the `odt`, `docx`, `epub`, and `epub3` output formats). For output to a file, use the `-o` option: 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], below. Instead of a file, an absolute URI may be given. In this case pandoc will fetch the content using HTTP: pandoc -f html -t markdown http://www.fsf.org If multiple input files are given, `pandoc` will concatenate them all (with blank lines between them) before parsing. This feature is disabled for binary input formats such as `EPUB`, `odt`, and `docx`. The format of the input and output can be specified explicitly using command-line options. The input format can be specified using the `-r/--read` or `-f/--from` options, the output format using the `-w/--write` or `-t/--to` options. Thus, to convert `hello.txt` from Markdown to LaTeX, you could type: pandoc -f markdown -t latex hello.txt To convert `hello.html` from HTML to Markdown: pandoc -f html -t markdown hello.html Supported output formats are listed below under the `-t/--to` option. Supported input formats are listed below under the `-f/--from` option. Note that the `rst`, `textile`, `latex`, and `html` readers are not complete; there are some constructs that they do not parse. If the input or output format is not specified explicitly, `pandoc` will attempt to guess it from the extensions of the input and output filenames. Thus, for example, pandoc -o hello.tex hello.txt will convert `hello.txt` from Markdown to LaTeX. If no output file is specified (so that output goes to *stdout*), or if the output file's extension is unknown, the output format will default to HTML. If no input file is specified (so that input comes from *stdin*), or if the input files' extensions are unknown, the input format will be assumed to be Markdown unless explicitly specified. Pandoc 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 | 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. [`iconv`]: http://www.gnu.org/software/libiconv/ Creating a PDF -------------- To produce a PDF, specify an output file with a `.pdf` extension. By default, pandoc will use LaTeX to convert it to PDF: pandoc test.txt -o test.pdf Production of a PDF requires that a LaTeX engine be installed (see `--latex-engine`, below), and assumes that the following LaTeX packages are available: [`amsfonts`], [`amsmath`], [`lm`], [`ifxetex`], [`ifluatex`], [`eurosym`], [`listings`] (if the `--listings` option is used), [`fancyvrb`], [`longtable`], [`booktabs`], [`graphicx`] and [`grffile`] (if the document contains images), [`hyperref`], [`ulem`], [`geometry`] (with the `geometry` variable set), [`setspace`] (with `linestretch`), and [`babel`] (with `lang`). The use of `xelatex` or `lualatex` as the LaTeX engine requires [`fontspec`]; `xelatex` uses [`mathspec`], [`polyglossia`] (with `lang`), [`xecjk`], and [`bidi`] (with the `dir` variable set). The [`upquote`] and [`microtype`] packages are used if available, and [`csquotes`] will be used for [smart punctuation] if added to the template or included in any header file. The [`natbib`], [`biblatex`], [`bibtex`], and [`biber`] packages can optionally be used for [citation rendering]. These are included with all recent versions of [TeX Live]. Alternatively, pandoc can use ConTeXt or `wkhtmltopdf` to create a PDF. To do this, specify an output file with a `.pdf` extension, as before, but add `-t context` or `-t html5` to the command line. PDF output can be controlled using [variables for LaTeX] (if LaTeX is used) and [variables for ConTeXt] (if ConTeXt is used). If `wkhtmltopdf` is used, then the variables `margin-left`, `margin-right`, `margin-top`, `margin-bottom`, and `papersize` will affect the output, as will `--css`. [`amsfonts`]: https://ctan.org/pkg/amsfonts [`amsmath`]: https://ctan.org/pkg/amsmath [`lm`]: https://ctan.org/pkg/lm [`ifxetex`]: https://ctan.org/pkg/ifxetex [`ifluatex`]: https://ctan.org/pkg/ifluatex [`eurosym`]: https://ctan.org/pkg/eurosym [`listings`]: https://ctan.org/pkg/listings [`fancyvrb`]: https://ctan.org/pkg/fancyvrb [`longtable`]: https://ctan.org/pkg/longtable [`booktabs`]: https://ctan.org/pkg/booktabs [`graphicx`]: https://ctan.org/pkg/graphicx [`grffile`]: https://ctan.org/pkg/grffile [`geometry`]: https://ctan.org/pkg/geometry [`setspace`]: https://ctan.org/pkg/setspace [`xecjk`]: https://ctan.org/pkg/xecjk [`hyperref`]: https://ctan.org/pkg/hyperref [`ulem`]: https://ctan.org/pkg/ulem [`babel`]: https://ctan.org/pkg/babel [`bidi`]: https://ctan.org/pkg/bidi [`mathspec`]: https://ctan.org/pkg/mathspec [`polyglossia`]: https://ctan.org/pkg/polyglossia [`fontspec`]: https://ctan.org/pkg/fontspec [`upquote`]: https://ctan.org/pkg/upquote [`microtype`]: https://ctan.org/pkg/microtype [`csquotes`]: https://ctan.org/pkg/csquotes [`natbib`]: https://ctan.org/pkg/natbib [`biblatex`]: https://ctan.org/pkg/biblatex [`bibtex`]: https://ctan.org/pkg/bibtex [`biber`]: https://ctan.org/pkg/biber [TeX Live]: http://www.tug.org/texlive/ Options ======= General options --------------- `-f` *FORMAT*, `-r` *FORMAT*, `--from=`*FORMAT*, `--read=`*FORMAT* : Specify input format. *FORMAT* can be `native` (native Haskell), `json` (JSON version of native AST), `markdown` (pandoc's extended Markdown), `markdown_strict` (original unextended Markdown), `markdown_phpextra` (PHP Markdown Extra), `markdown_github` (GitHub-Flavored Markdown), `commonmark` (CommonMark Markdown), `textile` (Textile), `rst` (reStructuredText), `html` (HTML), `docbook` (DocBook), `t2t` (txt2tags), `docx` (docx), `odt` (ODT), `epub` (EPUB), `opml` (OPML), `org` (Emacs Org mode), `mediawiki` (MediaWiki markup), `twiki` (TWiki markup), `haddock` (Haddock markup), or `latex` (LaTeX). If `+lhs` is appended to `markdown`, `rst`, `latex`, or `html`, the input will be treated as literate Haskell source: see [Literate Haskell support], below. Markdown syntax extensions can be individually enabled or disabled by appending `+EXTENSION` or `-EXTENSION` to the format name. So, for example, `markdown_strict+footnotes+definition_lists` is strict Markdown with footnotes and definition lists enabled, and `markdown-pipe_tables+hard_line_breaks` is pandoc's Markdown without pipe tables and with hard line breaks. See [Pandoc's Markdown], below, for a list of extensions and their names. `-t` *FORMAT*, `-w` *FORMAT*, `--to=`*FORMAT*, `--write=`*FORMAT* : Specify output format. *FORMAT* can be `native` (native Haskell), `json` (JSON version of native AST), `plain` (plain text), `markdown` (pandoc's extended Markdown), `markdown_strict` (original unextended Markdown), `markdown_phpextra` (PHP Markdown Extra), `markdown_github` (GitHub-Flavored Markdown), `commonmark` (CommonMark Markdown), `rst` (reStructuredText), `html` (XHTML), `html5` (HTML5), `latex` (LaTeX), `beamer` (LaTeX beamer slide show), `context` (ConTeXt), `man` (groff man), `mediawiki` (MediaWiki markup), `dokuwiki` (DokuWiki markup), `textile` (Textile), `org` (Emacs Org mode), `texinfo` (GNU Texinfo), `opml` (OPML), `docbook` (DocBook), `opendocument` (OpenDocument), `odt` (OpenOffice text document), `docx` (Word docx), `haddock` (Haddock markup), `rtf` (rich text format), `epub` (EPUB v2 book), `epub3` (EPUB v3), `fb2` (FictionBook2 e-book), `asciidoc` (AsciiDoc), `icml` (InDesign ICML), `slidy` (Slidy HTML and javascript slide show), `slideous` (Slideous HTML and javascript slide show), `dzslides` (DZSlides HTML5 + javascript slide show), `revealjs` (reveal.js HTML5 + javascript slide show), `s5` (S5 HTML and javascript slide show), or the path of a custom lua writer (see [Custom writers], below). Note that `odt`, `epub`, and `epub3` output will not be directed to *stdout*; an output filename must be specified using the `-o/--output` option. If `+lhs` is appended to `markdown`, `rst`, `latex`, `beamer`, `html`, or `html5`, the output will be rendered as literate Haskell source: see [Literate Haskell support], below. Markdown syntax extensions can be individually enabled or disabled by appending `+EXTENSION` or `-EXTENSION` to the format name, as described above under `-f`. `-o` *FILE*, `--output=`*FILE* : Write output to *FILE* instead of *stdout*. If *FILE* is `-`, output will go to *stdout*. (Exception: if the output format is `odt`, `docx`, `epub`, or `epub3`, output to stdout is disabled.) `--data-dir=`*DIRECTORY* : Specify the user data directory to search for pandoc data files. If this option is not specified, the default user data directory will be used. This is, in Unix: $HOME/.pandoc in Windows XP: C:\Documents And Settings\USERNAME\Application Data\pandoc and in Windows Vista or later: C:\Users\USERNAME\AppData\Roaming\pandoc You can find the default user data directory on your system by looking at the output of `pandoc --version`. A `reference.odt`, `reference.docx`, `epub.css`, `templates`, `slidy`, `slideous`, or `s5` directory placed in this directory will override pandoc's normal defaults. `--bash-completion` : Generate a bash completion script. To enable bash completion with pandoc, add this to your `.bashrc`: eval "$(pandoc --bash-completion)" `--verbose` : Give verbose debugging output. Currently this only has an effect with PDF output. `-v`, `--version` : Print version. `-h`, `--help` : Show usage message. Reader options -------------- `-R`, `--parse-raw` : Parse untranslatable HTML codes and LaTeX environments as raw HTML or LaTeX, instead of ignoring them. Affects only HTML and LaTeX input. Raw HTML can be printed in Markdown, reStructuredText, HTML, Slidy, Slideous, DZSlides, reveal.js, and S5 output; raw LaTeX can be printed in Markdown, reStructuredText, LaTeX, and ConTeXt output. The default is for the readers to omit untranslatable HTML codes and LaTeX environments. (The LaTeX reader does pass through untranslatable LaTeX *commands*, even if `-R` is not specified.) `-S`, `--smart` : Produce typographically correct output, converting straight quotes to curly quotes, `---` to em-dashes, `--` to en-dashes, and `...` to ellipses. Nonbreaking spaces are inserted after certain abbreviations, such as "Mr." (Note: This option is selected automatically when the output format is `latex` or `context`, unless `--no-tex-ligatures` is used. It has no effect for `latex` input.) `--old-dashes` : Selects the pandoc <= 1.8.2.1 behavior for parsing smart dashes: `-` before a numeral is an en-dash, and `--` is an em-dash. This option is selected automatically for `textile` input. `--base-header-level=`*NUMBER* : Specify the base level for headers (defaults to 1). `--indented-code-classes=`*CLASSES* : Specify classes to use for indented code blocks--for example, `perl,numberLines` or `haskell`. Multiple classes may be separated by spaces or commas. `--default-image-extension=`*EXTENSION* : Specify a default extension to use when image paths/URLs have no extension. This allows you to use the same source for formats that require different kinds of images. Currently this option only affects the Markdown and LaTeX readers. `--filter=`*EXECUTABLE* : Specify an executable to be used as a filter transforming the pandoc AST after the input is parsed and before the output is written. The executable should read JSON from stdin and write JSON to stdout. The JSON must be formatted like pandoc's own JSON input and output. The name of the output format will be passed to the filter as the first argument. Hence, pandoc --filter ./caps.py -t latex is equivalent to pandoc -t json | ./caps.py latex | pandoc -f json -t latex The latter form may be useful for debugging filters. Filters may be written in any language. `Text.Pandoc.JSON` exports `toJSONFilter` to facilitate writing filters in Haskell. Those who would prefer to write filters in python can use the module [`pandocfilters`], installable from PyPI. There are also pandoc filter libraries in [PHP], [perl], and [javascript/node.js]. Note that the *EXECUTABLE* will be sought in the user's `PATH`, and not in the working directory, if no directory is provided. If you want to run a script in the working directory, preface the filename with `./`. `-M` *KEY*[`=`*VAL*], `--metadata=`*KEY*[`:`*VAL*] : Set the metadata field *KEY* to the value *VAL*. A value specified on the command line overrides a value specified in the document. Values will be parsed as YAML boolean or string values. If no value is specified, the value will be treated as Boolean true. Like `--variable`, `--metadata` causes template variables to be set. But unlike `--variable`, `--metadata` affects the metadata of the underlying document (which is accessible from filters and may be printed in some output formats). `--normalize` : Normalize the document after reading: merge adjacent `Str` or `Emph` elements, for example, and remove repeated `Space`s. `-p`, `--preserve-tabs` : Preserve tabs instead of converting them to spaces (the default). Note that this will only affect tabs in literal code spans and code blocks; tabs in regular text will be treated as spaces. `--tab-stop=`*NUMBER* : Specify the number of spaces per tab (default is 4). `--track-changes=accept`|`reject`|`all` : Specifies what to do with insertions and deletions produced by the MS Word "Track Changes" feature. `accept` (the default), inserts all insertions, and ignores all deletions. `reject` inserts all deletions and ignores insertions. `all` puts in both insertions and deletions, wrapped in spans with `insertion` and `deletion` classes, respectively. The author and time of change is included. `all` is useful for scripting: only accepting changes from a certain reviewer, say, or before a certain date. This option only affects the docx reader. `--extract-media=`*DIR* : Extract images and other media contained in a docx or epub container to the path *DIR*, creating it if necessary, and adjust the images references in the document so they point to the extracted files. This option only affects the docx and epub readers. [`pandocfilters`]: https://github.com/jgm/pandocfilters [PHP]: https://github.com/vinai/pandocfilters-php [perl]: https://metacpan.org/pod/Pandoc::Filter [javascript/node.js]: https://github.com/mvhenderson/pandoc-filter-node General writer options ---------------------- `-s`, `--standalone` : Produce output with an appropriate header and footer (e.g. a standalone HTML, LaTeX, or RTF file, not a fragment). This option is set automatically for `pdf`, `epub`, `epub3`, `fb2`, `docx`, and `odt` output. `--template=`*FILE* : Use *FILE* as a custom template for the generated document. Implies `--standalone`. See [Templates], below, for a description of template syntax. If no extension is specified, an extension corresponding to the writer will be added, so that `--template=special` looks for `special.html` for HTML output. If the template is not found, pandoc will search for it in the `templates` subdirectory of the user data directory (see `--data-dir`). If this option is not used, a default template appropriate for the output format will be used (see `-D/--print-default-template`). `-V` *KEY*[`=`*VAL*], `--variable=`*KEY*[`:`*VAL*] : Set the template variable *KEY* to the value *VAL* when rendering the document in standalone mode. This is generally only useful when the `--template` option is used to specify a custom template, since pandoc automatically sets the variables used in the default templates. If no *VAL* is specified, the key will be given the value `true`. `-D` *FORMAT*, `--print-default-template=`*FORMAT* : Print the system default template for an output *FORMAT*. (See `-t` for a list of possible *FORMAT*s.) Templates in the user data directory are ignored. `--print-default-data-file=`*FILE* : Print a system default data file. Files in the user data directory are ignored. `--dpi`=*NUMBER* : Specify the dpi (dots per inch) value for conversion from pixels to inch/centimeters and vice versa. The default is 96dpi. Technically, the correct term would be ppi (pixels per inch). `--wrap=[auto|none|preserve]` : Determine how text is wrapped in the output (the source code, not the rendered version). With `auto` (the default), pandoc will attempt to wrap lines to the column width specified by `--columns` (default 80). With `none`, pandoc will not wrap lines at all. With `preserve`, pandoc will attempt to preserve the wrapping from the source document (that is, where there are nonsemantic newlines in the source, there will be nonsemantic newlines in the output as well). `--no-wrap` : Deprecated synonym for `--wrap=none`. `--columns=`*NUMBER* : Specify length of lines in characters (for text wrapping). This affects only the generated source code, not the layout on the rendered page. `--toc`, `--table-of-contents` : Include an automatically generated table of contents (or, in the case of `latex`, `context`, and `rst`, an instruction to create one) in the output document. This option has no effect on `man`, `docbook`, `slidy`, `slideous`, `s5`, `docx`, or `odt` output. `--toc-depth=`*NUMBER* : Specify the number of section levels to include in the table of contents. The default is 3 (which means that level 1, 2, and 3 headers will be listed in the contents). `--no-highlight` : Disables syntax highlighting for code blocks and inlines, even when a language attribute is given. `--highlight-style=`*STYLE* : Specifies the coloring style to be used in highlighted source code. Options are `pygments` (the default), `kate`, `monochrome`, `espresso`, `zenburn`, `haddock`, and `tango`. For more information on syntax highlighting in pandoc, see [Syntax highlighting], below. `-H` *FILE*, `--include-in-header=`*FILE* : Include contents of *FILE*, verbatim, at the end of the header. This can be used, for example, to include special CSS or javascript in HTML documents. This option can be used repeatedly to include multiple files in the header. They will be included in the order specified. Implies `--standalone`. `-B` *FILE*, `--include-before-body=`*FILE* : Include contents of *FILE*, verbatim, at the beginning of the document body (e.g. after the `` tag in HTML, or the `\begin{document}` command in LaTeX). This can be used to include navigation bars or banners in HTML documents. This option can be used repeatedly to include multiple files. They will be included in the order specified. Implies `--standalone`. `-A` *FILE*, `--include-after-body=`*FILE* : Include contents of *FILE*, verbatim, at the end of the document body (before the `` tag in HTML, or the `\end{document}` command in LaTeX). This option can be be used repeatedly to include multiple files. They will be included in the order specified. Implies `--standalone`. Options affecting specific writers ---------------------------------- `--self-contained` : Produce a standalone HTML file with no external dependencies, using `data:` URIs to incorporate the contents of linked scripts, stylesheets, images, and videos. The resulting file should be "self-contained," in the sense that it needs no external files and no net access to be displayed properly by a browser. This option works only with HTML output formats, including `html`, `html5`, `html+lhs`, `html5+lhs`, `s5`, `slidy`, `slideous`, `dzslides`, and `revealjs`. Scripts, images, and stylesheets at absolute URLs will be downloaded; those at relative URLs will be sought relative to the working directory (if the first source file is local) or relative to the base URL (if the first source file is remote). Limitation: resources that are loaded dynamically through JavaScript cannot be incorporated; as a result, `--self-contained` does not work with `--mathjax`, and some advanced features (e.g. zoom or speaker notes) may not work in an offline "self-contained" `reveal.js` slide show. `--html-q-tags` : Use `` tags for quotes in HTML. `--ascii` : Use only ascii characters in output. Currently supported only for HTML output (which uses numerical entities instead of UTF-8 when this option is selected). `--reference-links` : Use reference-style links, rather than inline links, in writing Markdown or reStructuredText. By default inline links are used. `--atx-headers` : Use ATX-style headers in Markdown and asciidoc output. The default is to use setext-style headers for levels 1-2, and then ATX headers. `--chapters` : Treat top-level headers as chapters in LaTeX, ConTeXt, and DocBook output. When the LaTeX document class is set to `report`, `book`, or `memoir`, this option is implied. If `beamer` is the output format, top-level headers will become `\part{..}`. `-N`, `--number-sections` : Number section headings in LaTeX, ConTeXt, HTML, or EPUB output. By default, sections are not numbered. Sections with class `unnumbered` will never be numbered, even if `--number-sections` is specified. `--number-offset=`*NUMBER*[`,`*NUMBER*`,`*...*] : Offset for section headings in HTML output (ignored in other output formats). The first number is added to the section number for top-level headers, the second for second-level headers, and so on. So, for example, if you want the first top-level header in your document to be numbered "6", specify `--number-offset=5`. If your document starts with a level-2 header which you want to be numbered "1.5", specify `--number-offset=1,4`. Offsets are 0 by default. Implies `--number-sections`. `--no-tex-ligatures` : Do not use the TeX ligatures for quotation marks, apostrophes, and dashes (`` `...' ``, ` ``..'' `, `--`, `---`) when writing or reading LaTeX or ConTeXt. In reading LaTeX, parse the characters `` ` ``, `'`, and `-` literally, rather than parsing ligatures for quotation marks and dashes. In writing LaTeX or ConTeXt, print unicode quotation mark and dash characters literally, rather than converting them to the standard ASCII TeX ligatures. Note: normally `--smart` is selected automatically for LaTeX and ConTeXt output, but it must be specified explicitly if `--no-tex-ligatures` is selected. If you use literal curly quotes, dashes, and ellipses in your source, then you may want to use `--no-tex-ligatures` without `--smart`. `--listings` : Use the [`listings`] package for LaTeX code blocks `-i`, `--incremental` : Make list items in slide shows display incrementally (one by one). The default is for lists to be displayed all at once. `--slide-level=`*NUMBER* : Specifies that headers with the specified level create slides (for `beamer`, `s5`, `slidy`, `slideous`, `dzslides`). Headers above this level in the hierarchy are used to divide the slide show into sections; headers below this level create subheads within a slide. The default is to set the slide level based on the contents of the document; see [Structuring the slide show]. `--section-divs` : Wrap sections in `
                    ` tags (or `
                    ` tags in HTML5), and attach identifiers to the enclosing `
                    ` (or `
                    `) rather than the header itself. See [Header identifiers], below. `--email-obfuscation=none`|`javascript`|`references` : Specify a method for obfuscating `mailto:` links in HTML documents. `none` leaves `mailto:` links as they are. `javascript` obfuscates them using javascript. `references` obfuscates them by printing their letters as decimal or hexadecimal character references. The default is `javascript`. `--id-prefix=`*STRING* : Specify a prefix to be added to all automatically generated identifiers in HTML and DocBook output, and to footnote numbers in Markdown output. This is useful for preventing duplicate identifiers when generating fragments to be included in other pages. `-T` *STRING*, `--title-prefix=`*STRING* : Specify *STRING* as a prefix at the beginning of the title that appears in the HTML header (but not in the title as it appears at the beginning of the HTML body). Implies `--standalone`. `-c` *URL*, `--css=`*URL* : Link to a CSS style sheet. This option can be be used repeatedly to include multiple files. They will be included in the order specified. `--reference-odt=`*FILE* : Use the specified file as a style reference in producing an ODT. For best results, the reference ODT should be a modified version of an ODT produced using pandoc. The contents of the reference ODT are ignored, but its stylesheets are used in the new ODT. If no reference ODT is specified on the command line, pandoc will look for a file `reference.odt` in the user data directory (see `--data-dir`). If this is not found either, sensible defaults will be used. `--reference-docx=`*FILE* : Use the specified file as a style reference in producing a docx file. For best results, the reference docx should be a modified version of a docx file produced using pandoc. The contents of the reference docx are ignored, but its stylesheets and document properties (including margins, page size, header, and footer) are used in the new docx. If no reference docx is specified on the command line, pandoc will look for a file `reference.docx` in the user data directory (see `--data-dir`). If this is not found either, sensible defaults will be used. The following styles are used by pandoc: [paragraph] Normal, Body Text, First Paragraph, Compact, Title, Subtitle, Author, Date, Abstract, Bibliography, Heading 1, Heading 2, Heading 3, Heading 4, Heading 5, Heading 6, Block Text, Footnote Text, Definition Term, Definition, Caption, Table Caption, Image Caption, Figure, Figure With Caption, TOC Heading; [character] Default Paragraph Font, Body Text Char, Verbatim Char, Footnote Reference, Hyperlink; [table] Normal Table. `--epub-stylesheet=`*FILE* : Use the specified CSS file to style the EPUB. If no stylesheet is specified, pandoc will look for a file `epub.css` in the user data directory (see `--data-dir`). If it is not found there, sensible defaults will be used. `--epub-cover-image=`*FILE* : Use the specified image as the EPUB cover. It is recommended that the image be less than 1000px in width and height. Note that in a Markdown source document you can also specify `cover-image` in a YAML metadata block (see [EPUB Metadata], below). `--epub-metadata=`*FILE* : Look in the specified XML file for metadata for the EPUB. The file should contain a series of [Dublin Core elements]. For example: Creative Commons es-AR By default, pandoc will include the following metadata elements: `` (from the document title), `` (from the document authors), `` (from the document date, which should be in [ISO 8601 format]), `` (from the `lang` variable, or, if is not set, the locale), and `` (a randomly generated UUID). Any of these may be overridden by elements in the metadata file. Note: if the source document is Markdown, a YAML metadata block in the document can be used instead. See below under [EPUB Metadata]. `--epub-embed-font=`*FILE* : Embed the specified font in the EPUB. This option can be repeated to embed multiple fonts. Wildcards can also be used: for example, `DejaVuSans-*.ttf`. However, if you use wildcards on the command line, be sure to escape them or put the whole filename in single quotes, to prevent them from being interpreted by the shell. To use the embedded fonts, you will need to add declarations like the following to your CSS (see `--epub-stylesheet`): @font-face { font-family: DejaVuSans; font-style: normal; font-weight: normal; src:url("DejaVuSans-Regular.ttf"); } @font-face { font-family: DejaVuSans; font-style: normal; font-weight: bold; src:url("DejaVuSans-Bold.ttf"); } @font-face { font-family: DejaVuSans; font-style: italic; font-weight: normal; src:url("DejaVuSans-Oblique.ttf"); } @font-face { font-family: DejaVuSans; font-style: italic; font-weight: bold; src:url("DejaVuSans-BoldOblique.ttf"); } body { font-family: "DejaVuSans"; } `--epub-chapter-level=`*NUMBER* : Specify the header level at which to split the EPUB into separate "chapter" files. The default is to split into chapters at level 1 headers. This option only affects the internal composition of the EPUB, not the way chapters and sections are displayed to users. Some readers may be slow if the chapter files are too large, so for large documents with few level 1 headers, one might want to use a chapter level of 2 or 3. `--latex-engine=pdflatex`|`lualatex`|`xelatex` : Use the specified LaTeX engine when producing PDF output. The default is `pdflatex`. If the engine is not in your PATH, the full path of the engine may be specified here. `--latex-engine-opt=`*STRING* : Use the given string as a command-line argument to the `latex-engine`. If used multiple times, the arguments are provided with spaces between them. Note that no check for duplicate options is done. [Dublin Core elements]: http://dublincore.org/documents/dces/ [ISO 8601 format]: http://www.w3.org/TR/NOTE-datetime Citation rendering ------------------ `--bibliography=`*FILE* : Set the `bibliography` field in the document's metadata to *FILE*, overriding any value set in the metadata, and process citations using `pandoc-citeproc`. (This is equivalent to `--metadata bibliography=FILE --filter pandoc-citeproc`.) If `--natbib` or `--biblatex` is also supplied, `pandoc-citeproc` is not used, making this equivalent to `--metadata bibliography=FILE`. If you supply this argument multiple times, each *FILE* will be added to bibliography. `--csl=`*FILE* : Set the `csl` field in the document's metadata to *FILE*, overriding any value set in the metadata. (This is equivalent to `--metadata csl=FILE`.) This option is only relevant with `pandoc-citeproc`. `--citation-abbreviations=`*FILE* : Set the `citation-abbreviations` field in the document's metadata to *FILE*, overriding any value set in the metadata. (This is equivalent to `--metadata citation-abbreviations=FILE`.) This option is only relevant with `pandoc-citeproc`. `--natbib` : Use [`natbib`] for citations in LaTeX output. This option is not for use with the `pandoc-citeproc` filter or with PDF output. It is intended for use in producing a LaTeX file that can be processed with [`bibtex`]. `--biblatex` : Use [`biblatex`] for citations in LaTeX output. This option is not for use with the `pandoc-citeproc` filter or with PDF output. It is intended for use in producing a LaTeX file that can be processed with [`bibtex`] or [`biber`]. Math rendering in HTML ---------------------- `-m` [*URL*], `--latexmathml`[`=`*URL*] : Use the [LaTeXMathML] script to display embedded TeX math in HTML output. To insert a link to a local copy of the `LaTeXMathML.js` script, provide a *URL*. If no *URL* is provided, the contents of the script will be inserted directly into the HTML header, preserving portability at the price of efficiency. If you plan to use math on several pages, it is much better to link to a copy of the script, so it can be cached. `--mathml`[`=`*URL*] : Convert TeX math to [MathML] (in `docbook` as well as `html` and `html5`). In standalone `html` output, a small javascript (or a link to such a script if a *URL* is supplied) will be inserted that allows the MathML to be viewed on some browsers. `--jsmath`[`=`*URL*] : Use [jsMath] to display embedded TeX math in HTML output. The *URL* should point to the jsMath load script (e.g. `jsMath/easy/load.js`); if provided, it will be linked to in the header of standalone HTML documents. If a *URL* is not provided, no link to the jsMath load script will be inserted; it is then up to the author to provide such a link in the HTML template. `--mathjax`[`=`*URL*] : Use [MathJax] to display embedded TeX math in HTML output. The *URL* should point to the `MathJax.js` load script. If a *URL* is not provided, a link to the MathJax CDN will be inserted. `--gladtex` : Enclose TeX math in `` tags in HTML output. These can then be processed by [gladTeX] to produce links to images of the typeset formulas. `--mimetex`[`=`*URL*] : Render TeX math using the [mimeTeX] CGI script. If *URL* is not specified, it is assumed that the script is at `/cgi-bin/mimetex.cgi`. `--webtex`[`=`*URL*] : Render TeX formulas using an external script that converts TeX formulas to images. The formula will be concatenated with the URL provided. If *URL* is not specified, the Google Chart API will be used. `--katex`[`=`*URL*] : Use [KaTeX] to display embedded TeX math in HTML output. The *URL* should point to the `katex.js` load script. If a *URL* is not provided, a link to the KaTeX CDN will be inserted. `--katex-stylesheet=`*URL* : The *URL* should point to the `katex.css` stylesheet. If this option is not specified, a link to the KaTeX CDN will be inserted. Note that this option does not imply `--katex`. [MathML]: http://www.w3.org/Math/ [LaTeXMathML]: http://math.etsu.edu/LaTeXMathML/ [jsMath]: http://www.math.union.edu/~dpvc/jsmath/ [MathJax]: https://www.mathjax.org [gladTeX]: http://ans.hsh.no/home/mgg/gladtex/ [mimeTeX]: http://www.forkosh.com/mimetex.html [KaTeX]: https://github.com/Khan/KaTeX Options for wrapper scripts --------------------------- `--dump-args` : Print information about command-line arguments to *stdout*, then exit. This option is intended primarily for use in wrapper scripts. The first line of output contains the name of the output file specified with the `-o` option, or `-` (for *stdout*) if no output file was specified. The remaining lines contain the command-line arguments, one per line, in the order they appear. These do not include regular pandoc options and their arguments, but do include any options appearing after a `--` separator at the end of the line. `--ignore-args` : Ignore command-line arguments (for use in wrapper scripts). Regular pandoc options are not ignored. Thus, for example, pandoc --ignore-args -o foo.html -s foo.txt -- -e latin1 is equivalent to pandoc -o foo.html -s Templates ========= When the `-s/--standalone` option is used, pandoc uses a template to add header and footer material that is needed for a self-standing document. To see the default template that is used, just type pandoc -D *FORMAT* where *FORMAT* is the name of the output format. A custom template can be specified using the `--template` option. You can also override the system default templates for a given output format *FORMAT* by putting a file `templates/default.*FORMAT*` in the user data directory (see `--data-dir`, above). *Exceptions:* For `odt` output, customize the `default.opendocument` template. For `pdf` output, customize the `default.latex` template. Templates contain *variables*, which allow for the inclusion of arbitrary information at any point in the file. Variables may be set within the document using [YAML metadata blocks][Extension: `yaml_metadata_block`]. They may also be set at the command line using the `-V/--variable` option: variables set in this way override metadata fields with the same name. Variables set by pandoc ----------------------- Some variables are set automatically by pandoc. These vary somewhat depending on the output format, but include metadata fields as well as the following: `title`, `author`, `date` : allow identification of basic aspects of the document. Included in PDF metadata through LaTeX and ConTeXt. These can be set through a [pandoc title block][Extension: `pandoc_title_block`], which allows for multiple authors, or through a YAML metadata block: --- author: - Aristotle - Peter Abelard ... `subtitle` : document subtitle, included in HTML, EPUB, LaTeX, ConTeXt, and Word docx; renders in LaTeX only when using a document class that supports `\subtitle`, such as `beamer` or the [KOMA-Script] series (`scrartcl`, `scrreprt`, `scrbook`).[^subtitle] `abstract` : document summary, included in LaTeX, ConTeXt, AsciiDoc, and Word docx `keywords` : list of keywords to be included in HTML, PDF, and AsciiDoc metadata; may be repeated as for `author`, above `header-includes` : contents specified by `-H/--include-in-header` (may have multiple values) `toc` : non-null value if `--toc/--table-of-contents` was specified `toc-title` : title of table of contents (works only with EPUB and docx) `include-before` : contents specified by `-B/--include-before-body` (may have multiple values) `include-after` : contents specified by `-A/--include-after-body` (may have multiple values) `body` : body of document `meta-json` : JSON representation of all of the document's metadata [^subtitle]: To make `subtitle` work with other LaTeX document classes, you can add the following to `header-includes`: \providecommand{\subtitle}[1]{% \usepackage{titling} \posttitle{% \par\large#1\end{center}} } Language variables ------------------ `lang` : identifies the main language of the document, using a code according to [BCP 47] (e.g. `en` or `en-GB`). For some output formats, pandoc will convert it to an appropriate format stored in the additional variables `babel-lang`, `polyglossia-lang` (LaTeX) and `context-lang` (ConTeXt). Native pandoc `span`s and `div`s with the lang attribute (value in BCP 47) can be used to switch the language in that range. `otherlangs` : a list of other languages used in the document in the YAML metadata, according to [BCP 47]. For example: `otherlangs: [en-GB, fr]`. This is automatically generated from the `lang` attributes in all `span`s and `div`s but can be overriden. Currently only used by LaTeX through the generated `babel-otherlangs` and `polyglossia-otherlangs` variables. The LaTeX writer outputs polyglossia commands in the text but the `babel-newcommands` variable contains mappings for them to the corresponding babel. `dir` : the base direction of the document, either `rtl` (right-to-left) or `ltr` (left-to-right). For bidirectional documents, native pandoc `span`s and `div`s with the `dir` attribute (value `rtl` or `ltr`) can be used to override the base direction in some output formats. This may not always be necessary if the final renderer (e.g. the browser, when generating HTML) supports the [Unicode Bidirectional Algorithm]. When using LaTeX for bidirectional documents, only the `xelatex` engine is fully supported (use `--latex-engine=xelatex`). [BCP 47]: https://tools.ietf.org/html/bcp47 [Unicode Bidirectional Algorithm]: http://www.w3.org/International/articles/inline-bidi-markup/uba-basics Variables for slides -------------------- Variables are available for [producing slide shows with pandoc], including all [reveal.js configuration options]. `slidy-url` : base URL for Slidy documents (defaults to `http://www.w3.org/Talks/Tools/Slidy2`) `slideous-url` : base URL for Slideous documents (defaults to `slideous`) `s5-url` : base URL for S5 documents (defaults to `s5/default`) `revealjs-url` : base URL for reveal.js documents (defaults to `reveal.js`) `theme`, `colortheme`, `fonttheme`, `innertheme`, `outertheme` : themes for LaTeX [`beamer`] documents `navigation` : controls navigation symbols in `beamer` documents (default is `empty` for no navigation symbols; other valid values are `frame`, `vertical`, and `horizontal`). `section-titles` : enables on "title pages" for new sections in `beamer` documents (default = true). [reveal.js configuration options]: https://github.com/hakimel/reveal.js#configuration Variables for LaTeX ------------------- LaTeX variables are used when [creating a PDF]. `papersize` : paper size, e.g. `letter`, `A4` `fontsize` : font size for body text (e.g. `10pt`, `12pt`) `documentclass` : document class, e.g. [`article`], [`report`], [`book`], [`memoir`] `classoption` : option for document class, e.g. `oneside`; may be repeated for multiple options `geometry` : option for [`geometry`] package, e.g. `margin=1in`; may be repeated for multiple options `margin-left`, `margin-right`, `margin-top`, `margin-bottom` : sets margins, if `geometry` is not used (otherwise `geometry` overrides these) `linestretch` : adjusts line spacing using the [`setspace`] package, e.g. `1.25`, `1.5` `fontfamily` : font package for use with `pdflatex`: [TeX Live] includes many options, documented in the [LaTeX Font Catalogue]. The default is [Latin Modern][`lm`]. `fontfamilyoptions` : options for package used as `fontfamily`: e.g. `osf,sc` with `fontfamily` set to [`mathpazo`] provides Palatino with old-style figures and true small caps; may be repeated for multiple options `mainfont`, `sansfont`, `monofont`, `mathfont`, `CJKmainfont` : font families for use with `xelatex` or `lualatex`: take the name of any system font, using the [`fontspec`] package. Note that if `CJKmainfont` is used, the [`xecjk`] package must be available. `mainfontoptions`, `sansfontoptions`, `monofontoptions`, `mathfontoptions`, `CJKoptions` : options to use with `mainfont`, `sansfont`, `monofont`, `mathfont`, `CJKmainfont` in `xelatex` and `lualatex`. Allow for any choices available through [`fontspec`], such as the OpenType features `Numbers=OldStyle,Numbers=Proportional`. May be repeated for multiple options. `fontenc` : allows font encoding to be specified through `fontenc` package (with `pdflatex`); default is `T1` (see guide to [LaTeX font encodings]) `colorlinks` : add color to link text; automatically enabled if any of `linkcolor`, `citecolor`, `urlcolor`, or `toccolor` are set `linkcolor`, `citecolor`, `urlcolor`, `toccolor` : color for internal links, citation links, external links, and links in table of contents: uses any of the [predefined LaTeX colors] `links-as-notes` : causes links to be printed as footnotes `indent` : uses document class settings for indentation (the default LaTeX template otherwise removes indentation and adds space between paragraphs) `subparagraph` : disables default behavior of LaTeX template that redefines (sub)paragraphs as sections, changing the appearance of nested headings in some classes `thanks` : specifies contents of acknowledgments footnote after document title. `toc` : include table of contents (can also be set using `--toc/--table-of-contents`) `toc-depth` : level of section to include in table of contents `lof`, `lot` : include list of figures, list of tables `bibliography` : bibliography to use for resolving references `biblio-style` : bibliography style, when used with `--natbib` and `--biblatex`. `biblatexoptions` : list of options for biblatex. [`article`]: https://ctan.org/pkg/article [`report`]: https://ctan.org/pkg/report [`book`]: https://ctan.org/pkg/book [KOMA-Script]: https://ctan.org/pkg/koma-script [`memoir`]: https://ctan.org/pkg/memoir [predefined LaTeX colors]: https://en.wikibooks.org/wiki/LaTeX/Colors#Predefined_colors [LaTeX Font Catalogue]: http://www.tug.dk/FontCatalogue/ [`mathpazo`]: https://ctan.org/pkg/mathpazo [LaTeX font encodings]: https://ctan.org/pkg/encguide Variables for ConTeXt --------------------- `papersize` : paper size, e.g. `letter`, `A4`, `landscape` (see [ConTeXt Paper Setup]); may be repeated for multiple options `layout` : options for page margins and text arrangement (see [ConTeXt Layout]); may be repeated for multiple options `margin-left`, `margin-right`, `margin-top`, `margin-bottom` : sets margins, if `layout` is not used (otherwise `layout` overrides these) `fontsize` : font size for body text (e.g. `10pt`, `12pt`) `mainfont`, `sansfont`, `monofont`, `mathfont` : font families: take the name of any system font (see [ConTeXt Font Switching]) `linkcolor`, `contrastcolor` : color for links outside and inside a page, e.g. `red`, `blue` (see [ConTeXt Color]) `linkstyle` : typeface style for links, e.g. `normal`, `bold`, `slanted`, `boldslanted`, `type`, `cap`, `small` `indenting` : controls indentation of paragraphs, e.g. `yes,small,next` (see [ConTeXt Indentation]); may be repeated for multiple options `whitespace` : spacing between paragraphs, e.g. `none`, `small` (using [`setupwhitespace`]) `interlinespace` : adjusts line spacing, e.g. `4ex` (using [`setupinterlinespace`]); may be repeated for multiple options `headertext`, `footertext` : text to be placed in running header or footer (see [ConTeXt Headers and Footers]); may be repeated up to four times for different placement `pagenumbering` : page number style and location (using [`setuppagenumbering`]); may be repeated for multiple options `toc` : include table of contents (can also be set using `--toc/--table-of-contents`) `lof`, `lot` : include list of figures, list of tables [ConTeXt Paper Setup]: http://wiki.contextgarden.net/PaperSetup [ConTeXt Layout]: http://wiki.contextgarden.net/Layout [ConTeXt Font Switching]: http://wiki.contextgarden.net/Font_Switching [ConTeXt Color]: http://wiki.contextgarden.net/Color [ConTeXt Headers and Footers]: http://wiki.contextgarden.net/Headers_and_Footers [ConTeXt Indentation]: http://wiki.contextgarden.net/Indentation [`setupwhitespace`]: http://wiki.contextgarden.net/Command/setupwhitespace [`setupinterlinespace`]: http://wiki.contextgarden.net/Command/setupinterlinespace [`setuppagenumbering`]: http://wiki.contextgarden.net/Command/setuppagenumbering Variables for man pages ----------------------- `section` : section number in man pages `header` : header in man pages `footer` : footer in man pages `adjusting` : adjusts text to left (`l`), right (`r`), center (`c`), or both (`b`) margins `hyphenate` : if `true` (the default), hyphenation will be used Using variables in templates ---------------------------- Variable names are sequences of alphanumerics, `-`, and `_`, starting with a letter. A variable name surrounded by `$` signs will be replaced by its value. For example, the string `$title$` in $title$ will be replaced by the document title. To write a literal `$` in a template, use `$$`. Templates may contain conditionals. The syntax is as follows: $if(variable)$ X $else$ Y $endif$ This will include `X` in the template if `variable` has a non-null value; otherwise it will include `Y`. `X` and `Y` are placeholders for any valid template text, and may include interpolated variables or other conditionals. The `$else$` section may be omitted. When variables can have multiple values (for example, `author` in a multi-author document), you can use the `$for$` keyword: $for(author)$ $endfor$ You can optionally specify a separator to be used between consecutive items: $for(author)$$author$$sep$, $endfor$ A dot can be used to select a field of a variable that takes an object as its value. So, for example: $author.name$ ($author.affiliation$) If you use custom templates, you may need to revise them as pandoc changes. We recommend tracking the changes in the default templates, and modifying your custom templates accordingly. An easy way to do this is to fork the [pandoc-templates] repository and merge in changes after each pandoc release. [pandoc-templates]: https://github.com/jgm/pandoc-templates Pandoc's Markdown ================= Pandoc understands an extended and slightly revised version of John Gruber's [Markdown] syntax. This document explains the syntax, noting differences from standard Markdown. Except where noted, these differences can be suppressed by using the `markdown_strict` format instead of `markdown`. An extensions can be enabled by adding `+EXTENSION` to the format name and disabled by adding `-EXTENSION`. For example, `markdown_strict+footnotes` is strict Markdown with footnotes enabled, while `markdown-footnotes-pipe_tables` is pandoc's Markdown without footnotes or pipe tables. Philosophy ---------- Markdown is designed to be easy to write, and, even more importantly, easy to read: > A Markdown-formatted document should be publishable as-is, as plain > text, without looking like it's been marked up with tags or formatting > instructions. > -- [John Gruber](http://daringfireball.net/projects/markdown/syntax#philosophy) This principle has guided pandoc's decisions in finding syntax for tables, footnotes, and other extensions. There is, however, one respect in which pandoc's aims are different from the original aims of Markdown. Whereas Markdown was originally designed with HTML generation in mind, pandoc is designed for multiple output formats. Thus, while pandoc allows the embedding of raw HTML, it discourages it, and provides other, non-HTMLish ways of representing important document elements like definition lists, tables, mathematics, and footnotes. Paragraphs ---------- A paragraph is one or more lines of text followed by one or more blank lines. Newlines are treated as spaces, so you can reflow your paragraphs as you like. If you need a hard line break, put two or more spaces at the end of a line. #### Extension: `escaped_line_breaks` #### A backslash followed by a newline is also a hard line break. Note: in multiline and grid table cells, this is the only way to create a hard line break, since trailing spaces in the cells are ignored. Headers ------- There are two kinds of headers: Setext and ATX. ### Setext-style headers ### A setext-style header is a line of text "underlined" with a row of `=` signs (for a level one header) or `-` signs (for a level two header): A level-one header ================== A level-two header ------------------ The header text can contain inline formatting, such as emphasis (see [Inline formatting], below). ### ATX-style headers ### An ATX-style header consists of one to six `#` signs and a line of text, optionally followed by any number of `#` signs. The number of `#` signs at the beginning of the line is the header level: ## A level-two header ### A level-three header ### As with setext-style headers, the header text can contain formatting: # A level-one header with a [link](/url) and *emphasis* #### Extension: `blank_before_header` #### Standard Markdown syntax does not require a blank line before a header. Pandoc does require this (except, of course, at the beginning of the document). The reason for the requirement is that it is all too easy for a `#` to end up at the beginning of a line by accident (perhaps through line wrapping). Consider, for example: I like several of their flavors of ice cream: #22, for example, and #5. ### Header identifiers ### #### Extension: `header_attributes` #### Headers can be assigned attributes using this syntax at the end of the line containing the header text: {#identifier .class .class key=value key=value} Thus, for example, the following headers will all be assigned the identifier `foo`: # My header {#foo} ## My header ## {#foo} My other header {#foo} --------------- (This syntax is compatible with [PHP Markdown Extra].) Note that although this syntax allows assignment of classes and key/value attributes, writers generally don't use all of this information. Identifiers, classes, and key/value attributes are used in HTML and HTML-based formats such as EPUB and slidy. Identifiers are used for labels and link anchors in the LaTeX, ConTeXt, Textile, and AsciiDoc writers. Headers with the class `unnumbered` will not be numbered, even if `--number-sections` is specified. A single hyphen (`-`) in an attribute context is equivalent to `.unnumbered`, and preferable in non-English documents. So, # My header {-} is just the same as # My header {.unnumbered} #### Extension: `auto_identifiers` #### A header without an explicitly specified identifier will be automatically assigned a unique identifier based on the header text. To derive the identifier from the header text, - Remove all formatting, links, etc. - Remove all footnotes. - Remove all punctuation, except underscores, hyphens, and periods. - Replace all spaces and newlines with hyphens. - Convert all alphabetic characters to lowercase. - Remove everything up to the first letter (identifiers may not begin with a number or punctuation mark). - If nothing is left after this, use the identifier `section`. Thus, for example, Header Identifier ------------------------------- ---------------------------- `Header identifiers in HTML` `header-identifiers-in-html` `*Dogs*?--in *my* house?` `dogs--in-my-house` `[HTML], [S5], or [RTF]?` `html-s5-or-rtf` `3. Applications` `applications` `33` `section` These rules should, in most cases, allow one to determine the identifier from the header text. The exception is when several headers have the same text; in this case, the first will get an identifier as described above; the second will get the same identifier with `-1` appended; the third with `-2`; and so on. These identifiers are used to provide link targets in the table of contents generated by the `--toc|--table-of-contents` option. They also make it easy to provide links from one section of a document to another. A link to this section, for example, might look like this: See the section on [header identifiers](#header-identifiers-in-html-latex-and-context). Note, however, that this method of providing links to sections works only in HTML, LaTeX, and ConTeXt formats. If the `--section-divs` option is specified, then each section will be wrapped in a `div` (or a `section`, if `--html5` was specified), and the identifier will be attached to the enclosing `
                    ` (or `
                    `) tag rather than the header itself. This allows entire sections to be manipulated using javascript or treated differently in CSS. #### Extension: `implicit_header_references` #### Pandoc behaves as if reference links have been defined for each header. So, instead of [header identifiers](#header-identifiers-in-html) you can simply write [header identifiers] or [header identifiers][] or [the section on header identifiers][header identifiers] If there are multiple headers with identical text, the corresponding reference will link to the first one only, and you will need to use explicit links to link to the others, as described above. Like regular reference links, these references are case-insensitive. Explicit link reference definitions always take priority over implicit header references. So, in the following example, the link will point to `bar`, not to `#foo`: # Foo [foo]: bar See [foo] Block quotations ---------------- Markdown uses email conventions for quoting blocks of text. A block quotation is one or more paragraphs or other block elements (such as lists or headers), with each line preceded by a `>` character and an optional space. (The `>` need not start at the left margin, but it should not be indented more than three spaces.) > This is a block quote. This > paragraph has two lines. > > 1. This is a list inside a block quote. > 2. Second item. A "lazy" form, which requires the `>` character only on the first line of each block, is also allowed: > This is a block quote. This paragraph has two lines. > 1. This is a list inside a block quote. 2. Second item. Among the block elements that can be contained in a block quote are other block quotes. That is, block quotes can be nested: > This is a block quote. > > > A block quote within a block quote. If the `>` character is followed by an optional space, that space will be considered part of the block quote marker and not part of the indentation of the contents. Thus, to put an indented code block in a block quote, you need five spaces after the `>`: > code #### Extension: `blank_before_blockquote` #### Standard Markdown syntax does not require a blank line before a block quote. Pandoc does require this (except, of course, at the beginning of the document). The reason for the requirement is that it is all too easy for a `>` to end up at the beginning of a line by accident (perhaps through line wrapping). So, unless the `markdown_strict` format is used, the following does not produce a nested block quote in pandoc: > This is a block quote. >> Nested. Verbatim (code) blocks ---------------------- ### Indented code blocks ### A block of text indented four spaces (or one tab) is treated as verbatim text: that is, special characters do not trigger special formatting, and all spaces and line breaks are preserved. For example, if (a > 3) { moveShip(5 * gravity, DOWN); } The initial (four space or one tab) indentation is not considered part of the verbatim text, and is removed in the output. Note: blank lines in the verbatim text need not begin with four spaces. ### Fenced code blocks ### #### Extension: `fenced_code_blocks` #### In addition to standard indented code blocks, pandoc supports *fenced* code blocks. These begin with a row of three or more tildes (`~`) and end with a row of tildes that must be at least as long as the starting row. Everything between these lines is treated as code. No indentation is necessary: ~~~~~~~ if (a > 3) { moveShip(5 * gravity, DOWN); } ~~~~~~~ Like regular code blocks, fenced code blocks must be separated from surrounding text by blank lines. If the code itself contains a row of tildes or backticks, just use a longer row of tildes or backticks at the start and end: ~~~~~~~~~~~~~~~~ ~~~~~~~~~~ code including tildes ~~~~~~~~~~ ~~~~~~~~~~~~~~~~ #### Extension: `backtick_code_blocks` #### Same as `fenced_code_blocks`, but uses backticks (`` ` ``) instead of tildes (`~`). #### Extension: `fenced_code_attributes` #### Optionally, you may attach attributes to fenced or backtick code block using this syntax: ~~~~ {#mycode .haskell .numberLines startFrom="100"} qsort [] = [] qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (>= x) xs) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Here `mycode` is an identifier, `haskell` and `numberLines` are classes, and `startFrom` is an attribute with value `100`. Some output formats can use this information to do syntax highlighting. Currently, the only output formats that uses this information are HTML and LaTeX. If highlighting is supported for your output format and language, then the code block above will appear highlighted, with numbered lines. (To see which languages are supported, do `pandoc --version`.) Otherwise, the code block above will appear as follows:
                          
                          ...
                          
                        
                    A shortcut form can also be used for specifying the language of the code block: ```haskell qsort [] = [] ``` This is equivalent to: ``` {.haskell} qsort [] = [] ``` If the `fenced_code_attributes` extension is disabled, but input contains class attribute(s) for the codeblock, the first class attribute will be printed after the opening fence as a bare word. To prevent all highlighting, use the `--no-highlight` flag. To set the highlighting style, use `--highlight-style`. For more information on highlighting, see [Syntax highlighting], below. Line blocks ----------- #### Extension: `line_blocks` #### A line block is a sequence of lines beginning with a vertical bar (`|`) followed by a space. The division into lines will be preserved in the output, as will any leading spaces; otherwise, the lines will be formatted as Markdown. This is useful for verse and addresses: | The limerick packs laughs anatomical | In space that is quite economical. | But the good ones I've seen | So seldom are clean | And the clean ones so seldom are comical | 200 Main St. | Berkeley, CA 94718 The lines can be hard-wrapped if needed, but the continuation line must begin with a space. | The Right Honorable Most Venerable and Righteous Samuel L. Constable, Jr. | 200 Main St. | Berkeley, CA 94718 This syntax is borrowed from [reStructuredText]. Lists ----- ### Bullet lists ### A bullet list is a list of bulleted list items. A bulleted list item begins with a bullet (`*`, `+`, or `-`). Here is a simple example: * one * two * three This will produce a "compact" list. If you want a "loose" list, in which each item is formatted as a paragraph, put spaces between the items: * one * two * three The bullets need not be flush with the left margin; they may be indented one, two, or three spaces. The bullet must be followed by whitespace. List items look best if subsequent lines are flush with the first line (after the bullet): * here is my first list item. * and my second. But Markdown also allows a "lazy" format: * here is my first list item. * and my second. ### The four-space rule ### A list item may contain multiple paragraphs and other block-level content. However, subsequent paragraphs must be preceded by a blank line and indented four spaces or a tab. The list will look better if the first paragraph is aligned with the rest: * First paragraph. Continued. * Second paragraph. With a code block, which must be indented eight spaces: { code } List items may include other lists. In this case the preceding blank line is optional. The nested list must be indented four spaces or one tab: * fruits + apples - macintosh - red delicious + pears + peaches * vegetables + broccoli + chard As noted above, Markdown allows you to write list items "lazily," instead of indenting continuation lines. However, if there are multiple paragraphs or other blocks in a list item, the first line of each must be indented. + A lazy, lazy, list item. + Another one; this looks bad but is legal. Second paragraph of second list item. **Note:** Although the four-space rule for continuation paragraphs comes from the official [Markdown syntax guide], the reference implementation, `Markdown.pl`, does not follow it. So pandoc will give different results than `Markdown.pl` when authors have indented continuation paragraphs fewer than four spaces. The [Markdown syntax guide] is not explicit whether the four-space rule applies to *all* block-level content in a list item; it only mentions paragraphs and code blocks. But it implies that the rule applies to all block-level content (including nested lists), and pandoc interprets it that way. [Markdown syntax guide]: http://daringfireball.net/projects/markdown/syntax#list ### Ordered lists ### Ordered lists work just like bulleted lists, except that the items begin with enumerators rather than bullets. In standard Markdown, enumerators are decimal numbers followed by a period and a space. The numbers themselves are ignored, so there is no difference between this list: 1. one 2. two 3. three and this one: 5. one 7. two 1. three #### Extension: `fancy_lists` #### Unlike standard Markdown, pandoc allows ordered list items to be marked with uppercase and lowercase letters and roman numerals, in addition to arabic numerals. List markers may be enclosed in parentheses or followed by a single right-parentheses or period. They must be separated from the text that follows by at least one space, and, if the list marker is a capital letter with a period, by at least two spaces.[^2] [^2]: The point of this rule is to ensure that normal paragraphs starting with people's initials, like B. Russell was an English philosopher. do not get treated as list items. This rule will not prevent (C) 2007 Joe Smith from being interpreted as a list item. In this case, a backslash escape can be used: (C\) 2007 Joe Smith The `fancy_lists` extension also allows '`#`' to be used as an ordered list marker in place of a numeral: #. one #. two #### Extension: `startnum` #### Pandoc also pays attention to the type of list marker used, and to the starting number, and both of these are preserved where possible in the output format. Thus, the following yields a list with numbers followed by a single parenthesis, starting with 9, and a sublist with lowercase roman numerals: 9) Ninth 10) Tenth 11) Eleventh i. subone ii. subtwo iii. subthree Pandoc will start a new list each time a different type of list marker is used. So, the following will create three lists: (2) Two (5) Three 1. Four * Five If default list markers are desired, use `#.`: #. one #. two #. three ### Definition lists ### #### Extension: `definition_lists` #### Pandoc supports definition lists, using the syntax of [PHP Markdown Extra] with some extensions.[^3] Term 1 : Definition 1 Term 2 with *inline markup* : Definition 2 { some code, part of Definition 2 } Third paragraph of definition 2. Each term must fit on one line, which may optionally be followed by a blank line, and must be followed by one or more definitions. A definition begins with a colon or tilde, which may be indented one or two spaces. A term may have multiple definitions, and each definition may consist of one or more block elements (paragraph, code block, list, etc.), each indented four spaces or one tab stop. The body of the definition (including the first line, aside from the colon or tilde) should be indented four spaces. However, as with other Markdown lists, you can "lazily" omit indentation except at the beginning of a paragraph or other block element: Term 1 : Definition with lazy continuation. Second paragraph of the definition. If you leave space before the definition (as in the example above), the text of the definition will be treated as a paragraph. In some output formats, this will mean greater spacing between term/definition pairs. For a more compact definition list, omit the space before the definition: Term 1 ~ Definition 1 Term 2 ~ Definition 2a ~ Definition 2b Note that space between items in a definition list is required. (A variant that loosens this requirement, but disallows "lazy" hard wrapping, can be activated with `compact_definition_lists`: see [Non-pandoc extensions], below.) [^3]: I have been influenced by the suggestions of [David Wheeler](http://www.justatheory.com/computers/markup/modest-markdown-proposal.html). ### Numbered example lists ### #### Extension: `example_lists` #### The special list marker `@` can be used for sequentially numbered examples. The first list item with a `@` marker will be numbered '1', the next '2', and so on, throughout the document. The numbered examples need not occur in a single list; each new list using `@` will take up where the last stopped. So, for example: (@) My first example will be numbered (1). (@) My second example will be numbered (2). Explanation of examples. (@) My third example will be numbered (3). Numbered examples can be labeled and referred to elsewhere in the document: (@good) This is a good example. As (@good) illustrates, ... The label can be any string of alphanumeric characters, underscores, or hyphens. ### Compact and loose lists ### Pandoc behaves differently from `Markdown.pl` on some "edge cases" involving lists. Consider this source: + First + Second: - Fee - Fie - Foe + Third Pandoc transforms this into a "compact list" (with no `

                    ` tags around "First", "Second", or "Third"), while Markdown puts `

                    ` tags around "Second" and "Third" (but not "First"), because of the blank space around "Third". Pandoc follows a simple rule: if the text is followed by a blank line, it is treated as a paragraph. Since "Second" is followed by a list, and not a blank line, it isn't treated as a paragraph. The fact that the list is followed by a blank line is irrelevant. (Note: Pandoc works this way even when the `markdown_strict` format is specified. This behavior is consistent with the official Markdown syntax description, even though it is different from that of `Markdown.pl`.) ### Ending a list ### What if you want to put an indented code block after a list? - item one - item two { my code block } Trouble! Here pandoc (like other Markdown implementations) will treat `{ my code block }` as the second paragraph of item two, and not as a code block. To "cut off" the list after item two, you can insert some non-indented content, like an HTML comment, which won't produce visible output in any format: - item one - item two { my code block } You can use the same trick if you want two consecutive lists instead of one big list: 1. one 2. two 3. three 1. uno 2. dos 3. tres Horizontal rules ---------------- A line containing a row of three or more `*`, `-`, or `_` characters (optionally separated by spaces) produces a horizontal rule: * * * * --------------- Tables ------ Four kinds of tables may be used. The first three kinds presuppose the use of a fixed-width font, such as Courier. The fourth kind can be used with proportionally spaced fonts, as it does not require lining up columns. #### Extension: `table_captions` #### A caption may optionally be provided with all 4 kinds of tables (as illustrated in the examples below). A caption is a paragraph beginning with the string `Table:` (or just `:`), which will be stripped off. It may appear either before or after the table. #### Extension: `simple_tables` #### Simple tables look like this: Right Left Center Default ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 Table: Demonstration of simple table syntax. The headers and table rows must each fit on one line. Column alignments are determined by the position of the header text relative to the dashed line below it:[^4] - If the dashed line is flush with the header text on the right side but extends beyond it on the left, the column is right-aligned. - If the dashed line is flush with the header text on the left side but extends beyond it on the right, the column is left-aligned. - If the dashed line extends beyond the header text on both sides, the column is centered. - If the dashed line is flush with the header text on both sides, the default alignment is used (in most cases, this will be left). [^4]: This scheme is due to Michel Fortin, who proposed it on the [Markdown discussion list](http://six.pairlist.net/pipermail/markdown-discuss/2005-March/001097.html). The table must end with a blank line, or a line of dashes followed by a blank line. The column headers may be omitted, provided a dashed line is used to end the table. For example: ------- ------ ---------- ------- 12 12 12 12 123 123 123 123 1 1 1 1 ------- ------ ---------- ------- When headers are omitted, column alignments are determined on the basis of the first line of the table body. So, in the tables above, the columns would be right, left, center, and right aligned, respectively. #### Extension: `multiline_tables` #### Multiline tables allow headers and table rows to span multiple lines of text (but cells that span multiple columns or rows of the table are not supported). Here is an example: ------------------------------------------------------------- Centered Default Right Left Header Aligned Aligned Aligned ----------- ------- --------------- ------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. ------------------------------------------------------------- Table: Here's the caption. It, too, may span multiple lines. These work like simple tables, but with the following differences: - They must begin with a row of dashes, before the header text (unless the headers are omitted). - They must end with a row of dashes, then a blank line. - The rows must be separated by blank lines. In multiline tables, the table parser pays attention to the widths of the columns, and the writers try to reproduce these relative widths in the output. So, if you find that one of the columns is too narrow in the output, try widening it in the Markdown source. Headers may be omitted in multiline tables as well as simple tables: ----------- ------- --------------- ------------------------- First row 12.0 Example of a row that spans multiple lines. Second row 5.0 Here's another one. Note the blank line between rows. ----------- ------- --------------- ------------------------- : Here's a multiline table without headers. It is possible for a multiline table to have just one row, but the row should be followed by a blank line (and then the row of dashes that ends the table), or the table may be interpreted as a simple table. #### Extension: `grid_tables` #### Grid tables look like this: : Sample grid table. +---------------+---------------+--------------------+ | Fruit | Price | Advantages | +===============+===============+====================+ | Bananas | $1.34 | - built-in wrapper | | | | - bright color | +---------------+---------------+--------------------+ | Oranges | $2.10 | - cures scurvy | | | | - tasty | +---------------+---------------+--------------------+ The row of `=`s separates the header from the table body, and can be omitted for a headerless table. The cells of grid tables may contain arbitrary block elements (multiple paragraphs, code blocks, lists, etc.). Alignments are not supported, nor are cells that span multiple columns or rows. Grid tables can be created easily using [Emacs table mode]. [Emacs table mode]: http://table.sourceforge.net/ #### Extension: `pipe_tables` #### Pipe tables look like this: | Right | Left | Default | Center | |------:|:-----|---------|:------:| | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 | : Demonstration of pipe table syntax. The syntax is identical to [PHP Markdown Extra tables]. The beginning and ending pipe characters are optional, but pipes are required between all columns. The colons indicate column alignment as shown. The header cannot be omitted. To simulate a headerless table, include a header with blank cells. Since the pipes indicate column boundaries, columns need not be vertically aligned, as they are in the above example. So, this is a perfectly legal (though ugly) pipe table: fruit| price -----|-----: apple|2.05 pear|1.37 orange|3.09 The cells of pipe tables cannot contain block elements like paragraphs and lists, and cannot span multiple lines. If a pipe table contains a row whose printable content is wider than the column width (see `--columns`), then the cell contents will wrap, with the relative cell widths determined by the widths of the separator lines. Note: pandoc also recognizes pipe tables of the following form, as can be produced by Emacs' orgtbl-mode: | One | Two | |-----+-------| | my | table | | is | nice | The difference is that `+` is used instead of `|`. Other orgtbl features are not supported. In particular, to get non-default column alignment, you'll need to add colons as above. [PHP Markdown Extra tables]: https://michelf.ca/projects/php-markdown/extra/#table Metadata blocks --------------- #### Extension: `pandoc_title_block` #### If the file begins with a title block % title % author(s) (separated by semicolons) % date it will be parsed as bibliographic information, not regular text. (It will be used, for example, in the title of standalone LaTeX or HTML output.) The block may contain just a title, a title and an author, or all three elements. If you want to include an author but no title, or a title and a date but no author, you need a blank line: % % Author % My title % % June 15, 2006 The title may occupy multiple lines, but continuation lines must begin with leading space, thus: % My title on multiple lines If a document has multiple authors, the authors may be put on separate lines with leading space, or separated by semicolons, or both. So, all of the following are equivalent: % Author One Author Two % Author One; Author Two % Author One; Author Two The date must fit on one line. All three metadata fields may contain standard inline formatting (italics, links, footnotes, etc.). Title blocks will always be parsed, but they will affect the output only when the `--standalone` (`-s`) option is chosen. In HTML output, titles will appear twice: once in the document head -- this is the title that will appear at the top of the window in a browser -- and once at the beginning of the document body. The title in the document head can have an optional prefix attached (`--title-prefix` or `-T` option). The title in the body appears as an H1 element with class "title", so it can be suppressed or reformatted with CSS. If a title prefix is specified with `-T` and no title block appears in the document, the title prefix will be used by itself as the HTML title. The man page writer extracts a title, man page section number, and other header and footer information from the title line. The title is assumed to be the first word on the title line, which may optionally end with a (single-digit) section number in parentheses. (There should be no space between the title and the parentheses.) Anything after this is assumed to be additional footer and header text. A single pipe character (`|`) should be used to separate the footer text from the header text. Thus, % PANDOC(1) will yield a man page with the title `PANDOC` and section 1. % PANDOC(1) Pandoc User Manuals will also have "Pandoc User Manuals" in the footer. % PANDOC(1) Pandoc User Manuals | Version 4.0 will also have "Version 4.0" in the header. #### Extension: `yaml_metadata_block` #### A YAML metadata block is a valid YAML object, delimited by a line of three hyphens (`---`) at the top and a line of three hyphens (`---`) or three dots (`...`) at the bottom. A YAML metadata block may occur anywhere in the document, but if it is not at the beginning, it must be preceded by a blank line. (Note that, because of the way pandoc concatenates input files when several are provided, you may also keep the metadata in a separate YAML file and pass it to pandoc as an argument, along with your Markdown files: pandoc chap1.md chap2.md chap3.md metadata.yaml -s -o book.html Just be sure that the YAML file begins with `---` and ends with `---` or `...`.) Metadata will be taken from the fields of the YAML object and added to any existing document metadata. Metadata can contain lists and objects (nested arbitrarily), but all string scalars will be interpreted as Markdown. Fields with names ending in an underscore will be ignored by pandoc. (They may be given a role by external processors.) A document may contain multiple metadata blocks. The metadata fields will be combined through a *left-biased union*: if two metadata blocks attempt to set the same field, the value from the first block will be taken. When pandoc is used with `-t markdown` to create a Markdown document, a YAML metadata block will be produced only if the `-s/--standalone` option is used. All of the metadata will appear in a single block at the beginning of the document. Note that YAML escaping rules must be followed. Thus, for example, if a title contains a colon, it must be quoted. The pipe character (`|`) can be used to begin an indented block that will be interpreted literally, without need for escaping. This form is necessary when the field contains blank lines: --- title: 'This is the title: it contains a colon' author: - name: Author One affiliation: University of Somewhere - name: Author Two affiliation: University of Nowhere tags: [nothing, nothingness] abstract: | This is the abstract. It consists of two paragraphs. ... Template variables will be set automatically from the metadata. Thus, for example, in writing HTML, the variable `abstract` will be set to the HTML equivalent of the Markdown in the `abstract` field:

                    This is the abstract.

                    It consists of two paragraphs.

                    Note: The `author` variable in the default templates expects a simple list or string. To use the structured authors in the example, you would need a custom template. For example: $for(author)$ $if(author.name)$ $author.name$$if(author.affiliation)$ ($author.affiliation$)$endif$ $else$ $author$ $endif$ $endfor$ Backslash escapes ----------------- #### Extension: `all_symbols_escapable` #### Except inside a code block or inline code, any punctuation or space character preceded by a backslash will be treated literally, even if it would normally indicate formatting. Thus, for example, if one writes *\*hello\** one will get *hello* instead of hello This rule is easier to remember than standard Markdown's rule, which allows only the following characters to be backslash-escaped: \`*_{}[]()>#+-.! (However, if the `markdown_strict` format is used, the standard Markdown rule will be used.) A backslash-escaped space is parsed as a nonbreaking space. It will appear in TeX output as `~` and in HTML and XML as `\ ` or `\ `. A backslash-escaped newline (i.e. a backslash occurring at the end of a line) is parsed as a hard line break. It will appear in TeX output as `\\` and in HTML as `
                    `. This is a nice alternative to Markdown's "invisible" way of indicating hard line breaks using two trailing spaces on a line. Backslash escapes do not work in verbatim contexts. Smart punctuation ----------------- #### Extension #### If the `--smart` option is specified, pandoc will produce typographically correct output, converting straight quotes to curly quotes, `---` to em-dashes, `--` to en-dashes, and `...` to ellipses. Nonbreaking spaces are inserted after certain abbreviations, such as "Mr." Note: if your LaTeX template or any included header file call for the [`csquotes`] package, pandoc will detect this automatically and use `\enquote{...}` for quoted text. Inline formatting ----------------- ### Emphasis ### To *emphasize* some text, surround it with `*`s or `_`, like this: This text is _emphasized with underscores_, and this is *emphasized with asterisks*. Double `*` or `_` produces **strong emphasis**: This is **strong emphasis** and __with underscores__. A `*` or `_` character surrounded by spaces, or backslash-escaped, will not trigger emphasis: This is * not emphasized *, and \*neither is this\*. #### Extension: `intraword_underscores` #### Because `_` is sometimes used inside words and identifiers, pandoc does not interpret a `_` surrounded by alphanumeric characters as an emphasis marker. If you want to emphasize just part of a word, use `*`: feas*ible*, not feas*able*. ### Strikeout ### #### Extension: `strikeout` #### To strikeout a section of text with a horizontal line, begin and end it with `~~`. Thus, for example, This ~~is deleted text.~~ ### Superscripts and subscripts ### #### Extension: `superscript`, `subscript` #### Superscripts may be written by surrounding the superscripted text by `^` characters; subscripts may be written by surrounding the subscripted text by `~` characters. Thus, for example, H~2~O is a liquid. 2^10^ is 1024. If the superscripted or subscripted text contains spaces, these spaces must be escaped with backslashes. (This is to prevent accidental superscripting and subscripting through the ordinary use of `~` and `^`.) Thus, if you want the letter P with 'a cat' in subscripts, use `P~a\ cat~`, not `P~a cat~`. ### Verbatim ### To make a short span of text verbatim, put it inside backticks: What is the difference between `>>=` and `>>`? If the verbatim text includes a backtick, use double backticks: Here is a literal backtick `` ` ``. (The spaces after the opening backticks and before the closing backticks will be ignored.) The general rule is that a verbatim span starts with a string of consecutive backticks (optionally followed by a space) and ends with a string of the same number of backticks (optionally preceded by a space). Note that backslash-escapes (and other Markdown constructs) do not work in verbatim contexts: This is a backslash followed by an asterisk: `\*`. #### Extension: `inline_code_attributes` #### Attributes can be attached to verbatim text, just as with [fenced code blocks]: `<$>`{.haskell} ### Small caps ### To write small caps, you can use an HTML span tag: Small caps (The semicolon is optional and there may be space after the colon.) This will work in all output formats that support small caps. Math ---- #### Extension: `tex_math_dollars` #### Anything between two `$` characters will be treated as TeX math. The opening `$` must have a non-space character immediately to its right, while the closing `$` must have a non-space character immediately to its left, and must not be followed immediately by a digit. Thus, `$20,000 and $30,000` won't parse as math. If for some reason you need to enclose text in literal `$` characters, backslash-escape them and they won't be treated as math delimiters. TeX math will be printed in all output formats. How it is rendered depends on the output format: Markdown, LaTeX, Emacs Org mode, ConTeXt ~ It will appear verbatim between `$` characters. reStructuredText ~ It will be rendered using an [interpreted text role `:math:`]. AsciiDoc ~ It will be rendered as `latexmath:[...]`. Texinfo ~ It will be rendered inside a `@math` command. groff man ~ It will be rendered verbatim without `$`'s. MediaWiki, DokuWiki ~ It will be rendered inside `` tags. Textile ~ It will be rendered inside `` tags. RTF, OpenDocument, ODT ~ It will be rendered, if possible, using unicode characters, and will otherwise appear verbatim. DocBook ~ If the `--mathml` flag is used, it will be rendered using MathML in an `inlineequation` or `informalequation` tag. Otherwise it will be rendered, if possible, using unicode characters. Docx ~ It will be rendered using OMML math markup. FictionBook2 ~ If the `--webtex` option is used, formulas are rendered as images using Google Charts or other compatible web service, downloaded and embedded in the e-book. Otherwise, they will appear verbatim. HTML, Slidy, DZSlides, S5, EPUB ~ The way math is rendered in HTML will depend on the command-line options selected: 1. The default is to render TeX math as far as possible using unicode characters, as with RTF, DocBook, and OpenDocument output. Formulas are put inside a `span` with `class="math"`, so that they may be styled differently from the surrounding text if needed. 2. If the `--latexmathml` option is used, TeX math will be displayed between `$` or `$$` characters and put in `` tags with class `LaTeX`. The [LaTeXMathML] script will be used to render it as formulas. (This trick does not work in all browsers, but it works in Firefox. In browsers that do not support LaTeXMathML, TeX math will appear verbatim between `$` characters.) 3. If the `--jsmath` option is used, TeX math will be put inside `` tags (for inline math) or `
                    ` tags (for display math) with class `math`. The [jsMath] script will be used to render it. 4. If the `--mimetex` option is used, the [mimeTeX] CGI script will be called to generate images for each TeX formula. This should work in all browsers. The `--mimetex` option takes an optional URL as argument. If no URL is specified, it will be assumed that the mimeTeX CGI script is at `/cgi-bin/mimetex.cgi`. 5. If the `--gladtex` option is used, TeX formulas will be enclosed in `` tags in the HTML output. The resulting `htex` file may then be processed by [gladTeX], which will produce image files for each formula and an HTML file with links to these images. So, the procedure is: pandoc -s --gladtex myfile.txt -o myfile.htex gladtex -d myfile-images myfile.htex # produces myfile.html and images in myfile-images 6. If the `--webtex` option is used, TeX formulas will be converted to `` tags that link to an external script that converts formulas to images. The formula will be URL-encoded and concatenated with the URL provided. If no URL is specified, the Google Chart API will be used (`http://chart.apis.google.com/chart?cht=tx&chl=`). 7. If the `--mathjax` option is used, TeX math will be displayed between `\(...\)` (for inline math) or `\[...\]` (for display math) and put in `` tags with class `math`. The [MathJax] script will be used to render it as formulas. [interpreted text role `:math:`]: http://docutils.sourceforge.net/docs/ref/rst/roles.html#math Raw HTML -------- #### Extension: `raw_html` #### Markdown allows you to insert raw HTML (or DocBook) anywhere in a document (except verbatim contexts, where `<`, `>`, and `&` are interpreted literally). (Technically this is not an extension, since standard Markdown allows it, but it has been made an extension so that it can be disabled if desired.) The raw HTML is passed through unchanged in HTML, S5, Slidy, Slideous, DZSlides, EPUB, Markdown, and Textile output, and suppressed in other formats. #### Extension: `markdown_in_html_blocks` #### Standard Markdown allows you to include HTML "blocks": blocks of HTML between balanced tags that are separated from the surrounding text with blank lines, and start and end at the left margin. Within these blocks, everything is interpreted as HTML, not Markdown; so (for example), `*` does not signify emphasis. Pandoc behaves this way when the `markdown_strict` format is used; but by default, pandoc interprets material between HTML block tags as Markdown. Thus, for example, pandoc will turn
                    " .. caption .. "
                    ' .. h .. '
                    ' .. c .. '
                    *one* [a link](http://google.com)
                    into
                    one a link
                    whereas `Markdown.pl` will preserve it as is. There is one exception to this rule: text between `
              <p>Top-level title</p>
              <p>Section</p>
              <p>Subsection</p>

              This emphasized strong verbatim markdown. See this link[1].

              Ordered list:

               1. one

               2. two

               3. three

              Blockquote is for citatons.

              Code

              block

              is

              for

              code.

              Strikeout is Pandoc's extension. Superscript and subscripts too: H2O is a liquid[2]. 210 is 1024.

              Math is another Pandoc extension: E = m c^2.