Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-01-05 | Update copyright notices to include 2018 | Albert Krewinkel | 1 | -2/+2 | |
2017-12-21 | Merge pull request #4177 from stencila/jats-xml-reader | John MacFarlane | 1 | -18/+29 | |
Add Basic JATS reader based on DocBook reader | |||||
2017-12-21 | JATS writer: Make <p> optional in <td> and <th> (#4178) | Hamish Mackenzie | 1 | -0/+3 | |
If the contents are single `Plain` block then do not wrap them with a <p> element. | |||||
2017-12-21 | jats writer: Self closing tags for empty xref (#4187) | Hamish Mackenzie | 1 | -2/+5 | |
2017-12-22 | Improve support for code language in JATS | Hamish Mackenzie | 1 | -18/+29 | |
2017-12-14 | Deduplicate JATS writer image mime type code | Hamish Mackenzie | 1 | -15/+14 | |
2017-12-13 | fig, table-wrap & caption Divs for JATS writer | Hamish Mackenzie | 1 | -6/+30 | |
Support writing <fig> and <table-wrap> elements with <title> and <caption> inside them by using Divs with class set to on of fig, table-wrap or cation. The title is included as a Heading so the constraint on where Heading can occur is also relaxed. Also leaves out empty alt attributes on links. | |||||
2017-10-31 | Properly pass through author metadata in JATS writer. | John MacFarlane | 1 | -41/+14 | |
Closes #4020. | |||||
2017-10-29 | Source code reformatting. | John MacFarlane | 1 | -3/+3 | |
2017-10-29 | hlint suggestions. | John MacFarlane | 1 | -19/+18 | |
2017-10-27 | Automatic reformating by stylish-haskell. | John MacFarlane | 1 | -3/+3 | |
2017-06-20 | Writers: adjusted for renderTemplate' changes. | John MacFarlane | 1 | -3/+3 | |
Now we raise a proper error on template failure. | |||||
2017-06-20 | Docbook, JATS, TEI writers: print INFO message when omitting interior header. | John MacFarlane | 1 | -2/+4 | |
This only applies to section headers inside list items, e.g., which were otherwise silently omitted. See #3750. | |||||
2017-06-11 | Switched Writer types to use Text. | John MacFarlane | 1 | -5/+7 | |
* XML.toEntities: changed type to Text -> Text. * Shared.tabFilter -- fixed so it strips out CRs as before. * Modified writers to take Text. * Updated tests, benchmarks, trypandoc. [API change] Closes #3731. | |||||
2017-05-13 | Update dates in copyright notices | Albert Krewinkel | 1 | -1/+1 | |
This follows the suggestions given by the FSF for GPL licensed software. <https://www.gnu.org/prep/maintain/html_node/Copyright-Notices.html> | |||||
2017-03-31 | JATS writer: put references in `<back>`. | John MacFarlane | 1 | -3/+10 | |
Modified template to include a `<back>` and `<body>` section. This should give authors more flexibility, e.g. to put acknowledgements metadata in `<back>`. References are automatically extracted and put into `<back>`. | |||||
2017-03-30 | JATS writer: use both tex and mml alternatives for math when possible. | John MacFarlane | 1 | -5/+7 | |
2017-03-30 | JATS writer: Fixed bibliography handling. | John MacFarlane | 1 | -5/+6 | |
2017-03-30 | Added JATS writer. | John MacFarlane | 1 | -0/+429 | |
* New module Text.Pandoc.Writer.JATS exporting writeJATS. * New output format `jats`. * Added tests. * Revised manual. |