shd101wyy / vscode-markdown-preview-enhanced

One of the "BEST" markdown preview extensions for Visual Studio Code
https://shd101wyy.github.io/markdown-preview-enhanced
Other
1.47k stars 174 forks source link

3-space prefixed paragraph after an ordered list item + a code quote isn't indented as expected #270

Open mxmlnglt opened 5 years ago

mxmlnglt commented 5 years ago

Check on https://markdown-here.com/ with the following text:

1. Whatever I wanna say, you must get (or just updated) the project dependencies through this simple as f* command:
> `yarn install`

   Beware to wait enough time to go one but check as well the resolution of the dependencies has succeeded!

Both paragraphs are indented the same way. With your extension, they're not. They should.

Note however that if you remove the command line, alignment is fine.

Please check this cheatsheet: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#lists

tmori3y2 commented 4 years ago

Your markdown gives the same result, even in this github comment.

1. Whatever I wanna say, you must get (or just updated) the project dependencies through this simple as f* command:
> `yarn install`

   Beware to wait enough time to go one but check as well the resolution of the dependencies has succeeded!
  1. Whatever I wanna say, you must get (or just updated) the project dependencies through this simple as f* command:

    yarn install

    Beware to wait enough time to go one but check as well the resolution of the dependencies has succeeded!


Probably there is not enough blockquote indentation.

Try it!

1. Whatever I wanna say, you must get (or just updated) the project dependencies through this simple as f* command:
   > `yarn install`

   Beware to wait enough time to go one but check as well the resolution of the dependencies has succeeded!
  1. Whatever I wanna say, you must get (or just updated) the project dependencies through this simple as f* command:

    yarn install

    Beware to wait enough time to go one but check as well the resolution of the dependencies has succeeded!