33
I Use This!
Activity Not Available

Commits : Listings

Analyzed 11 months ago. based on code collected 11 months ago.
Jan 18, 2023 — Jan 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Need to export TMPDIR in tempdir.sh. More... almost 18 years ago
On Cygwin, set TMPDIR to . before using mktemp. Otherwise one gets an error creating the output file in the /tmp directory. I haven't tracked this one down, but this should serve as a workaround. More... almost 18 years ago
Reverted r471. My alternative to --strip-trailing-cr didn't work. This only affects the test target on systems without GNU diff (rare), so I'm not too worried about it. More... almost 18 years ago
Small tweak on last demo in website. More... almost 18 years ago
Added DocBook to description of package in Pandoc.cabal.in. More... almost 18 years ago
Small change in web page for "Pandoc features." More... almost 18 years ago
Cleaned up markdown2pdf.in. Note that bibtex does not return an error condition when it gives warnings, so instead we grep for warnings or error messages to see if we need to print the log. More... almost 18 years ago
Minor changes to markdown2pdf: removed an unnecessary '|| exit $?', and made sure error output goes to stderr. More... almost 18 years ago
Fixed docbook writer test -- removed named entities. More... almost 18 years ago
Don't use named entities in docbook writer. Instead, use numerical entities, for portability across stylesheets. More... almost 18 years ago
Added comment relevant to last revision. More... almost 18 years ago
Replaced diff --strip-trailing-cr with something more portable in runtests.pl. (This is a GNU option.) More... almost 18 years ago
Removed "Extra-source-files" from Pandoc.cabal.in, since it seems to cause problems on GHC 6.4.1! More... almost 18 years ago
Changes to markdown2pdf.in: + Exit if pandoc fails (second time through) -- no need to store the log for this. + Run pdflatex up to three times, if needed to resolve references. Also run bibtex as needed. + Minor reformatting. More... almost 18 years ago
Minor cleanups in markdown2pdf.in. More... almost 18 years ago
Change to Makefile to add features page to website. More... almost 18 years ago
Improvements in website: + Descriptions on examples. + New "features" page highlighting Pandoc's features. + Small other improvements. More... almost 18 years ago
Moved up processing of --dump-args so that output file won't be created first! More... almost 18 years ago
Added notice about pandoc-announce list to web page. More... almost 18 years ago
Small css change on website. More... almost 18 years ago
Formatting changes in debian/changelog, and added note about backslash escaping changes. More... almost 18 years ago
+ Changed 'escapedChar' in Markdown reader so that only the characters Markdown escapes are escaped in strict mode. When not in strict mode, Pandoc allows all non-alphanumeric characters to be escaped. + Added documentation of backslash escapes to README. More... almost 18 years ago
+ Export TEXINPUTS variable. More... almost 18 years ago
Various fixes in markdown2pdf. More... almost 18 years ago
Removed unneeded "export" statements. More... almost 18 years ago
Documentation changes corresponding to r456. More... almost 18 years ago
Modified shell scripts to use new Pandoc --dump-args and --ignore-args features. This allows a simpler, cleaner design. More... almost 18 years ago
Have pandoc return exit code 2 whenever a usage message is produced, even if it's because a bad option was specified. More... almost 18 years ago
Changes to Pandoc's options to facilitate wrapper scripts: + removed -d/--debug option + added --dump-args option, which prints the name of the output file (or '-' for STDOUT) and all the command-line arguments (excluding Pandoc options and their arguments), one per line, then exits. Note that special wrapper options will be treated as arguments if they follow '--' at the end of the command line. Thus, pandoc --dump-args -o foo.html foo.txt -- -e latin1 will print the following to STDOUT: foo.html foo.txt -e latin1 + added --ignore-args option, which causes Pandoc to ignore all (non-option) arguments, including any special options that occur after '--' at the end of the command line. + '-' now means STDIN as the name of an input file, STDOUT as the name of an output file. So, pandoc -o - - will take input from STDIN and print output to STDOUT. Note that if multiple '-o' options are specified on the same line, the last one takes precedence. So, in a script, pandoc "$@" -o - will guarantee output to STDOUT, even if the '-o' option was used. + documented these changes in man pages, README, and changelog. More... almost 18 years ago
Added [breaklinks=true] to latex writer test case. More... almost 18 years ago