{{ message }}
Merged
Conversation
```sh
perl -pi -e '
if (/\`\`\`/) {
$s = ! $s;
next;
};
next if $s;
next if /^#/;
s/([a-z)`]\.) +/$1\n/g;
'
```
x
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Visual Studio Code search and replace. Search: ([a-z])\n([a-z`])(?=[a-z]) Replace: $1 $2 Flags: Case-sensitive, Regular expression Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
perl -pi -e 's/^(\`\`\`[a-z]+)/$1\n/' Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
From previous changes that weren't careful enough about two spaces after periods. perl -pi -e 's/^ ([A-Z])/$1/' Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This reverts commit 2b96821.
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
wraithgar
reviewed
Oct 3, 2025
wraithgar
reviewed
Oct 3, 2025
Member
There was a problem hiding this comment.
I think it missed an inline here.
Contributor
Author
There was a problem hiding this comment.
The unwrapping I'm doing doesn't handle capital letters at the beginning of a line, I just reviewed those manually. I ran out of time for the week and decided to post as is.
I'll do a few more passes through the same files to try to catch things like this. I may have to think about the right way to approach it. Perhaps any line that doesn't end with a ./:/!/? can be unwrapped... I already realized that lines that start with ` or that end with , still deserve to be unwrapped.
Member
wraithgar
approved these changes
Oct 4, 2025
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.

This is a first pass at rewrapping things. The patterns I'm using aren't fully complete, but they're definitely an improvement over the current content.
I don't have any more time today and may not have any time this coming week, but I'll try to do further passes when I have time...
References
Related to #8617 (comment)