summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Docx
Commit message (Collapse)AuthorAge
...
* Docx Reader: Add new file, TexChar.Jesse Rosenthal2014-07-02
| | | | | This will allow us to deal with unicode characters from word equations. This part of the process will need to continue to be improved.
* Docx Reader: Parse omml equations.Jesse Rosenthal2014-07-02
|
* Docx reader: Add ParIndentation type to parser.Jesse Rosenthal2014-06-29
| | | | | This lets us keep more information about the indentation, and act accordingly in the reader.
* Docx reader: Code cleanup in parse.Jesse Rosenthal2014-06-25
| | | | Remove some redundant ways of dealing with Maybe.
* Docx reader: Remove unnecessary filter in Parse.Jesse Rosenthal2014-06-25
| | | | mapMaybe does the filtering for us.
* Docx reader: Parse Insertions and Deletions.Jesse Rosenthal2014-06-25
| | | | | This is just for the Parse module, reading it into the Docx format. It still has to be translated into pandoc.
* Docx Reader: Add change typesJesse Rosenthal2014-06-25
| | | | Insertion and deletion. Dates are just strings for now.
* Add copyright block to T.P.R.Docx.Reducible.Jesse Rosenthal2014-06-23
|
* Move some of the clean-up logic into List module.Jesse Rosenthal2014-06-23
| | | | | This will allow us to get rid of more general functions we no longer need in the main reader.
* Add new typeclass, ReducibleJesse Rosenthal2014-06-23
| | | | | | | | | | | | | | This defines a typeclass `Reducible` which allows us to "reduce" pandoc Inlines and Blocks, like so Emph [Strong [Str "foo", Space]] <++> Strong [Emph [Str "bar"]], Str "baz"] = [Strong [Emph [Str "foo", Space, Str "bar"], Space, Str "baz"]] So adjacent formattings and strings are appropriately grouped. Another set of operators for `(Reducible a) => (Many a)` are also included.
* Add literal tabs to parser.Jesse Rosenthal2014-06-19
|
* Naming: Use Docx instead of DocX.John MacFarlane2014-06-16
For consistency with the existing writer.