Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Deininger <andreas@deininger.net>2022-10-05 02:47:21 +0300
committerGitHub <noreply@github.com>2022-10-05 02:47:21 +0300
commitc937bcd845ded247fc9a334a515087fbe6b2a29c (patch)
treee2604dc1074eb52aa109ee2c5c223bd90ee80cb1
parent07ff9a5bff3d08e6a43c678e1fc97ef895b34261 (diff)
Userguide, installation via npm: correct themes directory (#1213)
-rw-r--r--package.json2
-rw-r--r--userguide/content/en/docs/get-started/other-options.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index 8354a64..da7c541 100644
--- a/package.json
+++ b/package.json
@@ -25,6 +25,6 @@
"bootstrap": "4.6.2"
},
"devDependencies": {
- "hugo-extended": "0.102.2"
+ "hugo-extended": "0.102.3"
}
}
diff --git a/userguide/content/en/docs/get-started/other-options.md b/userguide/content/en/docs/get-started/other-options.md
index c53a11c..9678709 100644
--- a/userguide/content/en/docs/get-started/other-options.md
+++ b/userguide/content/en/docs/get-started/other-options.md
@@ -266,8 +266,8 @@ instead create a symbolic link to the Docsy theme directory as follows (Linux
commands shown, executed from the site root folder):
```sh
-mkdir -p theme
-pushd theme
+mkdir -p themes
+pushd themes
ln -s ../node_modules/docsy
popd
```