我在Jupyter Notebook上使用Python 3.4内核。我注意到Markdown单元格中存在一些不一致的行为。例如,如果我有
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input type="checkbox" name="help_text" value="1" />
<input type="checkbox" name="help_text" value="2" />
<input type="checkbox" name="help_text" value="3" />
<input type="checkbox" name="help_text" value="4" />
<input type="checkbox" name="help_text" value="5" />
</form>
<div id="text"></div>
有时,它显示如下,字体大小不同:
## Students
### John
### Mary
但有时它前面有数字:
Student
John
Mary
为什么会发生这种情况,我该如何控制它?谢谢!