Closed Artawower closed 1 year ago
Hey, thanks for the bug report!
It's more likely that space is lost in the uniorg-stringify
rather than parser.
One option to fix that is to add trailing whitespace for checkboxes here: https://github.com/rasendubi/uniorg/blob/da79786f7c3afda29f8fb65052e09ca4fec6d4f3/packages/uniorg-stringify/src/stringify.ts#L86-L92
That makes sense, I thought it was a parser, because I expected the space character to be inside the "value" property. And a structure like children: [ { { { type: 'text', value: 'checkbox 2' } ]
was expected as children: [ { { { type: 'text', value: ' checkbox 2' } ]
. But if it's a stringify thing, that's probably even easier to fix 🙂
This is fixed in uniorg-stringify@1.0.1
Hello! I tried to parse structure like this:
And i see next output:
But I was expecting the original text, is this expected behavior? (Space symbol is lost at the moment of parsing)