zedtools
zedtools
Just tested 0.25.9 on iOS and macOS (don't have access to my Windows PC at the moment), and it is fixed on both of them. This was an issue on...
Thanks for the regex... I'll definitely be using it. It still doesn't handle the scenario of indenting text in a list without a bullet. According to https://help.obsidian.md/syntax, you can do...
I modified the regex slightly (adding `\s+\S` on the end) to prevent adding a newline if the next paragraph after a list item is indented. `(^(?:[\t ]*(?:[-+*]|\d+\.)\s+.*))(\n)(?!\s*(?:[-+*]|\d+\.)\s|\s*$|\s+\S)` It still does...