orgmode中表格如何换行

如题,按照网上说的

但是导出html后是这样的

请问如何换行呢

Org mode 的表格应该不支持 multiline cell,可以试试 Emacs 内置的 table.el(emacs) Text Based Tables),Org mode 对其有一定的支持((org) Images and tables)。比如这样一个表格:

+-----------------+--------------------------------+-----------------+
|     Command     |          Description           |   Key Binding   |
+-----------------+--------------------------------+-----------------+
|  forward-char   |Move point right N characters   |       C-f       |
|                 |(left if N is negative).        |                 |
|                 |                                |                 |
+-----------------+--------------------------------+-----------------+
|  backward-char  |Move point left N characters    |       C-b       |
|                 |(right if N is negative).       |                 |
|                 |                                |                 |
+-----------------+--------------------------------+-----------------+

经由 Org 导出 HTML 之后渲染成:

     Command                Description               Key Binding   
  forward-char   
                 
                 
Move point right N characters   
(left if N is negative).        
                                
       C-f       
                 
                 
  backward-char  
                 
                 
Move point left N characters    
(right if N is negative).       
                                
       C-b       
                 
                 

Emacs SE 上有个有些类似的问题:

因为使用的是自定义的css,所以类似的表格导出的样式是不行的,使用latex也是一个办法

1、2、3之间加横线不成么?

这个我试过了,不行的

奇怪我加横线导出的html是这样的,或者你要的不是这样的效果?

1 个赞

应该不是一回事。
加了横线就会生成多个表格了。查看html源码,有多个<table>标签。12是不同的表格。
虽然最后显示的时候, /api/rule参数:name 这两行之间没有分隔线,但是它们是属于两个

的,并不在同一个<td>内。