为什么没有标记('#content')渲染得很好

时间:2017-05-11 16:40:39

标签: javascript markdown

现在我的html文件中有三个脚本。并且mystyle.js中没有任何关于标记的代码。

所以这里的问题是:

在localhost中输出我的html文件

enter image description here

另一个site渲染得很好

enter image description here

我想知道为什么会这样?谢谢!

<script type="text/javascript" src="{% static 'jquery/jquery.min.js' %}"></script>
<script type="text/javascript" src="{% static 'bootstrap/js/bootstrap.min.js' %}"></script>
<script type="text/javascript" src="{% static 'js/mystyle.js' %}"></script>

1 个答案:

答案 0 :(得分:1)

您需要在哈希和文本之间放置一个空格。标记不会正确呈现它。

// prints <p>headline</p>
marked('#headline');
// prints <h1>headline</h1>
marked('# headline');