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
摘自 Vue 中文翻译 wiki
在加粗段落,仅当影响 markdown 渲染情况下,将最后一个句号或逗号、冒号,迁移到 ** 右侧,否则保持原样。(讨论:vuejs/docs-next-zh-cn#49、vuejs/docs-next-zh-cn#78) // 情况1: **相对胜于晦涩。**例如,一个 `<BlogPost>` 组件例子比 `<CurrencyExchangeSettings>` 更好。 // vuepress 无法渲染 (调整为:) **相对胜于晦涩**。例如,一个 `<BlogPost>` 组件例子比 `<CurrencyExchangeSettings>` 更好。 // 迁移句号有加粗符号右侧 // 情况2:不影响渲染,保持原样 **你好,世界。** ==> **你好,世界。** (不影响渲染,保持原样)
**
// 情况1: **相对胜于晦涩。**例如,一个 `<BlogPost>` 组件例子比 `<CurrencyExchangeSettings>` 更好。 // vuepress 无法渲染 (调整为:) **相对胜于晦涩**。例如,一个 `<BlogPost>` 组件例子比 `<CurrencyExchangeSettings>` 更好。 // 迁移句号有加粗符号右侧 // 情况2:不影响渲染,保持原样 **你好,世界。** ==> **你好,世界。** (不影响渲染,保持原样)
该判断逻辑技术上的难点是需要在 markdown parser 处理之前进行分析和修正。目前 zhlint 暂不支持,且并没有深入到 markdown parser 的定制当中。
如果要做的话,处理逻辑和 zhlint 的其它功能之间应该也是相对独立的。 解决方案待讨论
更多示例记录:
异步组件默认就是 **“suspensible”** 的
The text was updated successfully, but these errors were encountered:
No branches or pull requests
摘自 Vue 中文翻译 wiki
该判断逻辑技术上的难点是需要在 markdown parser 处理之前进行分析和修正。目前 zhlint 暂不支持,且并没有深入到 markdown parser 的定制当中。
如果要做的话,处理逻辑和 zhlint 的其它功能之间应该也是相对独立的。
解决方案待讨论
更多示例记录:
异步组件默认就是 **“suspensible”** 的
The text was updated successfully, but these errors were encountered: