屬性 - Attributes

你可以在 Avane 模板中輕鬆地定義一個元素的屬性。

Avane

// 基本上是這樣
a(href='google.tw', target='_blank', title='Google') Google

// 省去逗點也可以
a(href='google.tw' target='_blank' title='Google') Google

// 或者像這樣
a(
    href="google.tw"

        target  =
            '_blank',

title = Google)
    | Google

渲染效果

<!-- 基本上是這樣 -->
<a href="google.tw" target="_blank" title="Google">Google</a>
<!-- 省去逗點也可以 -->
<a href="google.tw" target="_blank" title="Google">Google</a>
<!-- 或者像這樣 -->
<a href="google.tw" target="_blank" title="Google">Google</a>

results matching ""

    No results matching ""