0
4

1 回答 1

1

尝试设置语言并转义括号/引号:

<code class="prettyprint lang-html">
    &lt;button class=&quot;primary&quot;&gt;Button&lt;/button&gt;
</code>

更新:

嗯,实际上我认为您需要使用<pre>而不是<code>

更新 2:试试这个代码(演示):

$(document).ready(function() {
  $('.prettyprint').html(function(i,h){
    return h.replace(/[<>\"\'\t\n]/g, function(m) { return {
      '<' : '&lt;',
      '>' : '&gt;',
      "'" : '&#39;',
      '"' : '&quot;',
      '\t': '  ',
      '\n': '<br/>' // needed for IE
    }[m]});
  });

  prettyPrint();
});
于 2013-05-23T15:09:14.353 回答