Org.jl
Org.jl copied to clipboard
A Julia library for working with Org.
The `parsetree` function seems to have issues with unicode documents in paragraphs, in specific positions Can be reproduced by running this code ```julia using Org parsetree(org"* Test Heading This is...
Right now, there is no way to easily traverse the org-mode syntax tree. I recommend a function be implemented to query the child elements of an OrgComponent in a generic...
I think that 24:00 as time is allowed in org-mode. But Org.jl fails to parse it (or Dates.Time).
I tried to parse my personal notes file (approx 15,000 lines) and got this error. The first 1500 lines are OK but 1800 lines fail. Can you give a hint...
Is Org.jl is intended to throw errors sometimes instead of warnings? I think it would be more useful to always parse successfully and only show warnings for suspicious org code....
Currently, the (in-progress) HTML renderer outputs to a string (or, rather, to an IO buffer). It would be more convenient to render it to an HTML syntax tree structure. This...
This warning came up a lot when I tried out the package: ``` Warning: No method for converting Org.RegularLink to a term representation currently exists ``` It would be great...
On master, we currently have ```julia using Org ``` ```julia t = org""" \begin{equation*} f(x) = x^2 \end{equation*} with lists Test \begin{equation*} f(x) = x^2 \end{equation*} """ ``` \begin{equation*} f(x)...
As the title says:) `$...$` are supported by default in Org, so it seems like something that would be useful to support in Org.jl too. I noticed there aren't any...
## Description When a block element is indented, immediately after an item and not closed off with its respective `#+end_NAME`, the parser errors. The error does not occur if the...