redeemefy
redeemefy

Reputation: 4849

Markdown syntax for table in Jupyter PyCharm

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)

enter image description here

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

Answers (2)

rodrigo-silveira
rodrigo-silveira

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:

enter image description here

Upvotes: 0

Kalekidan Adugna
Kalekidan Adugna

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

Related Questions