From 75743968c039784dc735cbebb162eefcad1328d3 Mon Sep 17 00:00:00 2001 From: Jim HL Wei <60511633+jimhwei@users.noreply.github.com> Date: Mon, 8 Mar 2021 09:55:59 -0500 Subject: [PATCH] Update quick-start.md removed extra quotation strings that prevents hugo from launching Error code: Error: "C:\Hugo\academic\config.toml:4:1": unmarshal failed: Near line 4 (last key parsed 'theme = "academic"'): expected key separator '=', but got '\r' instead --- content/en/getting-started/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/getting-started/quick-start.md b/content/en/getting-started/quick-start.md index 28b6b039b..5d88ce75d 100644 --- a/content/en/getting-started/quick-start.md +++ b/content/en/getting-started/quick-start.md @@ -78,7 +78,7 @@ git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/anan Then, add the theme to the site configuration: ```bash -echo 'theme = "ananke"' >> config.toml +echo theme = "ananke" >> config.toml ``` {{< asciicast 7naKerRYUGVPj8kiDmdh5k5h9 >}}