Python笔记本降价:彩色笔记框中的项目符号点

时间:2018-10-22 11:36:31

标签: python jupyter-notebook markdown

我才刚刚开始使用警报框(jupyter降价单元格中的彩色注释框)。这些非常有用。但是,我试图在彩色框中包含一个项目符号列表,它似乎不起作用。有没有简单的方法可以做到这一点,还是我应该放弃? Here is some documentation about colored boxes

例如,在jupyter的markdown单元格中包含以下代码。这个想法是要能够用项目要点逐项列出。

<div class="alert alert-block alert-warning">
<b>Example:</b> These is the content of the box. Here is my list:
- item 1
- item 2
</div>

谢谢!

1 个答案:

答案 0 :(得分:1)

在大多数情况下,一旦输入html的“域”,最好坚持使用html,这将为您节省大量时间。只需使用

<div class="alert alert-block alert-warning">
<b>Example:</b> These is the content of the box. Here is my list:
<ul>
    <li>item 1</li>
    <li>item 2</li>
</ul>
</div>