我正在使用 Maruku 降价处理器。我想要这个
*blah* blah "blah" in [markdown](blah)
<script src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
...do stuff...
</script>
但是当我用大量错误渲染它时它会抱怨。第一个是
___________________________________________________________________________
| Maruku tells you:
+---------------------------------------------------------------------------
| Could you please format this better?
| I see that "<script type='text/javascript'>" is left after the raw HTML.
| At line 31
| raw_html |<script src='http://code.jquery.com/jquery-1.4.2.min.js' /><script type='text/javascript'>|
| text --> |//<![CDATA[|
然后其余的似乎解析器要疯了。然后它将 javascript 呈现到页面上的 div 中。我尝试将其设置为 CDATA 块,并在 jquery 和我的脚本之间设置额外的间距。
帮助?