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

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQueensferry <queensferry.me@gmail.com>2022-03-31 13:30:09 +0300
committerQueensferry <queensferry.me@gmail.com>2022-04-01 08:06:33 +0300
commitad652390dbcf65c2ef158ba0c4f87fe53889aaed (patch)
treed1c1ad7eac92aa590c6d4069db4d2bd8f4add2b5 /config.toml
parent19b54e6ecc9fbd5cd401b79a5606c3c6600ad096 (diff)
docs: explain config options (#13)
Diffstat (limited to 'config.toml')
-rw-r--r--config.toml79
1 files changed, 79 insertions, 0 deletions
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..d8bff0b
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,79 @@
+###################################################
+# BUILT-IN CONFIGURATION OPTOINS #
+# https://gohugo.io/getting-started/configuration #
+###################################################
+
+baseURL = "https://texify.qufy.me" # website root path
+disqusShortname = "" # Disqus shortcode
+enableRobotsTXT = true # /robots.txt
+googleAnalytics = "" # Google Analytics ID
+hasCJKLanguage = true # Chinese/Japanese/Korean
+languageCode = "en" # content language
+paginate = 5 # number of posts each page
+rssLimit = 10 # maximum items in rss feeds
+theme = "hugo-theme-texify" # theme directory name
+title = "TeXify" # website title
+
+[author]
+email = "me@example.com" # your email
+name = "author" # your name
+
+# https://gohugo.io/getting-started/configuration-markup
+[markup]
+defaultMarkdownHandler = "goldmark"
+[markup.goldmark.renderer]
+unsafe = true # enable html in markdown
+[markup.highlight]
+style = "emacs" # syntax highlight style, see https://xyproto.github.io/splash/docs/
+
+# https://gohugo.io/content-management/menus/
+[[menu.main]] # sections in the website header
+identifier = "post" # section id
+name = "Post" # section display title
+url = "/" # path to the section
+weight = 1 # order of sections
+[[menu.main]]
+identifier = "archives"
+name = "Archives"
+url = "/post/"
+weight = 2
+[[menu.main]]
+identifier = "about"
+name = "About"
+url = "/about/"
+weight = 3
+
+# https://gohugo.io/getting-started/configuration/#configure-minify
+[minify]
+minifyOutput = false # output asset minimization
+
+
+########################
+# TEXIFY THEME OPTIONS #
+########################
+
+[params]
+description = "an example site for hugo theme TeXify" # website description
+favicon = "/favicon.ico" # path to website icon
+footnote = """
+Follow me on <a class=link href=https://github.com/queensferryme>GitHub</a>,
+<a class=link href=https://twitter.com/queensferryme>Twitter</a> or
+<a class=link href=/index.xml>RSS</a> |
+<a class=link href=https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh target=_blank rel=noopener>CC BY-NC-SA 4.0</a>
+""" # notes in the website footer
+keywords = ["hugo", "latex", "theme"] # website keywords
+
+customCSS = [] # path to custom css files, relative to './static/css/'
+customJS = [] # path to custom js files, relative to './static/js/'
+dateFormat = "2006-01-02" # date format, see https://gohugo.io/functions/format/
+enableFullRSS = true # rss full-text output
+enableHanEmph = true # use dots to emphasize chinese texts, see https://zh.wikipedia.org/wiki/%E7%9D%80%E9%87%8D%E5%8F%B7
+enableMathjax = true # enable mathjax for rendering math formulas
+
+# https://utteranc.es
+[params.utterances]
+enable = false
+repo = ""
+issue_term = "pathname"
+label = "Comment"
+theme = "github-light"