You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the headings shifting is done by line. Not with an actual markdown parser.
# Heading```nix# Comment```
Will result in
### Heading```nix### Comment```
Notice that the code comment got shifted as well. To fix this we could use a markdown parser, or use a simple regex to check if we are within a code block.
The text was updated successfully, but these errors were encountered:
Currently the headings shifting is done by line. Not with an actual markdown parser.
Will result in
Notice that the code comment got shifted as well. To fix this we could use a markdown parser, or use a simple regex to check if we are within a code block.
The text was updated successfully, but these errors were encountered: