Examples of files

Formatted text files

Here is a list of example files.

Each file is produced with the command that directly precedes it.

Original TXT file

My Markdown file

pandoc -S -o usconstitution.odt usconstitution.md

ODT file created by Pandoc

pandoc -S -o usconstitution.docx usconstitution.md

DOCX file created by Pandoc

pandoc -S --title="THE CONSTITUTION OF THE UNITED STATES OF AMERICA, 1787" -o usconstitution.html usconstitution.md && pandoc -S --toc -o usconstitution.pdf usconstitution.html

PDF file created by Pandoc (first stage conversion to HTML to preserve table formatting)

pandoc -S --reference-odt=apa.ott -o usconstitution-apa.odt usconstitution.md

ODT file created by Pandoc with reference file for styling

Examples of files -