go-org-orgwiki/README.org
Niklas Fasching 2947d7632d Support basic #+INCLUDE (src/example/export block only)
including org files is more complex - e.g. footnotes need to be namespaced to
their source file. org does this by prefixing each included files footnotes
with a number - but even that is not enough as it doesn't guarantee
uniqueness.

As I don't have a usecase for it, I'll avoid the additional complexity for
now.
2018-12-14 17:09:00 +01:00

17 lines
791 B
Org Mode

* go-org [[https://travis-ci.org/niklasfasching/go-org.svg?branch=master]]
A basic org-mode parser in go
* motivation
- have a org-mode AST to play around with building an org-mode language server
- hopefully add reasonable org-mode support to hugo - sadly [[https://github.com/chaseadamsio/goorgeous][goorgeous]] is broken & abandoned
* next
- lists with checkboxes
- property drawers
- support more keywords: https://orgmode.org/manual/In_002dbuffer-settings.html
* resources
- syntax
- https://orgmode.org/worg/dev/org-syntax.html
- https://github.com/abo-abo/org-mode/blob/mirror/lisp/org.el
- https://github.com/abo-abo/org-mode/blob/mirror/lisp/org-element.el
- test cases
- [[https://github.com/bdewey/org-ruby/blob/master/spec/html_examples][org-ruby]]
- pandoc, goorgeous