Create a table without a header in Markdown

后端 未结 11 2059
有刺的猬
有刺的猬 2021-01-30 07:42

Is it possible to create a table without a header in Markdown?

The HTML would look like this:



        
      
      
      
11条回答
  •  面向向阳花
    2021-01-30 08:27

    If you don't mind wasting a line by leaving it empty, consider the following hack (it is a hack, and use this only if you don't like adding any additional plugins).

    | | | |
    |-|-|-|
    |__Bold Key__| Value1 |
    | Normal Key | Value2 |
    

    To view how the above one could look, copy the above and visit https://stackedit.io/editor

    It worked with GitLab/GitHub's Markdown implementations.

提交回复
热议问题