Aaron Madlon-Kay
Aaron Madlon-Kay
``` /a [[https://example.com][link]]/ ``` This is parsed as an italic run with plain text inside. From https://gitlab.com/publicvoit/orgdown/-/blob/master/doc/tools/Template.org
This is all lumped into a single text run. ```org [fn:1] And this is the content of the footnote. And this is another line. #+BEGIN_SRC swift console.log(`code block works too`)...
The content of quote blocks (and other Greater Blocks) is currently parsed as text, so elements like tables are not recognized.
The first drawer doesn't end at the correct `:END:` but continues to the second `:END:`. ```org * Node with a generic drawer :PROPERTIES: :expectedNodes: 6 :archivedNodes:2 :END: you can define...
```org |-----+-----| | foo | bar | |-----+-----| | 1 | 2 | ``` The first row of this table (hline) is not rendered. From https://github.com/bdewey/org-ruby/blob/e4a6e7d4b351261a70b315c8833ec6da6f42438d/spec/data/tables.org
Search queries don’t quite work how you might expect: the pattern (string or regexp) is matched against (and highlighting applied to) each parsed token separately. So queries that one might...
I get warnings like the below when I update packages via e.g. `package-update-all`. ``` ⛔ Warning (copilot): *temp*-529187 size exceeds 'copilot-max-char' (100000), copilot completions may not work ``` I am...
Fixes #44
I just upgraded my app to Android Gradle Plugin 8 and I get the following error: ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for...
Fixes #42 The logic is getting pretty hairy but I didn't bother with any large refactors because I think moving to async/await is the timing for that.