diff --git a/docs/guide/asset-url.md b/docs/guide/asset-url.md index 34a0ce8fb..5150625dc 100644 --- a/docs/guide/asset-url.md +++ b/docs/guide/asset-url.md @@ -25,7 +25,8 @@ By default the following tag/attribute combinations are transformed, and can be video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ``` diff --git a/docs/options.md b/docs/options.md index f57932b96..50e3346e0 100644 --- a/docs/options.md +++ b/docs/options.md @@ -14,7 +14,8 @@ sidebar: auto video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ``` diff --git a/docs/ru/guide/asset-url.md b/docs/ru/guide/asset-url.md index 4f404a256..906893052 100644 --- a/docs/ru/guide/asset-url.md +++ b/docs/ru/guide/asset-url.md @@ -25,7 +25,8 @@ createElement('img', { video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ``` diff --git a/docs/ru/options.md b/docs/ru/options.md index 5c5fc7e7d..8eccb2c68 100644 --- a/docs/ru/options.md +++ b/docs/ru/options.md @@ -14,7 +14,8 @@ sidebar: auto video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ``` diff --git a/docs/zh/guide/asset-url.md b/docs/zh/guide/asset-url.md index 0269851ca..c56250875 100644 --- a/docs/zh/guide/asset-url.md +++ b/docs/zh/guide/asset-url.md @@ -25,7 +25,8 @@ createElement('img', { video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ``` diff --git a/docs/zh/options.md b/docs/zh/options.md index 6f2e793b9..8c904cbbe 100644 --- a/docs/zh/options.md +++ b/docs/zh/options.md @@ -14,7 +14,8 @@ sidebar: auto video: ['src', 'poster'], source: 'src', img: 'src', - image: 'xlink:href' + image: ['xlink:href', 'href'], + use: ['xlink:href', 'href'] } ```