diff options
author | Joe Mooring <[email protected]> | 2024-05-03 18:06:10 -0700 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-05-10 22:32:02 +0200 |
commit | ca9a77ef92eb0cb7bb5193e4e3afa4abb26d577c (patch) | |
tree | c3a7d5353fb516695b63a9a011bcc35dae280956 /docs | |
parent | b1bf0bff2c8ce1e2cace5010a81911a3dbf8e674 (diff) | |
download | hugo-ca9a77ef92eb0cb7bb5193e4e3afa4abb26d577c.tar.gz hugo-ca9a77ef92eb0cb7bb5193e4e3afa4abb26d577c.zip |
markup/goldmark: Support extras extension
Enables inclusion of these HTML elements in Markdown:
- Inserted Text (++inserted++)
- Mark Text (==marked==)
- Subscript (H~2~O)
- Superscript (1^st^)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/data/docs.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/data/docs.yaml b/docs/data/docs.yaml index dcc96c590..036c21285 100644 --- a/docs/data/docs.yaml +++ b/docs/data/docs.yaml @@ -1065,6 +1065,15 @@ config: enable: false escapedSpace: false definitionList: true + extras: + insert: + enable: false + mark: + enable: false + subscript: + enable: false + superscript: + enable: false footnote: true linkify: true linkifyProtocol: https |