twitter-bootstrap – twitter bootstrap上的语法高亮

前端之家收集整理的这篇文章主要介绍了twitter-bootstrap – twitter bootstrap上的语法高亮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图突出显示一些语法使用谷歌美化,但到目前为止,它不工作。
<link href="prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="prettify.js"></script>

<body onload="prettyPrint()" bgcolor="white">

<pre class="prettyprint">
  <code class="language-css">
  // Some source code

    class Foo {
      public int Bar { get; set; }
    }
  </code>
</pre>

有没有一个解决方案,使这项工作,而不会太多的pre标签已经在引导?

解决方法

编辑:对于twitter bootstrap 2.0.x,它适用于2.1.x

使用这两个文件,而不是使用文档中描述的方法

http://twitter.github.com/bootstrap/assets/js/google-code-prettify/prettify.css

http://twitter.github.com/bootstrap/assets/js/google-code-prettify/prettify.js

这对我有用

<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/bootstrap.css" type="text/css" rel="stylesheet" />
<link href="prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="prettify.js"></script>
</head>
<body onload="prettyPrint()" bgcolor="white">
<pre class="prettyprint linenums languague-css">
// Some source code
class Foo {
    public int Bar { get; set; }
}
</pre>
</body>
</html>
原文链接:https://www.f2er.com/bootstrap/234220.html

猜你在找的Bootstrap相关文章