我试图尽可能懒惰地将 URL 列表转换为 HTML 链接:
www.annaandsally.com.au
www.babylush.com.au
www.babysgotstyle.com.au
... etc
使用 wrap 缩写,我想做类似的事情:a[href="http://${1}/"]*
扩展的缩写将导致:
<a href="http://www.annaandsally.com.au/">www.annaandsally.com.au</a>
<a href="http://www.babylush.com.au/">www.babylush.com.au</a>
<a href="http://www.babysgotstyle.com.au/">www.babysgotstyle.com.au</a>
... etc
拼图中缺少的部分是代表被包装文本的缩写标记。
知道这是否可以做到吗?