Jupyter PyCharm中表的Markdown语法

时间:2016-12-20 15:54:13

标签: pycharm markdown jupyter

我试图在PyCharm中使用Jupyter。 JetBrains做得很好。我在单元格中写了一些降价,但表格没有正常渲染。

# This is Markdown code

Item|Description
---|----
Item 1|Some description

|Item|Description|
|---|----|
|Item 1|Some description|

- Item 1
- Item 2

**Gilberto Diaz**

*Gilberto Diaz*

[Google](www.google.com)

enter image description here

所有内容都呈现,但是表格。在JetBrains中打开票证之前,是否有人知道在此环境中呈现表格的语法?

2 个答案:

答案 0 :(得分:1)

这里是制作桌子的一种方法。在Markdown中使用它,并根据需要进行调整。

<table>
<tr>
    <th>Heading 1</th>
    <th>Heading 2</th>
    <th>Heading 3</th> 
</tr>

<tr>
    <td>Replace</td> 
    <td>Replace</td> 
    <td>Replace</td>
</tr>

<tr>
    <td>Replace</td> 
    <td>Replace</td> 
    <td>Replace</td>   
</tr>

</table>

答案 1 :(得分:0)

根据https://www.jetbrains.com/help/hub/Markdown-Syntax.html#quick-notes-markdown-tables,您可以使用以下语法:

Month | Assignee | Backup
---:|:---:| ---
**January** | Dave | _Steve_
**February** | Gregg | _Karen_
**March** | Diane | _Jorge_

Professional 2020.2版本开始,呈现如下:

enter image description here