Github pages cannot display markdown correctly

后端 未结 3 1253
挽巷
挽巷 2020-12-06 21:54

I am using github pages + jekyll to establish my blog.

It worked properly before pushed my latest commit. This commit adds a cname file and just edits some w

3条回答
  •  感情败类
    2020-12-06 22:32

    A slight observation running my own Jekyll powered github pages blog,

    A space between the # representing the heading size, and the heading text is important otherwise the markdown will not display as intended. Therefore with your example, I would display my markdown heading as,

    # Zookeeper Atomic Broadcast for heading 1
    
    ## Zookeeper Atomic Broadcast for heading 2
    
    ### Zookeeper Atomic Broadcast for heading 3
    
    #### Zookeeper Atomic Broadcast for heading 4
    
    ##### Zookeeper Atomic Broadcast for heading 5
    

提交回复
热议问题