We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在设置了 { inlineCode: true } 以后,也不会在反引号 "`" 与中文之间加上空格,如
{ inlineCode: true }
中文`abc`中文
预期的效果是
中文 `abc` 中文
但是没有见效。
The text was updated successfully, but these errors were encountered:
{ inlineCode: true } 好像不是控制这个特性的,是控制「是否对行内代码块内的中英文混排进行格式化」。
Sorry, something went wrong.
@lostpg 是的,{ inlineCode: true } 是处理 inline code 内部的格式: 中文abc中文 → 中文 abc 中文
中文abc中文
中文 abc 中文
我理解大多数情况下 inline code 前后是否加空格和中英文没特别大关系,一般是全部都加或全部都不加。如果是输出到 HTML 的话,甚至可以直接通过 CSS padding margin 等来控制前后间距。
用在格式化 Markdown 本身的话,好的格式 inline code 前后的 text 应该是要加上空格。不过要做到这个好像仅仅对每一个结点内部进行格式化不顶用,需要结合前后结点的类型和文本首尾的内容来判断处理了。
No branches or pull requests
在设置了
{ inlineCode: true }
以后,也不会在反引号 "`" 与中文之间加上空格,如预期的效果是
但是没有见效。
The text was updated successfully, but these errors were encountered: