Find a file
Niklas Fasching 7331d24452 Add support for list item checkboxes (e.g. [X])
see https://orgmode.org/manual/Checkboxes.html
We're deviating from Org mode regarding the assigned css classes but the chosen
classes feel better than (on, off, trans) and it's not like the export matches
1:1 otherwise.
2018-12-18 14:15:35 +01:00
etc html: Render headline priority 2018-12-17 22:39:29 +01:00
org Add support for list item checkboxes (e.g. [X]) 2018-12-18 14:15:35 +01:00
.gitignore Set up github pages 2018-12-11 15:42:41 +01:00
.travis.yml Add wasm demo to github pages 2018-12-16 19:54:17 +01:00
main.go Support basic #+INCLUDE (src/example/export block only) 2018-12-14 17:09:00 +01:00
Makefile Support basic #+INCLUDE (src/example/export block only) 2018-12-14 17:09:00 +01:00
README.org Add support for list item checkboxes (e.g. [X]) 2018-12-18 14:15:35 +01:00

go-org https://travis-ci.org/niklasfasching/go-org.svg?branch=master

A basic Org mode parser in go. Take a look at github pages for some examples and an online org -> html demo (requires wasm support).

next

differences to goorgeous

To get a feeling take a look at goorgeous vs go-org html rendering of the examples comparison. Please note that a visual comparison is not fair to goorgeous as the stylesheet is not adapted to it. Nonetheless, the html output can be compared by taking a look in the developer console where relevant.

  • no headline ids
  • not changing links to .org files into links to .html files

  • org comments not rendered as html comments (same as ox-html.el)
  • headline priority not exported to html (same as ox-html.el)
  • goorgeous treats all `file:` links as images - go-org checks for an image file extension (same as ox-html.el)
  • no support for [@10] in ordered lists https://github.com/chaseadamsio/goorgeous/issues/18

    • do not plan to implement this