Create a table without a header in Markdown

后端 未结 11 2037
有刺的猬
有刺的猬 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

    $ cat foo.md
    Key 1 | Value 1
    Key 2 | Value 2
    
    $ kramdown foo.md
    
Key 1 Value 1
Key 2 Value 2

提交回复
热议问题