You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
baseURL = "http://example.org/" |
|
languageCode = "en-us" |
|
title = "ox-hugo Test Site" |
|
theme = "hugo-bare-min-theme" |
|
|
|
# Mon Dec 18 17:41:00 EST 2017 - kmodi |
|
# Need the canonifyURLs to be true as the test site is |
|
# served in a subdir of https://ox-hugo.scripter.co/ -> |
|
# https://ox-hugo.scripter.co/test/ So links like /images/foo.png |
|
# won't work.. as /images/foo.png would be tried to be searched |
|
# directly under https://ox-hugo.scripter.co/ instead of under |
|
# https://ox-hugo.scripter.co/test/ |
|
canonifyURLs = true |
|
|
|
enableEmoji = true |
|
enableGitInfo = true |
|
|
|
disableFastRender = true # Hugo 0.30 |
|
|
|
pygmentsCodeFences = true # This applies to Chroma too. |
|
pygmentsUseClasses = true # This applies to Chroma too. |
|
|
|
[Taxonomies] |
|
category = "categories" # SINGULAR = "PLURAL" |
|
tag = "tags" |
|
|
|
[Author] |
|
name = "Kaushal Modi" |
|
|
|
[Social] |
|
github = "kaushalmodi" |
|
|
|
[Params] |
|
description = "Test site for ox-hugo package for Emacs/Org-mode." |
|
intro = """ |
|
This is the test site for the <a href="https://github.com/kaushalmodi/ox-hugo"> |
|
<code>ox-hugo</code></a> package for Emacs/Org-mode. |
|
""" |
|
footer = """ |
|
<div style="text-align: center;"> |
|
[<a href="/">Test Site home</a> | <a href="https://ox-hugo.scripter.co/"><code>ox-hugo</code> home</a>] |
|
</div> |
|
""" |
|
custom_css = ["css/style.css"] |
|
[Params.source] |
|
url = "https://github.com/kaushalmodi/ox-hugo" # Mandatory, used in hugo-bare-min-theme single.html, baseof.html |
|
org_dir = "test/site/content-org" |
|
md_dir = "test/site/content"
|
|
|