fix: Fix false code indentation in the demo code on the FAQ page. (#1200)

This commit is contained in:
Ping-Han Chiang 2023-04-28 22:35:56 +08:00 committed by GitHub
parent be00e5a557
commit 7e5d17f08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,12 +207,12 @@ and can be added accordingly.
``` ```
params: params:
assets: assets:
favicon: "<link / absolute url>" favicon: "<link / absolute url>"
favicon16x16: "<link / absolute url>" favicon16x16: "<link / absolute url>"
favicon32x32: "<link / absolute url>" favicon32x32: "<link / absolute url>"
apple_touch_icon: "<link / absolute url>" apple_touch_icon: "<link / absolute url>"
safari_pinned_tab: "<link / absolute url>" safari_pinned_tab: "<link / absolute url>"
``` ```
- `absolute url` means direct links to external resource: ex. https://web.site/someimage.png - `absolute url` means direct links to external resource: ex. https://web.site/someimage.png
@ -221,12 +221,12 @@ and can be added accordingly.
``` ```
params: params:
assets: assets:
favicon: "/favicon.ico" favicon: "/favicon.ico"
favicon16x16: "/favicon-16x16.png" favicon16x16: "/favicon-16x16.png"
favicon32x32: "/favicon-32x32.png" favicon32x32: "/favicon-32x32.png"
apple_touch_icon: "/apple-touch-icon.png" apple_touch_icon: "/apple-touch-icon.png"
safari_pinned_tab: "/safari-pinned-tab.svg" safari_pinned_tab: "/safari-pinned-tab.svg"
``` ```
--- ---