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

github.com/fncnt/vncnt-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid M. Coe <david.coe@gmail.com>2020-04-15 06:59:07 +0300
committerGitHub <noreply@github.com>2020-04-15 06:59:07 +0300
commit2e4c948f998c87e18b77117623a1637fa7e45d6d (patch)
tree5a07b3ac4d1fbceaeac5273603ba043031bdbab2
parentb0a1d45f891c352a40c70f3bc457ddbd6b881847 (diff)
Restore hard line break
It looks like the renderer was changed in [Hugo 0.60.0](https://gohugo.io/news/0.60.0-relnotes/) to be CommonMark compliant. The previous hard line break needs to be updated to (sortof?) match the [CommonMark hard line break](https://spec.commonmark.org/0.29/#hard-line-breaks) This is currently broke on the [Demo Site](https://themes.gohugo.io/theme/vncnt-hugo/) linked from https://themes.gohugo.io/vncnt-hugo/
-rw-r--r--config.toml5
1 files changed, 1 insertions, 4 deletions
diff --git a/config.toml b/config.toml
index ae17d5b..9aa9baf 100644
--- a/config.toml
+++ b/config.toml
@@ -15,9 +15,6 @@ language = "en"
theme = "vncnt-hugo"
title = "John Doe · Landing Page"
-[blackfriday]
- extensions = ["hardLineBreak"]
-
[permalinks]
fixed = ":title/"
posts = "posts/:slug/"
@@ -26,7 +23,7 @@ title = "John Doe · Landing Page"
author = "John Doe"
email = "john.doe@example.com"
description = "Landing Page"
- bio = "First Row. \nSecond Row."
+ bio = "First Row. \nSecond Row."
avatar = "img/avatar.jpg"
favicon = "img/favicon.ico"
error404 = "There is no such page."