aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-07-15Markdown reader: Added inlinesInBalanced parser combinator tofiddlosopher1-29/+24
unify treatment of embedded brackets in links and inline footnotes. Note that the solution adopted here causes one of John Gruber's markdown tests to fail: [with_underscore](/url/with_underscore) Here the whole phrase "underscore](/url/with" is treated as emphasized. The previous version of the markdown reader handled this the way Gruber's script handles it, but it ran into trouble on the following: [link with verbatim `]`](/url) where the inner ] was treated as the end of the reference link label. I don't see any good way to handle both cases in the framework of pandoc, so I choose to require an escape in the first example: [with\_underscore](/url/with_underscore) git-svn-id: https://pandoc.googlecode.com/svn/trunk@729 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Added charsInBalanced parser combinator to Text.Pandoc.ParserCombinators.fiddlosopher1-1/+17
This is not currently used, but should be useful in parsing strings containing balanced pairs of brackets or parentheses. git-svn-id: https://pandoc.googlecode.com/svn/trunk@728 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15debian/control: For pandoc package, suggestfiddlosopher1-1/+1
'texlive-latex-recommended | tetex-extra' instead of 'texlive-latex-base | tetex-bin'. This brings in fancyvrb, which is used in the default LaTeX header, and (at least in texlive) unicode support. git-svn-id: https://pandoc.googlecode.com/svn/trunk@727 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Changes to ConTeXt test suite.fiddlosopher1-25/+32
git-svn-id: https://pandoc.googlecode.com/svn/trunk@726 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15ConTeXt writer changes:fiddlosopher2-4/+11
+ Use defined blockquote environment for block quotes (smaller font, no indent, narrower text) + Changed default font to 12pt + Changed default page layout git-svn-id: https://pandoc.googlecode.com/svn/trunk@725 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Documented ConTeXt writer in README. Removed statementfiddlosopher1-27/+27
that table output is limited to HTML and LaTeX writers, since it is now supported in all writers. git-svn-id: https://pandoc.googlecode.com/svn/trunk@724 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Main.hs: If writer is "context", automatically selectfiddlosopher2-2/+3
smart quotes option. web/demos: Removed redundant -S in context writer demo. git-svn-id: https://pandoc.googlecode.com/svn/trunk@723 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Documented ConTeXt writer in pandoc man page.fiddlosopher1-4/+4
git-svn-id: https://pandoc.googlecode.com/svn/trunk@722 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Changes to the website:fiddlosopher2-10/+19
+ Mentioned ConTeXt writer in general description. + Added two demos involving the ConTeXt writer. git-svn-id: https://pandoc.googlecode.com/svn/trunk@721 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15If output file has .ctx or .context extension,fiddlosopher1-0/+2
assume it is ConTeXt format unless otherwise specified. git-svn-id: https://pandoc.googlecode.com/svn/trunk@720 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Updated FreeBSD pkg-descr to mention groff man andfiddlosopher1-1/+1
ConTeXt output formats. git-svn-id: https://pandoc.googlecode.com/svn/trunk@719 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Updated package descriptions in debian/control to mention ConTeXt writer.fiddlosopher1-6/+6
git-svn-id: https://pandoc.googlecode.com/svn/trunk@718 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Updated package description in pandoc.cabal tofiddlosopher1-2/+2
include ConTeXt output format. git-svn-id: https://pandoc.googlecode.com/svn/trunk@717 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Merged branches/context: addition of a ConTeXt writerfiddlosopher10-1/+1140
<http://www.pragma-ade.nl/>. + Text.Pandoc.Writers.ConTeXt added. + Text.Pandoc modified to export the basic ConTeXt writer. + Main.hs modified to recognize 'context' as a writer. + ConTeXtHeader added to headers + DefaultHeaders.hs template modified to include ConTeXt header + Tests added (writer.context, tables.context), and runtests.pl modified to run them + pandoc.cabal updated to include Text.Pandoc.Writers.ConTeXt. git-svn-id: https://pandoc.googlecode.com/svn/trunk@716 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-15Removed an unused function in LaTeX writer.fiddlosopher1-2/+0
git-svn-id: https://pandoc.googlecode.com/svn/trunk@714 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Simplified special character escaping code in LaTeX writer.fiddlosopher1-12/+18
git-svn-id: https://pandoc.googlecode.com/svn/trunk@705 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Small comment fix in LaTeX writer.fiddlosopher1-1/+1
git-svn-id: https://pandoc.googlecode.com/svn/trunk@704 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Removed some unnecessary files from web directory.fiddlosopher5-271/+0
git-svn-id: https://pandoc.googlecode.com/svn/trunk@700 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Revamped website.fiddlosopher6-95/+193
git-svn-id: https://pandoc.googlecode.com/svn/trunk@699 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Changed title in README to "Pandoc User's Guide."fiddlosopher1-2/+2
git-svn-id: https://pandoc.googlecode.com/svn/trunk@698 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-14Change to footnotes in HTML writer: Instead of putting the footnotefiddlosopher2-20/+23
backlink on a line by itself, after the content of the note, we now put it at the end of the last paragraph of the footnote. This saves space and looks better. More specifically: + If the last block of the note is a Para or Plain block, the backlink is put at the end of that block's contents. + Otherwise, the backlink is put in a separate Plain block by itself, after the footnote's contents. git-svn-id: https://pandoc.googlecode.com/svn/trunk@697 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-13Minor modification in debian/control:roktas1-1/+1
+ Suggest 'texlive-latex-base | tetex-bin' as per the suggestion of Debian TeX Task force: http://pkg-tetex.alioth.debian.org/mapping-texlive.html#general + As for the 'latex-ucs', it dates from those days of teTeX which didn't support UTF-8 and it will probably become obsolete some day. Hence, we shouldn't rely on it. git-svn-id: https://pandoc.googlecode.com/svn/trunk@695 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-13Added note in README about how you might want to link tofiddlosopher1-2/+12
an external ASCIIMathML.js script instead of including it in the generated HTML file using -m. git-svn-id: https://pandoc.googlecode.com/svn/trunk@694 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-13Changes to debian/control:fiddlosopher1-20/+20
+ Description updated with new features. + Suggest latex-ucs instead of tetex-bin. latex-ucs will bring in either tetex-bin or texlive-latex-base, and will ensure that the package required to use UTF-8 is present. Note: texlive is now the preferred debian LaTeX package. git-svn-id: https://pandoc.googlecode.com/svn/trunk@693 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-13Changed encodeUTF8 to toUTF8, decodeUTF8 to fromUTF8,fiddlosopher3-25/+23
for clarity. git-svn-id: https://pandoc.googlecode.com/svn/trunk@692 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Cleaned up Text.Pandoc. Added lots of documentation,fiddlosopher1-5/+30
including an example program. git-svn-id: https://pandoc.googlecode.com/svn/trunk@691 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12HTML reader: haddock comment fix.fiddlosopher1-1/+1
git-svn-id: https://pandoc.googlecode.com/svn/trunk@690 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Main: use Text.Pandoc to simplify list of imported modules.fiddlosopher1-24/+9
git-svn-id: https://pandoc.googlecode.com/svn/trunk@689 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Export NoteTable in Text.Pandoc.Shared.fiddlosopher1-0/+1
git-svn-id: https://pandoc.googlecode.com/svn/trunk@688 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Fuller package description in pandoc.cabal.fiddlosopher1-8/+26
git-svn-id: https://pandoc.googlecode.com/svn/trunk@687 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Pandoc.hs:fiddlosopher1-21/+14
+ added haddock documentation + added export of prettyPandoc and writeMan git-svn-id: https://pandoc.googlecode.com/svn/trunk@686 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Change to defaultWriterOptions: standalone is False by default.fiddlosopher1-1/+1
git-svn-id: https://pandoc.googlecode.com/svn/trunk@685 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Minor formatting tweaks for pandoc website.fiddlosopher2-3/+3
git-svn-id: https://pandoc.googlecode.com/svn/trunk@684 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Make sure custom header includes things needed for tables!fiddlosopher1-3/+5
Also, remove paragraph spacing commands, so it looks more different from the default. git-svn-id: https://pandoc.googlecode.com/svn/trunk@683 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Removed odf demo from website Examples page. (docbook2odf is buggyfiddlosopher1-14/+10
on code blocks, and anyway we're demonstrating pandoc here, not docbook2odf.) git-svn-id: https://pandoc.googlecode.com/svn/trunk@682 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Slightly larger table of header identifiers, so stuff doesn't wrap on LaTeXfiddlosopher1-1/+1
output. git-svn-id: https://pandoc.googlecode.com/svn/trunk@681 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12README: Documented scheme for header identifiers in HTML.fiddlosopher1-34/+69
git-svn-id: https://pandoc.googlecode.com/svn/trunk@680 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Documented --toc/--table-of-contents option in pandoc manfiddlosopher2-0/+10
page and README. git-svn-id: https://pandoc.googlecode.com/svn/trunk@679 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12If writer == "s5", don't set table of contents option.fiddlosopher1-1/+2
(The TOC would have to be put on a slide, but in most cases it won't fit anyway.) git-svn-id: https://pandoc.googlecode.com/svn/trunk@678 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-12Changed order of options, for aesthetic reasons.fiddlosopher1-5/+5
git-svn-id: https://pandoc.googlecode.com/svn/trunk@677 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-11Further tweaks to website css.fiddlosopher1-3/+4
git-svn-id: https://pandoc.googlecode.com/svn/trunk@676 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-11Small css tweaks for website. (Smaller sans-serif font,fiddlosopher1-1/+5
larger monospace for balance.) git-svn-id: https://pandoc.googlecode.com/svn/trunk@675 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-11Changes to website:fiddlosopher2-5/+5
+ Makefile: rebuild examples if 'demos' changes + New syntax for docbook2odf example + New --toc examples for HTML and RST git-svn-id: https://pandoc.googlecode.com/svn/trunk@674 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-11Use smartquotes and table of contents in generatingfiddlosopher1-1/+1
README.html. git-svn-id: https://pandoc.googlecode.com/svn/trunk@673 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-10Small changes to website.fiddlosopher2-3/+3
git-svn-id: https://pandoc.googlecode.com/svn/trunk@672 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-10Updated features.txt in website.fiddlosopher1-6/+8
git-svn-id: https://pandoc.googlecode.com/svn/trunk@671 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-10README: Documented man page writer, special title-linefiddlosopher1-21/+33
conventions for man pages. git-svn-id: https://pandoc.googlecode.com/svn/trunk@670 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-10Use "Pandoc User Manuals" as bottom-left footer in manfiddlosopher4-4/+4
pages. git-svn-id: https://pandoc.googlecode.com/svn/trunk@669 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-10Recognize output filenames with any single-digit extension as manfiddlosopher1-1/+1
format. git-svn-id: https://pandoc.googlecode.com/svn/trunk@668 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-07-09Added a test case with an inline link containing bracketed text.fiddlosopher11-10/+16
git-svn-id: https://pandoc.googlecode.com/svn/trunk@667 788f1e2b-df1e-0410-8736-df70ead52e1b