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
Added README-WINDOWS with instructions to be included with the binary distribution of Pandoc. Still to be completed. Perhaps this should also be hidden in a subdirectory eventually. More... about 18 years ago
Removed some stray characters (form feeds?) from COPYING. More... about 18 years ago
Added to COPYRIGHT a note that the source code is available from the website, and a link. This is necessary for GPL compliance in binary distributions (as far as I can see). More... about 18 years ago
Removed TODO. ToDo list now maintained on the Wiki at pandoc's Google Code site. (Also in the repository: wiki/ToDo.wiki.) More... about 18 years ago
+ Added regression tests with footnotes in quote blocks and lists. + This uncovered an existing bug in the RTF writer, which got indentation wrong on footnotes occuring in indented blocks like lists. Fixed this bug. More... about 18 years ago
Fixed a serious bug in the Markdown reader (also affecting LaTeX and RST readers). The problem: these readers ran 'runParser' on processed chunks of text to handle embedded block lists in lists and quotation blocks. But then any changes made to the parser state in these chunks was lost, as the state is local to the parser. So, for example, footnotes didn't work in quotes or list items. More... about 18 years ago
Fixed two small haddock bugs. More... about 18 years ago
Added license text to top of source files. More... about 18 years ago
Changed 'stability' from 'provisional' to 'alpha'. More... about 18 years ago
Added some extra fields to Pandoc.cabal.in. More... about 18 years ago
Changed 'status' in comment headers from 'unstable' to 'provisional' (which seems to be the term that is used in this context). More... about 18 years ago
Made javascript obfuscation of emails even more obfuscatory, by combining it with entity obfuscation. More... about 18 years ago
Put notice about the GPL on web page. More... about 18 years ago
+ Added module data for haddock. + Reformatted code consistently. More... about 18 years ago
Obscured email addresses in documents that will be web-accessible. More... about 18 years ago
Modified debian/copyright, and made COPYRIGHT in top level a symlink to it, to avoid duplication. More... about 18 years ago
Removed LICENSE, replacing it with COPYING (text of GPL) and COPYRIGHT (including copyright information and licenses for other packages used). Modified Pandoc.cabal.in and README accordingly. More... about 18 years ago
Cleaned up TODO file. More... about 18 years ago
Modified the HTML writer to add invisible anchors to each section heading. The anchors are derived form the text of the section heading as described in README. This makes it easy to insert links that jump from one part of a document to another: for example, '[back to the Introduction](#Introduction)'. More... about 18 years ago
+ Replaced 'comparing' combinator in markdown reader with 'compare'. 'comparing' is from Data.Ord, which is not available in GHC 6.4. + Added line break after </li> in HTML footnote output, for easier inspection of the source. More... about 18 years ago
Fixed a minor mistake introduced in resolving conflicts from the merge. More... about 18 years ago
Merged changes to footnotes branch r219-r240. More... about 18 years ago
Added 'clean' target to src/templates/Makefile, main Makefile's 'clean' calls it to clean out template-generated files. More... about 18 years ago
Changes to build process relating to r234. + Corrected dependencies in Makefiles to ensure that templates get filled when the relevant files are modified. + Changed template placeholders to @xxx@ instead of <xxx>, for consistency with our practice with the Cabal template. + Changed default font for RTF writer (this had been changed earlier, but in the target rather than the template!) More... about 18 years ago
Removed three files from the repository. These are generated from templates in src/templates, and so should not be in the repository. More... about 18 years ago
Changed footnote syntax to conform to the de facto standard for markdown footnotes. References are now like this[^1] rather than like this^(1). There are corresponding changes in the footnotes themselves. See the updated README for more details. More... about 18 years ago
Changed '--smartypants' to '--smart' and adjusted documentation and symbols accordingly. More... about 18 years ago
+ BUGS now contains a link to pandoc's issue tracker at Google Code. + Modified TODO. More... about 18 years ago
Removed a / in a comment that was causing haddock to fail. More... about 18 years ago
Modified markdown reader to allow ordered list items to begin with (single) letters, as well as numbers. The list item marker may now be terminated either by '.' or by ')'. These extensions to standard markdown are documented in README. More... about 18 years ago