Table not render when use Redcarpet in Jekyll GitHub Pages?

后端 未结 3 1340
长发绾君心
长发绾君心 2021-01-30 17:05

As of maruku engine (the default), writing table like

surround text, etc.

| Tables        | Are           | Cool  |
| ------------- |:-------------         


        
3条回答
  •  猫巷女王i
    2021-01-30 17:35

    Adding only markdown: redcarpet into _config.yml is not enough, It's also need the extensions part, e.g.

    markdown: redcarpet
    redcarpet:
      extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
    

提交回复
热议问题