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
Removed unneeded WRAPPER_ARGS and WRAPPEE_ARGS variables from src/wrappers/common.sh. More... almost 18 years ago
Cleaned up and improved Makefile target for wrappers. More... almost 18 years ago
Improved Makefile 'wrappers' target. (Previously, it would build all wrappers corresponding to src/wrappers/*.in. Now, it will only build wrappers in WRAPPERS. This might be useful if we decide to have 'hsmarkdown' be a wrapper on Windows and a symlink on unix.) More... almost 18 years ago
Improved test-markdown target in Makefile: + Use 'hsmarkdown' instead of building 'pandoc-strict' (which was a hack, and didn't work on Windows machines, anyway, due to the line ending problem) + Put top-level directory in path before running the test script, so that hsmarkdown can find 'pandoc' even if it hasn't been installed. More... almost 18 years ago
Modified main 'pandoc' program so that if it is called with program name = 'hsmarkdown' (e.g. through a symlink, on a system with real symbolic links), it will translate markdown to HTML in strict mode and interpret all command-line options as arguments, like Markdown.pl. More... almost 18 years ago
CSS changes for website. More... almost 18 years ago
Fixed a bug in website generation, which only worked if 'pandoc' and the wrappers had been installed. More... almost 18 years ago
Added fuller package descriptions to debian/control. More... almost 18 years ago
Moved hsmarkdown to src/wrappers/hsmarkdown.in, so it works with our existing build process. There's no harm in having it be a template, even though there's nothing to fill it. More... almost 18 years ago
Added 'hsmarkdown' wrapper, designed to be used as a drop-in replacement for Markdown.pl. It calls pandoc with the options '--from markdown --to html --strict' and disallows other options. (Any command-line options will be interpreted as arguments.) More... almost 18 years ago
Added package URL to Pandoc.cabal.in. More... almost 18 years ago
Documented change of 'HtmlEntities' to 'Entities' in changelog. More... almost 18 years ago
Change 'HtmlEntities' module to 'Entities'. Adjusted calling code accordingly. More... almost 18 years ago
Use entities for all characters above 127 in docbook output. Though XML tools should support unicode, some people will be using SGML tools, and these do not. Using entities makes the docbook files more portable. More... almost 18 years ago
Changed representation of code blocks to use <screen> and escaped characters rather than <programlisting> and CDATA. Reason: XML source more easily editable and readable. More... almost 18 years ago
Changed description in debian/control to include docbook writer. More... almost 18 years ago
Inserted a needed slash in the Makefile, after $(osx_pkg_name), which is the name of a directory! More... almost 18 years ago
Modified changelog to bring up to date. More... almost 18 years ago
Removed a line that was causing a compiler warning in docbook writer. The line isn't necessary, since we have a case for every kind of block element. More... almost 18 years ago
Added docbook writer to list of exposed modules in Pandoc.cabal.in. More... almost 18 years ago
Merged changes from docbook branch since r363. More... almost 18 years ago
Refactored fillTemplates.pl. More... almost 18 years ago
Added a note to pandoc(1) man page about the differences between standard markdown and Pandoc's markdown-variant. More... almost 18 years ago
Revised inline code parsing in Markdown reader to conform to Markdown.pl. Now any number of `'s can begin inline code, which will end with the same number of `'s. For example, to have two backticks as code, write ``` `` ``` More... almost 18 years ago
Documented makefile targets in INSTALL. More... almost 18 years ago
Simplified list parsing code in RST reader. More... almost 18 years ago
Added instructions for using the GHC profiler. More... almost 18 years ago
Cleaned up some code in RST reader. More... almost 18 years ago
Changed Markdown reader so that the first pass, in which a list of reference keys is made, is much faster. This gets us a big performance boost. More... almost 18 years ago
Removed unneeded 'do' block from 'parseBlocks' definition in Markdown reader. More... almost 18 years ago