What I’m trying to do
I am using linter, and want to easily convert (often imported) text like this
# Headline
Text
to this
# Headline
Text
This is the way I have always written Markdown, and it has consistently worked for me. Now i am tired of meticulously stepping through the document, deleting every break between headline and body text manually.
Things I have tried
I see that Linter has a setting called Heading Blank lines. This even has a toggle to disable line before and after the heading, but linting it with the “after” setting off provides no results.
While it does remove more than 2 line breaks after Heading, it only deletes line breaks that extends two line breaks. Although it doesn’t add line breaks If it is just a single br, it also doesn’t remove it, which seems weird when there is even a setting for removing the “bottom” part of the blank line argument.
I have meticulously walked through the myriad of settings in Linter to see if I have any potential settings that provides this disobedience to my want, but can’t seem to find it.
Can I make Linter do this? To simply remove the double line break after Headings?