Has Emmet a syntax for adding URL
into <a href="">
tag?URLを<a href=""> with Emmet
E.g.:
Syntax:
a:www.google.com
Result:
<a href="www.google.com"></a>
Has Emmet a syntax for adding URL
into <a href="">
tag?URLを<a href=""> with Emmet
E.g.:
Syntax:
a:www.google.com
Result:
<a href="www.google.com"></a>
The general syntax for adding an attribute to an element in Emmet is:
element[attr=value]
So in this case, it'd be:
a[href=www.google.com]
That said, if you just do a
by itself, it should automatically jump the editor cursor into the href
attribute, and you can do a:link
to pre-populate it with a http://
. So those options might be faster/more to your tastes.
For more information, look at the Emmet Cheat Sheetに追加すると、利用可能なすべての構文が一覧表示されます。
やや短い:
a[www.google.com]
等しい:
<a href="www.google.com"></a>
は、[ドキュメント](http://docs.emmet.io/)に関連する部分を見つけることができませんが、それはのために働きます私。 – Pang