markdownlint
markdownlint copied to clipboard
[Feature Request] Checking Space around Embedded Code, Bold and Italic
Adding spaces around embedded code, bold, and italics is common practice to prevent unexpected rendering errors and make words recognizable. While Chinese can be recognized without spaces, adding spaces can enhance clarity and readability.
Correct:
some *important* point
some `inline` code
一些 *重要* 的信息
一些 `inline` 代码
some important point
some inline
code
一些 重要 的信息
一些 inline
代码
Incorrect:
some*important*point
some`inline`code
一些*重要*的信息
一些`inline`代码
someimportantpoint
someinline
code
一些重要的信息
一些inline
代码