Tehnix / vscode-tidymarkdown

VS Code formatter using tidymarkdown
https://marketplace.visualstudio.com/items?itemName=tehnix.vscode-tidymarkdown
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

Formatter forces blank lines between (list) items that are underlined #7

Open 2art opened 1 week ago

2art commented 1 week ago

This is what I have:

- <u>Static Typing</u>
- <u>Systems-Level Access</u>
- <u>C-Like Syntax</u>

After formatting:


- <u>Static Typing</u>

- <u>Systems-Level Access</u>

- <u>C-Like Syntax</u>
2art commented 1 week ago

Update: It doesn't even allow me to go full HTML! WTF!

Code before:

<html>
  <ul>
    <li><u>Static Typing</u></li>
    <li><u>Systems-Level Access</u></li>
    <li><u>C-Like Syntax</u></li>
  </ul>
</html>

Code after formatting:


- <u>Static Typing</u>

- <u>Systems-Level Access</u>

- <u>C-Like Syntax</u>