Make whitespace more consistent.

This commit is contained in:
George Field 2020-08-01 15:31:05 +01:00
parent b3147e3dd8
commit 8e3ed9af3b
2 changed files with 48 additions and 48 deletions

View File

@ -30,7 +30,7 @@ Refer to the [Hugo docs](https://gohugo.io/getting-started/quick-start/) for mor
## Image shortcode for large images ## Image shortcode for large images
To add images using the resize-image shortcode included with this theme, you will need to create a [Post Bundle](https://gohugo.io/content-management/organization/#page-bundles). Create a folder for your post, put your Markdown file and images inside, and rename your Markdown file `index.md`. For example: To add images using the resize-image shortcode included with this theme, you will need to create a [Post Bundle](https://gohugo.io/content-management/organization/#page-bundles). Create a folder for your post, put your Markdown file and images inside, and rename your Markdown file `index.md`. For example:
``` ```
my-new-post my-new-post
@ -45,7 +45,7 @@ Then, you can add an image within your Markdown file by using the shortcode like
{{< resize-image src="image1.jpg" alt="My first image" >}} {{< resize-image src="image1.jpg" alt="My first image" >}}
``` ```
Add captions like this: Add captions like this:
``` ```
{{< resize-image src="image2.png" alt="My second image" caption="My caption" >}} {{< resize-image src="image2.png" alt="My second image" caption="My caption" >}}
@ -97,7 +97,7 @@ codepen = "#"
# Academic # Academic
googlescholar = "#" googlescholar = "#"
impactstory = "#" impactstory = "#"
orcid = "#" orcid = "#"
# Travel # Travel
googlemaps = "#" googlemaps = "#"
@ -111,10 +111,10 @@ Add your Disqus shortname and Google Analytics identifier in the `config.toml` f
``` ```
# Add your Disqus shortname here. # Add your Disqus shortname here.
disqusShortname = "" disqusShortname = ""
# Add your Google Analytics identifier: UA-XXXXXXXX-X # Add your Google Analytics identifier: UA-XXXXXXXX-X
googleAnalytics = "" googleAnalytics = ""
``` ```
## Ko-fi donation button ## Ko-fi donation button
@ -130,4 +130,4 @@ kofi = ""
## License ## License
Released under the [MIT License](https://github.com/kimcc/hugo-theme-noteworthy/blob/master/LICENSE.md). Released under the [MIT License](https://github.com/kimcc/hugo-theme-noteworthy/blob/master/LICENSE.md).

View File

@ -7,25 +7,25 @@ paginate = 4 # Set the number of posts to show before overflowing to the next pa
summaryLength = 10 # Configure how long the post summary should be on the homepage. summaryLength = 10 # Configure how long the post summary should be on the homepage.
# Add your Google Analytics identifier: UA-XXXXXXXX-X # Add your Google Analytics identifier: UA-XXXXXXXX-X
googleAnalytics = "" googleAnalytics = ""
# Add your Disqus shortname here. # Add your Disqus shortname here.
disqusShortname = "" disqusShortname = ""
[taxonomies] [taxonomies]
tag = "tags" tag = "tags"
[author] [author]
name = "kimcc" name = "kimcc"
# Set to false to disallow raw HTML in markdown files # Set to false to disallow raw HTML in markdown files
[markup.goldmark.renderer] [markup.goldmark.renderer]
unsafe = true unsafe = true
[params] [params]
math = true math = true
# Blog description at the top of the homepage. Supports markdown. # Blog description at the top of the homepage. Supports markdown.
description = "Noteworthy is a minimalist Hugo theme, perfect for writers and bloggers." description = "Noteworthy is a minimalist Hugo theme, perfect for writers and bloggers."
showReadMore = false showReadMore = false
@ -33,45 +33,45 @@ disqusShortname = ""
enableKofi = false enableKofi = false
kofi = "" kofi = ""
# Add links to your accounts. Remove the ones you don't want to include. # Add links to your accounts. Remove the ones you don't want to include.
# Main # Main
email = "#" email = "#"
facebook = "#" facebook = "#"
twitter = "#" twitter = "#"
instagram = "#" instagram = "#"
tumblr = "#" tumblr = "#"
reddit = "#" reddit = "#"
pinterest = "#" pinterest = "#"
youtube = "#" youtube = "#"
vimeo = "#" vimeo = "#"
weibo = "#" weibo = "#"
vk = "#" vk = "#"
linkedin = "#" linkedin = "#"
# Writing # Writing
medium = "#" medium = "#"
blogger = "#" blogger = "#"
wordpress = "#" wordpress = "#"
# Creative & Visual # Creative & Visual
dribbble = "#" dribbble = "#"
behance = "#" behance = "#"
deviantart = "#" deviantart = "#"
flickr = "#" flickr = "#"
# Audio & Music # Audio & Music
soundcloud = "#" soundcloud = "#"
# Programming # Programming
github = "#" github = "#"
stackoverflow = "#" stackoverflow = "#"
gitlab = "#" gitlab = "#"
codepen = "#" codepen = "#"
# Academic # Academic
googlescholar = "#" googlescholar = "#"
impactstory = "#" impactstory = "#"
orcid = "#" orcid = "#"
# Travel # Travel
googlemaps = "#" googlemaps = "#"
@ -79,22 +79,22 @@ disqusShortname = ""
# Menu links along the sidebar navigation. # Menu links along the sidebar navigation.
[[menu.main]] [[menu.main]]
identifier = "about" identifier = "about"
name = "About" name = "About"
url = "/about/" url = "/about/"
weight = 1 # Weight is an integer used to sort the menu items. The sorting goes from smallest to largest numbers. If weight is not defined for each menu entry, Hugo will sort the entries alphabetically. weight = 1 # Weight is an integer used to sort the menu items. The sorting goes from smallest to largest numbers. If weight is not defined for each menu entry, Hugo will sort the entries alphabetically.
[[menu.main]] [[menu.main]]
identifier = "tags" identifier = "tags"
name = "Tags" name = "Tags"
url = "/tags/" url = "/tags/"
weight = 2 weight = 2
[[menu.main]] [[menu.main]]
name = "Archives" name = "Archives"
identifier = "archives" identifier = "archives"
url = "/archives/" url = "/archives/"
weight = 3 weight = 3
# Privacy configurations: https://gohugo.io/about/hugo-and-gdpr/ # Privacy configurations: https://gohugo.io/about/hugo-and-gdpr/
[privacy] [privacy]
@ -117,4 +117,4 @@ disqusShortname = ""
simple = false simple = false
[privacy.youtube] [privacy.youtube]
disable = false disable = false
privacyEnhanced = true privacyEnhanced = true