This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml
54 lines (47 loc) · 1.51 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# baseURL = "https://example.com" # Change to your site URL and un-comment, of course
languageCode: en-us # Change if not appropriate for your site
title: Site title goes here
theme: hugo-solo
summaryLength: 30 # words --- if you use summaries
FootnoteReturnLinkContents: "↑"
enableRobotsTXT: true
pygmentsUseClasses: true
Paginate: 5 # so five posts will appear on each page from "/posts"
params:
# Domain: "example.com"
Author: "Your name goes here"
Description: "Your site description goes here"
markup:
# Reverting to Hugo-standard Goldmark parser and will handle typographical niceties
# on own (i.e., manually fixing them in my content files),
# due to Goldmark's ongoing and unlikely-to-be-resolved issues with typography:
# -- e.g.,
# https://github.com/gohugoio/hugo/issues/7289,
# https://github.com/yuin/goldmark/issues/39#issuecomment-564810327, and
# https://github.com/yuin/goldmark/issues/180
goldmark:
extensions:
linkify: false
parser:
attribute:
block: true
title: true
renderer:
unsafe: true
# only to allow for inline HTML and/or JS
# ... other desired settings are defaults
highlight:
guessSyntax: true
noClasses: false
menu:
main:
- identifier: "about"
name: "About"
title: "Whatever you call your 'about' page"
url: "/about/"
weight: 100
- identifier: "posts"
name: "Posts"
title: "This site’s posts"
url: "/posts/"
weight: 110