diff options
author | Joe Mooring <[email protected]> | 2024-06-15 06:45:27 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-06-18 18:56:20 +0200 |
commit | 8efc75b73f4808b7677247e27a18f3ad72416ae4 (patch) | |
tree | 380a251679e6d7207cbaf208576423378371a014 /docs | |
parent | ad6d91cabd84aac1be6e83511a543643562cb1b2 (diff) | |
download | hugo-8efc75b73f4808b7677247e27a18f3ad72416ae4.tar.gz hugo-8efc75b73f4808b7677247e27a18f3ad72416ae4.zip |
markup/goldmark: Add the Hugo Goldmark Extras "delete" extension
With Goldmark v1.7.1 and earlier, the Goldmark "strikethrough" extension was
triggered by wrapping text within a pair of double-tilde characters. With
Goldmark v1.7.2 and later, to provide full GFM compatibility, the Goldmark
"strikethrough" extension is triggered by wrapping text within a pair of
single- or double-tilde characters.
This change created a conflict with the Hugo Goldmark Extras "subscript"
extension.
When enabling the Hugo Goldmark Extras "subscript" extension, if you
want to render subscript and strikethrough text concurrently, you must:
1. Disable the Goldmark "strikethrough" extension
2. Enable the Hugo Goldmark Extras "delete" extension
Closes #12597
Diffstat (limited to 'docs')
-rw-r--r-- | docs/data/docs.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/data/docs.yaml b/docs/data/docs.yaml index 6d85042d7..476d374a1 100644 --- a/docs/data/docs.yaml +++ b/docs/data/docs.yaml @@ -1082,6 +1082,8 @@ config: escapedSpace: false definitionList: true extras: + delete: + enable: false insert: enable: false mark: @@ -1589,8 +1591,8 @@ config: paginate: 0 paginatePath: "" pagination: - defaultPageSize: 10 disableAliases: false + pagerSize: 10 path: page panicOnWarning: false params: {} |