我正试着在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)

在我在JetBrains中打开一个票证之前,有谁知道在这个环境中渲染表的语法吗?
发布于 2018-08-26 07:40:54
这里有一种制作桌子的方法。在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>发布于 2020-11-04 16:35:35
根据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版本开始,按如下方式呈现:

https://stackoverflow.com/questions/41246319
复制相似问题