在Slate中禁用语法错误突出显示

时间:2016-08-21 13:58:08

标签: json documentation syntax-highlighting api-doc

当JSON片段中有一些额外的元素时,有没有办法禁用错误突出显示。我的用例是我想在JSON中包含注释以使其更容易理解。我知道它不是语言规范的一部分,但做这样的事情没有红色亮点会很酷:

{
  // this field contains some textual description of the problem occurred
  "description": "Resource not found"
}

是否可以在不修改包含的宝石的情况下轻松影响突出显示样式?

提前致谢!

1 个答案:

答案 0 :(得分:1)

实际上,答案很简单。必须使用json-doc语法高亮显示。在您的MD文件中:

 ```json-doc
   // this field contains some textual description of the problem occurred
  "description": "Resource not found"
 ```