Find a file
Niklas Fasching 0eb3baf1bb Improve handling of elements containing raw text
While adding another test case from the goorgeous issues it became clear that
inline markup and html entity replacement were erronously applied to raw text
elements like inline code =foo=, src/example/export blocks, example lines,
etc.

To correctly handle those cases in both org and html exports a new
parseRawInline method had to be added.

Also some misc html export whitespace fixes and stuff
2018-12-17 13:40:15 +01:00
etc Add support for descriptive lists 2018-12-17 01:38:46 +01:00
org Improve handling of elements containing raw text 2018-12-17 13:40:15 +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 descriptive lists 2018-12-17 01:38:46 +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.

next

other differences to goorgeous

  • 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)