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

github.com/blankoworld/hugo_theme_adam_eve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier DOSSMANN <git@dossmann.net>2020-07-22 22:42:51 +0300
committerOlivier DOSSMANN <git@dossmann.net>2020-07-22 22:42:51 +0300
commit573a82b61e00ad42d144a54980aef535ede59022 (patch)
treee3d240310b9f2d843f0466ba3fc01afc3a9587a8
parent286eb9dd22310b240185232809b450494d63a2fc (diff)
Fix #9 - More documentation about EnableGitInfo and code colorization
-rw-r--r--README.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8adf786..a4bdb7c 100644
--- a/README.md
+++ b/README.md
@@ -62,6 +62,26 @@ To configure the table of content, edit your `config.toml` file and add somethin
It means you start the Table of Content from `h1` to `h6`. You can find [more info about table of content configuration on official Hugo documentation](https://gohugo.io/getting-started/configuration-markup/#table-of-contents).
+### Use git commit date as `last modification date`
+
+If you keep an history of your Hugo website, you can use git commit date as last modification date of each page ([as explained in Hugo documentation about EnableGitInfo](https://gohugo.io/getting-started/configuration/#all-configuration-settings)).
+
+To enable this option, edit your `config.toml` file to add:
+
+```toml
+EnableGitInfo = true
+```
+
+This will enable this explained option.
+
+### Choose code colorization theme
+
+Regarding [list of available themes for Chroma plugin](https://xyproto.github.io/splash/docs/), you can customize your preferred code colorization theme using this line in your `config.toml` file:
+
+```toml
+pygmentsstyle = 'monokai'
+```
+
## Getting Started
### The config file