0
我有整合prism代碼有問題的網站簡介的CKEditor
的在線版本語法高亮顯示我已經添加了必需的JS和CSS文件中<head>
標籤但卻亮點似乎並不奏效CKEditor的內嵌代碼片斷突出
注:高亮顯示工作正常枝條完整編輯的版本(「替換」,而不是「內聯」)
這裏是我的代碼:
<title>Title</title>
<link rel="stylesheet" href="plugins/codesnippet/lib/highlight/styles/arta.css">
<script src="ckeditor.js"></script>
<script src="plugins/codesnippet/lib/highlight/highlight.pack.js"></script>
</head>
<body>
<div id="editor" contenteditable="true">
<h1>Hello world!</h1>
<p>I'm an instance of <a href="http://ckeditor.com">CKEditor</a>.</p>
</div>
</body>
<script language="JavaScript">
(function() {
CKEDITOR.inline('editor')
})();
</script>
</html>