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

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/markup
AgeCommit message (Collapse)Author
2019-12-12markup/tableofcontents: Add config option for ordered listGavin D. Howard
2019-12-11markup: Add typographic chars from goldmark to tocDaniel Tang
Fixes #6592
2019-12-02markup: Reimplement pygmentsCodefencesGuessSyntaxBjørn Erik Pedersen
Fixes #6565
2019-11-27deps: Update GoldmarkBjørn Erik Pedersen
Closes https://github.com/yuin/goldmark/issues/36#event-2832923993
2019-11-25resources/images: Make the image cache more robustBjørn Erik Pedersen
Also allow timeout to be set as a duration string, e.g. `30s`. Fixes #6501
2019-11-24markup/highlight: Replace the temp for with a dependencyBjørn Erik Pedersen
2019-11-24deps: Update GoldmarkBjørn Erik Pedersen
2019-11-23markup/tableofcontents: GoDoc etc.Bjørn Erik Pedersen
2019-11-23Minor cleanupsCameron Moore
Use fmt.Fprint were appropriate instead of Fprintf. Remove some unused code.
2019-11-23Add Goldmark as the new default markdown handlerBjørn Erik Pedersen
This commit adds the fast and CommonMark compliant Goldmark as the new default markdown handler in Hugo. If you want to continue using BlackFriday as the default for md/markdown extensions, you can use this configuration: ```toml [markup] defaultMarkdownHandler="blackfriday" ``` Fixes #5963 Fixes #1778 Fixes #6355
2019-11-06Prepare for GoldmarkBjørn Erik Pedersen
This commmit prepares for the addition of Goldmark as the new Markdown renderer in Hugo. This introduces a new `markup` package with some common interfaces and each implementation in its own package. See #5963