Google Code Prettify省略了标记

时间:2017-08-23 20:49:23

标签: asp.net-mvc google-code-prettify

在我看来,我有以下代码:

var pattern = new XRegExp("\\pL+", "g");

如果ArticleText只是包含代码语法的文本,例如:

<pre class="prettyprint linenums lang-cs">
    @Model.ArticleText
</pre>

然后,在视图中,此文本显示为一个漂亮的语法突出显示的代码段。但是,如果我想在该文本中添加一些注释,例如:

"public ArticlesViewModel()
{
    public string ArticleName { get; set; }
}"

是否有任何标记可以包含该注释,Code-Prettify会忽略它?

1 个答案:

答案 0 :(得分:1)

来自代码:

/**
* A class that indicates a section of markup that is not code, e.g. to allow
* embedding of line numbers within code listings.
* @const
*/
var PR_NOCODE = 'nocode'