uniorg icon indicating copy to clipboard operation
uniorg copied to clipboard

An accurate Org-mode parser for JavaScript/TypeScript

Results 23 uniorg issues
Sort by recently updated
recently updated
newest added

https://github.com/rasendubi/uniorg/blob/466fd42940cd2f83d6ccdd888c1d5938b8f572eb/packages/uniorg-rehype/src/org-to-hast.ts#L335 Currently the export-block supports only HTML. It'd be great if this was extensible so additional backends could be provided and handled. For example, I'd like to be able to...

As per the [official documentation](https://orgmode.org/manual/Escape-Character.html), I am using `U+200B (ZERO WIDTH SPACE)` to break up Org markups in the middle of a "word". However, current implementation seems to ignore its...

To enforce a line break within a paragraph, Org uses `\\` at the end of a line, as shown in [Documentation](https://orgmode.org/manual/Paragraphs.html). For the following simple Org document... ```org \\ ```...

Orgmode has a few keywords you can specify for an image and they are `#+NAME`, `#+CAPTION`, and `#+ATTR_`. Using Uniorg the attr values come through when I specify `ATTR_HTML` (I...

and [[a]] not supported.

I'm trying to get Org-Roam UI to recognise a link setup. `:follow` just works as expected, `:export` to `'html` works as well. In Roam UI, nothing show up rendered. Since...

Hi The org syntax allow to use both UPPERCASE and lowercase keywords. Example: ```org #+PROPERTIES … #+END ``` versus ```org #+properties … #+end ``` Currently, the parser forces the UPPERCASE...

Hi @rasendubi, Is there an idiomatic approach to update the `options` while parsing? There are a few `todoKeywords` defined as default and it is unclear how I idiomatically adapt these...

The following snippet: ```org - item1 - item2 ``` Parses it as: ```json { "type": "org-data", "contentsBegin": 0, "contentsEnd": 15, "children": [ { "type": "plain-list", "affiliated": {}, "indent": 0, "listType":...

# Que? I'm probably breaking plenty of the cases with the semi re-write, but I found the way the plugins were being handled a bit odd. Especially, with the extra...