fix(taskfile): preserve wrapped Worklog continuation lines - #59
Merged
Conversation
Non-bullet lines following a `- ` Worklog entry now attach to that entry instead of falling into unknownLines, so parse->write->parse stays a byte-for-byte fixpoint for hard-wrapped entries.
Contributor
|
📦 Build succeeded — installable Download from the run's Artifacts, unzip, then install: |
Contributor
|
🎉 This PR is included in version 2.21.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
parseTaskFile's Worklog branch now attaches non-bullet lines that follow a-entry to that entry as continuation lines instead of dumping them intounknownLines.serializeTaskFilewrites the entry's first line with the-bullet prefix and re-emits continuation lines verbatim (their original leading whitespace), keepingserializeTaskFile(parseTaskFile(x))a byte-for-byte fixpoint for wrapped entries.## Worklogbranch only, per t-wlg1's settled scope (preserve-verbatim, option A) — Meta/Description/Delivered handling and.loopboard/tasks/t-glb2.md's existing scrambled worklog are untouched.Test plan
make check(build +node --test+vsce package) greentest/fixtures/taskfile-full.mdwith a wrapped Worklog entry (bullet + 2 continuation lines)unknownLinescanonical fixture round-trips byte-for-byte) passes against the updated fixture