md2html: Support hrefs
这个提交存在于:
父节点
40fd096894
当前提交
0d4b08206d
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
1
md2html
1
md2html
|
@ -59,6 +59,7 @@ function inline(text) {
|
|||
text = gensub(/\*\*([^\*]*)\*\*/, "<strong>\\1</strong>", "g", text)
|
||||
text = gensub(/\*([^\*]*)\*/, "<em>\\1</em>", "g", text)
|
||||
text = gensub(/`([^`]*)`/, "<code>\\1</code>", "g", text)
|
||||
text = gensub(/\[(.*)\]\((.*)\)/, "<a href=\"\\2\">\\1</a>", "g", text)
|
||||
return text
|
||||
}
|
||||
|
||||
|
|
正在加载…
添加表格
添加链接
在新工单中引用