From 747d982fd4d2f20683115ba9db33c810adaa4040 Mon Sep 17 00:00:00 2001 From: bhchiang Date: Thu, 27 Apr 2023 22:37:54 +0800 Subject: [PATCH] fix: Fix false code indentation in the demo code on the FAQ page. --- content/posts/papermod/papermod-faq.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/content/posts/papermod/papermod-faq.md b/content/posts/papermod/papermod-faq.md index b4ea498..6b5deba 100644 --- a/content/posts/papermod/papermod-faq.md +++ b/content/posts/papermod/papermod-faq.md @@ -207,12 +207,12 @@ and can be added accordingly. ``` params: - assets: - favicon: "" - favicon16x16: "" - favicon32x32: "" - apple_touch_icon: "" - safari_pinned_tab: "" + assets: + favicon: "" + favicon16x16: "" + favicon32x32: "" + apple_touch_icon: "" + safari_pinned_tab: "" ``` - `absolute url` means direct links to external resource: ex. https://web.site/someimage.png @@ -221,12 +221,12 @@ and can be added accordingly. ``` params: - assets: - favicon: "/favicon.ico" - favicon16x16: "/favicon-16x16.png" - favicon32x32: "/favicon-32x32.png" - apple_touch_icon: "/apple-touch-icon.png" - safari_pinned_tab: "/safari-pinned-tab.svg" + assets: + favicon: "/favicon.ico" + favicon16x16: "/favicon-16x16.png" + favicon32x32: "/favicon-32x32.png" + apple_touch_icon: "/apple-touch-icon.png" + safari_pinned_tab: "/safari-pinned-tab.svg" ``` ---