23 lines
1.1 KiB
Org Mode
23 lines
1.1 KiB
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
|
|
- handle #+RESULTS: raw and stuff
|
|
- support more keywords: https://orgmode.org/manual/In_002dbuffer-settings.html
|
|
- #+LINK
|
|
- #+INCLUDE
|
|
- table colgroups https://orgmode.org/worg/org-tutorials/tables.html
|
|
- table pretty printing
|
|
*** TODO [[https://github.com/chaseadamsio/goorgeous/issues/10][#10]]: Support noexport
|
|
*** TODO [[https://github.com/chaseadamsio/goorgeous/issues/31][#31]]: Support #+INCLUDE
|
|
- see https://orgmode.org/manual/Include-files.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
|