aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index 0cdbfe8..b3652b8 100644
--- a/README.md
+++ b/README.md
@@ -21,3 +21,18 @@ git annex pull # this may take some time
hugo -e gemini # generate capsule in directory "public/capsule"
hugo -e web # generate website in directory "public/website"
```
+
+## Commit Hugo Pages
+
+To grammar check Hugo pages prior to commit, configure the Git hook. This step is optional.
+
+### Required Software
+
+- language_tool_python
+
+### Commands
+
+```sh
+chmod +x hooks/pre-commit
+git config --local core.hooksPath hooks
+```