A parser for org files used in org mode (EMACS)
- Parse files used by org mode with the extension *.org
- Write the results as JSON.
- The JSON file should have the following structure
TASKS
|--| description, deadline, schedule, tags, .... |
|
|
Can be found here https://github.com/200ok-ch/org-parser
I run it using the following instructions
-
clone the project
-
You'll need to install the following packages in emacs:
- clojure-mode - a major mode for editing Clojure and ClojureScript code
- CIDER - a Clojure interactive development environment and REPL for Emacs
- projectile(optional) - for navigating inside your projects swiftly
-
Install leiningen from https://leiningen.org/
-
run
#+begin_src sh :results verbatim :exports both lein run test/org_parser/fixtures/schedule_with_repeater.org #+end_src
Clojure
Waleed Abdeen