org-parser icon indicating copy to clipboard operation
org-parser copied to clipboard

org-parser is a parser for the Org mode markup language for Emacs.

Results 16 org-parser issues
Sort by recently updated
recently updated
newest added

I'm writing a [static site generator](https://github.com/stelcodes/nuzzle) in Clojure that allows users to manipulate intermediate representations of their content markup with functions. I'm using [cybermonday](https://github.com/kiranshila/cybermonday) for markdown files and I'd like...

On the two-line sample file, org-parser takes - 3 seconds with a compiled jar - 7.5 seconds with `lein run` which is probably mainly compilation and runtime initialization. On a...

enhancement
question

Hello, I found your project from the [worg tools list](https://orgmode.org/worg/org-tools/index.html). First, sorry for the semi-spam nature of this issue. I had a notion for a project that the org community...

question

**Describe the bug** Non-ascii tag is not parsed. **To Reproduce** Steps to reproduce the behavior: ``` (read-str "* headline :标签:") {:headlines [{:headline {:level 1, :title [[:text-normal "headline :标签:"]], :planning [],...

bug

In #7, we came to the conclusion that it's good to parse semantic blocks (instead of only line-based parsing), but only if it's possible and clean in EBNF/instaparse. Here is...

documentation
enhancement
help wanted

After changes and before pushing to GitHub, we usually want to: - [X] check if the cljs build still works (`lein cljsbuild once main`) - [X] check if the jar...

Currently, `#+any_keyword: foo bar` is not parsed because only special affiliated keywords are allowed. Allow any keywords and especially macro definitions.

Hi @branch14 @munen , According to the [worg spec](https://orgmode.org/worg/dev/org-syntax.html#Headlines_and_Sections), the (transformed) parse tree should look like this: ``` (document (section) (headline (section) (headline) (headline (headline)))) ``` As for as I...

documentation
question

Problems with the ungreatful and recursive nature of emphasis markup `[/*_+]` are documented in #9, specifically - https://github.com/200ok-ch/org-parser/pull/9#issuecomment-620427370 - https://github.com/200ok-ch/org-parser/pull/9#issuecomment-621258306 A summary in German: Ein Syntaxelement in Orgmode ist ähnlich...

documentation

Can a clojure developer help me with a few things? ## 1 How do you compare lein test output? ``` FAIL in (timestamp) (parser_test.cljc:261) date timestamp with day and time...

documentation
question