Reputation: 4849
I'm trying to use Jupyter in PyCharm. It is nice what JetBrains have done. I'm writing some markdown in a cell but the table is not rendering as it should.
# 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)
Everything renders but tables.Does anyone know the syntax to render tables in this environment before I open a ticket in JetBrains?
Upvotes: 1
Views: 5940
Reputation: 13078
According to https://www.jetbrains.com/help/hub/Markdown-Syntax.html#quick-notes-markdown-tables you can use the following syntax:
Month | Assignee | Backup
---:|:---:| ---
**January** | Dave | _Steve_
**February** | Gregg | _Karen_
**March** | Diane | _Jorge_
Which as of the Professional 2020.2
version, render as follows:
Upvotes: 0
Reputation: 31
Here is one way to make a table. Use this in Markdown and tailor it to your need.
<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>
Upvotes: 3