| Crates.io | acdc-parser |
| lib.rs | acdc-parser |
| version | 0.2.0 |
| created_at | 2025-12-28 19:13:11.808247+00 |
| updated_at | 2026-01-25 11:13:20.621714+00 |
| description | `AsciiDoc` parser using PEG grammars |
| homepage | |
| repository | https://github.com/nlopes/acdc |
| max_upload_size | |
| id | 2009282 |
| size | 2,948,475 |
The implementation here follows from:
<<id>>)Lists are partially implemented. Here's what works and what doesn't.
Ordered and unordered lists
Basic list items with inline content work fine, including:
*, **, ***)[x], [ ])// line comments and [] block attributes)+ continuations in the same item--) wrappers for grouping multiple blocks in a continuationDescription lists
I've implemented basic description list support with several features:
::, :::, ::::, ;;)+) for attaching block contentAncestor list continuation
+)The model supports block attachments (ListItem has both principal: Vec<InlineNode> and blocks: Vec<Block>), and most list features work correctly. The remaining issue is:
+) isn't supported - the parser attaches continuations to the last nested item rather than the parent