如何用javascript删除`<pre></pre>`中的`<code></code>`?

时间:2016-01-21 15:18:51

标签: javascript google-code-prettify

降价时的三重反推呈现为<pre><code class="...">...</code></pre>。更具体地说,

# in markdown
```java

```

# render as 
<pre>
<code class="java">
...
</code>
</pre>

# my expecting result (for Google code prettify):
<pre class="prettyprint linenums lang-java">
...
</pre>

我目前的解决方案是添加以下代码,但它不起作用。

<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?skin=son-of-obsidian></script>

 <script type="text/javascript">
 jQuery(document).ready(function () {
     $('pre code').each(function() {
         var code = $(this).html();
         var lang = $(this).attr('class');
         if (lang) {
             $(this).parent().attr('class', 'prettyprint linenums lang-'+lang).html(code);
         }
     });
     prettyPrint();
 });
 </script>

如何删除<code class="...">...</code>

我使用SyntaxHighlighter <pre class="brush: java">...</pre>WordPress + Windows Live Writer + PreCode(基于SyntaxHighlighter)中突出显示我的代码块。

目前,我转向降价。要在markdown中插入代码块,我使用

```java
code here
```

# OR

<pre class="brush: java">
code here
</pre>

它们都不适合我,因为SyntaxHighlighter要求<pre></pre>内的所有左尖括号都应该是HTML条目转义。

因此,我安装Google代码美化但遇到上述问题(不兼容)。

2 个答案:

答案 0 :(得分:1)

尝试以下内容,如果这对您有用,请告诉我。

$('pre').each(function() {
     var el = $(this).find('code');
     var code = el.html();
     var lang = el.attr('class');
     if (lang) {
         $(this).addClass('prettyprint linenums lang-' + lang).html(code);
     }
 });

JSFiddle Demo

答案 1 :(得分:1)

您忘记从pre元素中删除原始代码对象,导致代码重复。您应该调用$(this).remove();删除旧的代码对象。