markdownlint icon indicating copy to clipboard operation
markdownlint copied to clipboard

[Feature Request] Checking Space around Embedded Code, Bold and Italic

Open fyc09 opened this issue 7 months ago • 2 comments

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 someinlinecode 一些重要的信息 一些inline代码

fyc09 avatar Jul 16 '24 10:07 fyc09