Ben Moon
Ben Moon
I get the message "An unexpected error has occurred." when trying to load https://doc.deno.land/https/deno.land/x/[email protected]/src/monad.ts Source is https://deno.land/x/[email protected]/src/monad.ts Hoping to look into this further, but need to build first. ~Edit: nothing...
Currently, when we parse (actually when we lex) a timestamp we will automatically convert it to a `Date` object based on either a provided or *inferred* timestamp. This has some...
Check the AST at https://orga.js.org?text=foo%0Abar. Here we see that the newline between `foo` and `bar` is actually treated as a space (this is from the lexer). I think this isn't...
It would be great if we could rework the types to better follow [the spec](https://orgmode.org/worg/dev/org-syntax.html). Sure the spec is only a draft, but it should provide a good basis for...
As mentioned in #16, `QUOTE` blocks currently don't allow markup within them, but according to the spec they should. According to the spec, there are two "groups" of block: [greater...
Currently, parsing a list item forgets information about which bullet was used. It would be useful to provide information about which bullet was used so that renderers can decide e.g.,...
Whilst [the spec](https://orgmode.org/worg/dev/org-syntax.html#Timestamp) technically requires that the `DATE` of a timestamp is in the format `YYYY-MM-DD DAYNAME` - Org itself accepts timestamps without the day name, e.g., `[2021-06-27]`. It could...
The readme [currently states](https://github.com/orgapp/orgajs/blob/eac72e62b902b79289cfacd97e9bdf5e09bc9030/README.org) (in contributing): ``` org After you clone the code: #+begin_src shell # Bootstrap the Project yarn run bootstrap # Run Unit Tests yarn test # Play...
For example, with the following: ``` org [[https://duckduckgo.com][Duck *Duck* _Duck_ /Duck/ ~Go~ =Go= +Go+ Go!]] ``` We'd expect some of the markup to be recognised, but it is not. Specifically,...
Possibly related: #74 It would be nice if we had the option to have tables render as e.g., HTML tables. Being able to scroll left/right would be very useful (see...