Get underlined text with Markdown

前端 未结 7 1211
名媛妹妹
名媛妹妹 2021-01-30 02:35

I am using BlueCloth as a Markdown library for Ruby, and I can\'t find any syntax for getting a text underlined. What is it?

7条回答
  •  Happy的楠姐
    2021-01-30 03:22

    You can wrote **_bold and italic_** and re-style it to underlined text, like this:

    strong>em,
    em>strong,
    b>i,
    i>b {
        font-style:normal;
        font-weight:normal;
        text-decoration:underline;
    }
    

提交回复
热议问题