如何在IntelliJ IDEA中插入降价表?

2guxujil  于 2023-02-18  发布在  IntelliJ IDEA
关注(0)|答案(6)|浏览(104)

我正在使用IDEA 2019.3 Ultimate Edition,它附带了降价支持。我尝试插入一个如下的表格:

| Key   | Func   |
|-------|--------|
| cmd+n | search |

但是我发现tab不起作用,IDEA不能帮助缩进表格,所以我不得不手动添加大量的-。有没有一种有效的方法可以在IDEA中插入表格?

8zzbczxx

8zzbczxx1#

Intellij社区版2020.3.3

|header 1|header 2|
---|---
|xyz|x|
|xyz|y|
ldxq2e6h

ldxq2e6h2#

确保表格上方有一个空行,以便呈现该表格:

Some texts:

| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |

(使用activedecay的文本示例)

72qzrwbm

72qzrwbm3#

适用于IntelliJ IDEA版本2020.2.3

| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |
iyfjxgzm

iyfjxgzm4#

由于2022.1,您可以使用Code > Generate... > TableInsert... > Tablecmd-N)插入表格。
您可以在Markdown插件中查看官方IDEA文档以获取表格支持。

kadbb459

kadbb4595#

我认为目前这是不可能的。
作为一种解决方法,您可以使用Markdown Table Generator,它允许您在生成markdown代码的同时能够在普通表中输入数据。

cpjpxq1n

cpjpxq1n6#

这并没有解决OP最初的问题,但希望它能帮助其他人,因为IDEA没有呈现他们的降价表而到达这里。
在我的例子中,我需要在第二行添加更多的-字符。IDEA似乎需要至少3个破折号才能显示降价表。

错误

输入
| Some | Table | Header | Values | 
| :-: | :-: | :-- | --: |
| Centre | Centre | Left | Right |
输出
| Some | Table | Header | Values | 
| :-: | :-: | :-- | --: |
| Centre | Centre | Left | Right |

正确

输入
| Some | Table | Header | Values | 
| :---: | :---: | :--- | ---: | 
| Centre | Centre | Left | Right |
输出
-----------------------------------
|  Some  |  Table | Header | Values |
| Centre | Centre | Left   |  Right |
 -----------------------------------

相关问题