Closed foo-dogsquared closed 3 years ago
Yeah, I noticed this before, however it matches how org-element.el parses the same input (it does not parse definition terms further), so I didn't fix it.
Though I didn't know that export to html parses terms further. Thanks for checking this!
I'll fix this issue when I'm back from vacation (next Monday)
On Mon, Jun 21, 2021, 06:49 Gabriel Arazas @.***> wrote:
Reference https://orgmode.org/manual/Plain-Lists.html#Plain-Lists
Description list items are unordered list items, and contain the separator ‘::’ to distinguish the description term from the description.
I've used the example from the examples folder as the setup. The description is rendering but the description term does not.
Example input:
[[https://example.com][Example]] :: Hello there!
[[https://github.com][GitHub]] :: This is GitHub, your hub for Git repos.
Gitlab :: Alternative to GitHub
/Sourcehut/ :: Another alternative to GitHub that primarily uses email-based workflows.
/Codeberg/ :: ANOTHER ALTERNATIVE
/self-hosting Git server/ :: /The ultimate Git solution for privacy-oriented individuals!/
Output (formatted to make it easier to read):
- [[https://example.com][Example]]
Hello there!
- [[https://github.com][GitHub]]
This is GitHub, your hub for Git repos.
- *Gitlab*
Alternative to GitHub
- /Sourcehut/
Another alternative to GitHub that primarily uses email-based workflows.
- /Codeberg/
ANOTHER ALTERNATIVE
- /*self-hosting Git server*/
The ultimate Git solution for privacy-oriented individuals!
The expected output (extracted from the HTML exporter from Emacs):
- Example
- Hello there!
- GitHub
- This is GitHub, your hub for Git repos.
- Gitlab
- Alternative to GitHub
- Sourcehut
- Another alternative to GitHub that primarily uses email-based workflows.
- Codeberg
- ANOTHER ALTERNATIVE
- self-hosting Git server
- The ultimate Git solution for privacy-oriented individuals!
It works with ordinary unordered lists so I figured this would be a bug.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rasendubi/uniorg/issues/15, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKNTEYVT5C7UUSRX5P4QDTTT2SB7ANCNFSM47AWJGIQ .
Fixed in #16 and published as v0.3.0.
Reference
I've used the
example
from the examples folder as the setup. The description is rendering but the description term does not.Example input:
Output (formatted to make it easier to read):
The expected output (extracted from the HTML exporter from Emacs):
It works with ordinary unordered lists so I figured this would be a bug.