summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Org/DocumentTree.hs
Commit message (Collapse)AuthorAge
* Update copyright notices to include 2018Albert Krewinkel2018-01-05
|
* Org reader: use tag-name attribute instead of data-tag-name.John MacFarlane2017-08-09
|
* Improve code style in lua and org modulesAlbert Krewinkel2017-06-03
|
* Org reader: apply hlint suggestionsAlbert Krewinkel2017-06-03
|
* Org reader: respect export option for tagsAlbert Krewinkel2017-05-31
| | | | | | | Tags are appended to headlines by default, but will be omitted when the `tags` export option is set to nil. Closes: #3713
* Org reader: include tags in headlinesAlbert Krewinkel2017-05-31
| | | | | | | The Emacs default is to include tags in the headline when exporting. Instead of just empty spans, which contain the tag name as attribute, tags are rendered as small caps and wrapped in those spans. Non-breaking spaces serve as separators for multiple tags.
* Org reader: subject full doc tree to headline transformationsAlbert Krewinkel2017-05-27
| | | | | | | | | Emacs parses org documents into a tree structure, which is then post-processed during exporting. The reader is changed to do the same, turning the document into a single tree of headlines starting at levelĀ 0. Fixes: #3695
* Org reader: replace `sequence . map` with `mapM`Albert Krewinkel2017-05-16
|
* Org reader: put tree parsing code into dedicated moduleAlbert Krewinkel2017-05-16