forked from natverse/natverse_hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
37 lines (30 loc) · 1.13 KB
/
config.toml
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
# Title of your site
title = "natverse"
# The URL of your site.
# End your URL with a `/` trailing slash, e.g. `https://example.com/`.
baseurl = "https://natverse.github.io/"
# Name the theme folder in `themes/`.
theme = "hugo-tourmaline"
# Enable analytics by entering your Google Analytics tracking ID
googleAnalytics = ""
relativeurls = false
languageCode = "en-us"
description = "An opinionated collection of R packages designed for data science."
disqusShortname = ""
ignoreFiles = ["\\.Rmd$", "_files$", "_cache$"]
# below is critical for non-authors to show up in article listing
preserveTaxonomyNames = true
# uncomment the next line to disable listing authors
# disableKinds = ["taxonomyTerm"]
[permalinks]
articles = "news/:year/:month/:slug/"
[taxonomies]
author = "author"
category = "categories"
# Configure BlackFriday Markdown rendering.
# See: https://gohugo.io/getting-started/configuration/#configure-blackfriday
[blackfriday]
hrefTargetBlank = true # `true` opens external links in a new tab. See https://github.com/gohugoio/hugo/issues/2424
angledQuotes = false
latexDashes = true
extensions = ["backslashLineBreak"]