summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Default epub CSS: Removed highlighting styles.John MacFarlane2013-07-13
| | | | | These are added automatically to individual chapter files, depending on the highlighting style selected on the command line.
* Docx writer: Make `--no-highlight` work properly.John MacFarlane2013-07-13
|
* Updated a test whose output changed due to last commit.John MacFarlane2013-07-13
|
* Merge pull request #907 from KholdStare/fix-no-highlightJohn MacFarlane2013-07-13
|\ | | | | Checking options before applying syntax highlighting for HTML output
| * Checking options before applying syntax highlighting for HTML outputAlexander Kondratskiy2013-07-13
|/
* Docx writer: Ignore most components of reference.docx.John MacFarlane2013-07-12
| | | | | | | | | We take the word/styles.xml, docProps/app.xml, word/theme/theme1.xml, and word/fontTable.xml from reference.docx, ignoring everything else. Perhaps this will help with the corruption problems caused when different versions of Word resave the reference.docx and reorganize things.
* cabal: Added http-conduit flag, which allows fetching https resources.John MacFarlane2013-07-04
| | | | | | | It also brings in a large number of dependencies (http-conduit and its dependencies), which is why for now it is an optional flag. Closes #820.
* Docx writer: Use w:br with w:type 'textWrapping' for linebreaks.John MacFarlane2013-07-04
| | | | | | | Previously we used w:cr. I don't see a difference between these in my version of Word, but apparently some do. Closes #873.
* Text.Pandoc.UTF8: Use strict bytestrings in reading.John MacFarlane2013-07-04
| | | | | | | The use of lazy bytestrings seemed to cause problems using pandoc on Windows 7/8 64-bit machines. Closes #874.
* LaTeX writer: Don't use ligatures in escaping inline code.John MacFarlane2013-07-04
|
* default.latex: Use tex-ansi mapping for monofont.John MacFarlane2013-07-04
| | | | | This ensures that straight quotes appear as straight, rather than being treated as curly. See #889.
* make-windows-installer.bat: Removed explicit paths for executables.John MacFarlane2013-07-04
|
* `--toc-level` no longer implies `--toc`.John MacFarlane2013-07-03
| | | | | Reason: EPUB users who don't want a visible TOC may still want to set the TOC level for in the book navigation.
* Document YAML metadata blocks.John MacFarlane2013-07-02
|
* Rename `Ext_yaml_title_block` -> `Ext_yaml_metadata_block`.John MacFarlane2013-07-02
|
* Markdown writer: Changed condition for rendering title block.John MacFarlane2013-07-02
| | | | | Previously it was only rendered if title, author, or date set. Now any metadata field can be set.
* Markdown reader: Better error messages for yaml headers.John MacFarlane2013-07-02
|
* Fixed bug retrieving default template for markdown variants.John MacFarlane2013-07-02
|
* Write full metadata in MMD style title blocks.John MacFarlane2013-07-02
|
* Markdown reader: Ignore fields ending with _ in YAML headers.John MacFarlane2013-07-01
|
* Emit warning instead of failing on invalid YAML header.John MacFarlane2013-07-01
|
* Markdown writer: Commas are okay in plain yaml scalars.John MacFarlane2013-07-01
| | | | It's just commas with brackets that can cause problems.
* Markdown writer: Render yaml title block fields in alpha order.John MacFarlane2013-07-01
| | | | | This makes the output predictable; previously it varied across implementations.
* Added Text.Pandoc.Writers.Shared to repository.John MacFarlane2013-07-01
| | | | This should have been in last commit.
* Created Text.Pandoc.Writers.Shared, improved metaToJSON.John MacFarlane2013-07-01
| | | | | | | * Text.Pandoc.Writers.Shared contains shared functions used only in writers. * metaToJSON now takes a WriterOptions parameter, and will return an empty object if standalone is not specified.
* Improvements to yaml title block writer.John MacFarlane2013-07-01
|
* Shared: Export getField.John MacFarlane2013-07-01
|
* Switched order of fields in yaml header (writer test).John MacFarlane2013-07-01
|
* Revert "Markdown writer: Don't include variables in metadata."John MacFarlane2013-07-01
| | | | This reverts commit 0ec8573347d53e0cba70552a50dba697f39216b6.
* Markdown writer: Don't include variables in metadata.John MacFarlane2013-07-01
|
* Markdown writer: Support yaml title block.John MacFarlane2013-06-30
|
* Metadata changes: Variables now completely shadow metadata.John MacFarlane2013-06-29
| | | | | | | | | Previously if you set a value both in metadata and with a variable, they'd be combined into a list. Now the variable replaces the value in document metadata. If many variables with the same name are set, a list is created. Shared: metaToJSON now has an argument for a variable list.
* ConTeXt writer: Properly handle tables without captions.John MacFarlane2013-06-28
| | | | | | | The old output only worked in MkII. This should work in MkIV as well. Closes #837.
* Custom writer: Pass full metadata, not just tit/auth/date.John MacFarlane2013-06-27
|
* Writers: Use defField for defaults.John MacFarlane2013-06-27
| | | | | | | This way explicitly specified fields not overridden. Fixes a problem e.g. with specifying a documentclass via the command line using -V.
* Shared: Added `defField`.John MacFarlane2013-06-27
| | | | | `defField` is like `setField`, but does nothing if the field already has a value.
* Man writer: give more fine-grained control in template.John MacFarlane2013-06-27
| | | | | | | | | | | | | | | | | Now the `title`, `section`, `header`, and `footer` can all be set individually in metadata. The `description` variable has been removed. Quotes have been added so that spaces are allowed in the title. If you have a title that begins COMMAND(1) footer here | header here pandoc will parse it as before into a title, section, header, and footer. But you can also specify these elements explicitly. Closes #885.
* LaTeX reader: Support alltt environment.John MacFarlane2013-06-27
| | | | Closes #892.
* Stop escaping `|` in LaTeX math.John MacFarlane2013-06-26
| | | | This caused problems with array environments. Closes #891.
* Require highlighting-kate 0.5.4.John MacFarlane2013-06-26
|
* Use latest chicago-author-date.csl.John MacFarlane2013-06-25
|
* Fixed 'authors' metadata parsing in reST.John MacFarlane2013-06-25
| | | | Semicolons separate different authors.
* Fixed regression with RTF table of contents.John MacFarlane2013-06-25
|
* Some test suite fixes for new metadata.John MacFarlane2013-06-25
|
* Revised benchmark for new metadata.John MacFarlane2013-06-25
|
* Fixed merge bugs in Shared.John MacFarlane2013-06-25
|
* Removed 'Functor' constraint.John MacFarlane2013-06-25
|
* Merge pull request #886 from aaronwolen/masterJohn MacFarlane2013-06-25
|\ | | | | Document the `citecolor` variable added to the latex template
| * Documented `citecolor` variableAaron Wolen2013-06-24
| |
* | Updated Makefile.John MacFarlane2013-06-25
| |