hugoreleaser [Thu, 23 Jan 2020 12:39:31 +0000 (12:39 +0000)]
releaser: Add release notes to /docs for release of 0.63.0
[ci skip]
hugoreleaser [Thu, 23 Jan 2020 12:39:31 +0000 (12:39 +0000)]
releaser: Bump versions for release of 0.63.0
[ci skip]
Bjørn Erik Pedersen [Thu, 23 Jan 2020 12:12:31 +0000 (13:12 +0100)]
Release 0.63.0
hugoreleaser [Thu, 23 Jan 2020 11:12:11 +0000 (11:12 +0000)]
releaser: Add release notes for 0.63.0
Rename to *-ready.md to continue.
[ci skip]
Bjørn Erik Pedersen [Thu, 23 Jan 2020 10:59:52 +0000 (11:59 +0100)]
docs, output: Add base template lookup variant to docs.json
Bjørn Erik Pedersen [Thu, 23 Jan 2020 10:55:08 +0000 (11:55 +0100)]
docs: Regen docs helper
Bjørn Erik Pedersen [Wed, 22 Jan 2020 10:57:23 +0000 (11:57 +0100)]
Fix 0.62.1 server rebuild slowdown regression
Fixes #6784
Bjørn Erik Pedersen [Thu, 23 Jan 2020 09:48:28 +0000 (10:48 +0100)]
tpl/compare: Fix eq when > 2 args
Fixes #6786
Tan Yuanhong [Sun, 19 Jan 2020 12:52:06 +0000 (20:52 +0800)]
Allow multiple arguments in ne/ge/gt/le/lt functions
Treat op arg1 arg2 arg3 ... as (arg1 op arg2) && (arg1 op arg3)
and so on for ne/ge/gt/le/lt.
Closes #6619
Bjørn Erik Pedersen [Wed, 22 Jan 2020 10:44:29 +0000 (11:44 +0100)]
hugolib: Disable a test assertion on ARM
See #6655
Bjørn Erik Pedersen [Wed, 15 Jan 2020 14:59:56 +0000 (15:59 +0100)]
tpl/tplimpl: Rework template management to get rid of concurrency issues
This more or less completes the simplification of the template handling code in Hugo started in v0.62.
The main motivation was to fix a long lasting issue about a crash in HTML content files without front matter.
But this commit also comes with a big functional improvement.
As we now have moved the base template evaluation to the build stage we now use the same lookup rules for `baseof` as for `list` etc. type of templates.
This means that in this simple example you can have a `baseof` template for the `blog` section without having to duplicate the others:
```
layouts
├── _default
│ ├── baseof.html
│ ├── list.html
│ └── single.html
└── blog
└── baseof.html
```
Also, when simplifying code, you often get rid of some double work, as shown in the "site building" benchmarks below.
These benchmarks looks suspiciously good, but I have repeated the below with ca. the same result. Compared to master:
```
name old time/op new time/op delta
SiteNew/Bundle_with_image-16 13.1ms ± 1% 10.5ms ± 1% -19.34% (p=0.029 n=4+4)
SiteNew/Bundle_with_JSON_file-16 13.0ms ± 0% 10.7ms ± 1% -18.05% (p=0.029 n=4+4)
SiteNew/Tags_and_categories-16 46.4ms ± 2% 43.1ms ± 1% -7.15% (p=0.029 n=4+4)
SiteNew/Canonify_URLs-16 52.2ms ± 2% 47.8ms ± 1% -8.30% (p=0.029 n=4+4)
SiteNew/Deep_content_tree-16 77.9ms ± 1% 70.9ms ± 1% -9.01% (p=0.029 n=4+4)
SiteNew/Many_HTML_templates-16 43.0ms ± 0% 37.2ms ± 1% -13.54% (p=0.029 n=4+4)
SiteNew/Page_collections-16 58.2ms ± 1% 52.4ms ± 1% -9.95% (p=0.029 n=4+4)
name old alloc/op new alloc/op delta
SiteNew/Bundle_with_image-16 3.81MB ± 0% 2.22MB ± 0% -41.70% (p=0.029 n=4+4)
SiteNew/Bundle_with_JSON_file-16 3.60MB ± 0% 2.01MB ± 0% -44.20% (p=0.029 n=4+4)
SiteNew/Tags_and_categories-16 19.3MB ± 1% 14.1MB ± 0% -26.91% (p=0.029 n=4+4)
SiteNew/Canonify_URLs-16 70.7MB ± 0% 69.0MB ± 0% -2.40% (p=0.029 n=4+4)
SiteNew/Deep_content_tree-16 37.1MB ± 0% 31.2MB ± 0% -15.94% (p=0.029 n=4+4)
SiteNew/Many_HTML_templates-16 17.6MB ± 0% 10.6MB ± 0% -39.92% (p=0.029 n=4+4)
SiteNew/Page_collections-16 25.9MB ± 0% 21.2MB ± 0% -17.99% (p=0.029 n=4+4)
name old allocs/op new allocs/op delta
SiteNew/Bundle_with_image-16 52.3k ± 0% 26.1k ± 0% -50.18% (p=0.029 n=4+4)
SiteNew/Bundle_with_JSON_file-16 52.3k ± 0% 26.1k ± 0% -50.16% (p=0.029 n=4+4)
SiteNew/Tags_and_categories-16 336k ± 1% 269k ± 0% -19.90% (p=0.029 n=4+4)
SiteNew/Canonify_URLs-16 422k ± 0% 395k ± 0% -6.43% (p=0.029 n=4+4)
SiteNew/Deep_content_tree-16 401k ± 0% 313k ± 0% -21.79% (p=0.029 n=4+4)
SiteNew/Many_HTML_templates-16 247k ± 0% 143k ± 0% -42.17% (p=0.029 n=4+4)
SiteNew/Page_collections-16 282k ± 0% 207k ± 0% -26.55% (p=0.029 n=4+4)
```
Fixes #6716
Fixes #6760
Fixes #6768
Fixes #6778
Niklas Fasching [Mon, 20 Jan 2020 17:53:51 +0000 (18:53 +0100)]
deps: Update go-org
Not really a new major version but it's used in production and apparently that
means it should be a 1+. Will try to follow semver better from now on.
Changes:
- `#+OPTIONS: toc:1` now supports not just true/false but numbers to limit
headline levels included in table of conents
- bug fix latex fragment parsing
Jonathan Ling [Sun, 19 Jan 2020 13:42:27 +0000 (08:42 -0500)]
examples: Fix blog not building
The example blog had not been updated for some time and I had to restructure it a little bit.
Fixes #6752
Changed tag and category directory structure
Joshua Wong [Sat, 18 Jan 2020 06:33:15 +0000 (14:33 +0800)]
Add support for newline characters in raw string shortcode
Ghislain Bourgeois [Thu, 16 Jan 2020 15:07:45 +0000 (10:07 -0500)]
deps: Update github.com/alecthomas/chroma
This new release improves YAML syntax highlighting.
Bjørn Erik Pedersen [Wed, 15 Jan 2020 15:04:44 +0000 (16:04 +0100)]
deps: Update minify to v2.7.2
Fixes #6756
Matt Riggott [Wed, 15 Jan 2020 09:32:45 +0000 (09:32 +0000)]
deps: Update Goldmark to v1.1.21
This is the first version of Goldmark that supports all the
Smartypants-style typographic punctuation transformations. Now, a
straight single quote in the middle of a word is translated into a curly
quote (e.g. "that's" becomes "that’s"). Earlier versions leave
them untouched. This brings Goldmark in line with Blackfriday.
Fixes #6571.
Joshua Wong [Tue, 14 Jan 2020 05:36:33 +0000 (13:36 +0800)]
Allow raw string literals in shortcode params
Bjørn Erik Pedersen [Tue, 14 Jan 2020 16:09:11 +0000 (17:09 +0100)]
deps: Update github.com/gohugoio/testmodBuilder
Bjørn Erik Pedersen [Mon, 13 Jan 2020 15:47:10 +0000 (16:47 +0100)]
hugolib: Some more benchmark adjustments
Bjørn Erik Pedersen [Mon, 13 Jan 2020 15:32:48 +0000 (16:32 +0100)]
hugolib: Adjust site benchmarks
Bjørn Erik Pedersen [Tue, 7 Jan 2020 15:20:43 +0000 (16:20 +0100)]
deps: Update direct dependencies
Closes #6719
Bjørn Erik Pedersen [Tue, 7 Jan 2020 17:06:22 +0000 (18:06 +0100)]
minifiers: Update to new CSS config
Update #6719
Bjørn Erik Pedersen [Tue, 7 Jan 2020 15:13:38 +0000 (16:13 +0100)]
deps: Update to Minify v2.7.0
Updates ##6719
Bjørn Erik Pedersen [Tue, 7 Jan 2020 12:42:43 +0000 (13:42 +0100)]
Revert "Add support for freebsd/arm64"
golang.org/x/sys is an indirect dependency and needs to be updates as such.
This reverts commit
aead8108b80d77e23c68a47fd8d86464310130be.
Dmitri Goutnik [Tue, 7 Jan 2020 12:21:19 +0000 (07:21 -0500)]
Add support for freebsd/arm64
Update #6719 6719
Bjørn Erik Pedersen [Tue, 7 Jan 2020 09:23:24 +0000 (10:23 +0100)]
tpl: Put Go's internal template funcs in Hugo's map
```
name old time/op new time/op delta
SiteNew/Many_HTML_templates-16 43.4ms ± 0% 42.7ms ± 0% -1.71% (p=0.016 n=4+5)
name old alloc/op new alloc/op delta
SiteNew/Many_HTML_templates-16 17.5MB ± 0% 17.5MB ± 0% ~ (p=0.690 n=5+5)
name old allocs/op new allocs/op delta
SiteNew/Many_HTML_templates-16 247k ± 0% 247k ± 0% ~ (p=0.310 n=5+5)
```
Fixes #6717
Bjørn Erik Pedersen [Tue, 7 Jan 2020 12:15:22 +0000 (13:15 +0100)]
Update releasenotes_writer.go
Bjørn Erik Pedersen [Tue, 7 Jan 2020 09:42:28 +0000 (10:42 +0100)]
hugolib: Add a benchmark with lots of templates
hugoreleaser [Sun, 5 Jan 2020 18:58:55 +0000 (18:58 +0000)]
releaser: Prepare repository for 0.63.0-DEV
[ci skip]
hugoreleaser [Sun, 5 Jan 2020 18:50:35 +0000 (18:50 +0000)]
releaser: Add release notes to /docs for release of 0.62.2
[ci skip]
hugoreleaser [Sun, 5 Jan 2020 18:50:35 +0000 (18:50 +0000)]
releaser: Bump versions for release of 0.62.2
[ci skip]
hugoreleaser [Sun, 5 Jan 2020 18:50:35 +0000 (18:50 +0000)]
releaser: Add release notes for 0.62.2
[ci skip]
Bjørn Erik Pedersen [Sun, 5 Jan 2020 11:56:41 +0000 (12:56 +0100)]
hugolib: Fix relative .Page.GetPage from bundle
Fixes #6705
Bjørn Erik Pedersen [Sun, 5 Jan 2020 14:58:14 +0000 (15:58 +0100)]
markup/goldmark: Adjust auto ID space handling
GitHub does not consider tabs as delimiter, see https://github.com/bep/portable-hugo-links/blob/master/blog/p2.md
Closes #6710
Bjørn Erik Pedersen [Sun, 5 Jan 2020 11:07:36 +0000 (12:07 +0100)]
docs: Document the new autoHeadingIDType setting
See #6707
See #6616
Bjørn Erik Pedersen [Sun, 5 Jan 2020 10:57:25 +0000 (11:57 +0100)]
docs: Regenerate docshelper
See #6707
See #6616
Bjørn Erik Pedersen [Sun, 5 Jan 2020 10:52:00 +0000 (11:52 +0100)]
markup/goldmark: Add an optional Blackfriday auto ID strategy
Fixes #6707
Bjørn Erik Pedersen [Sun, 5 Jan 2020 10:29:22 +0000 (11:29 +0100)]
markup/goldmark: Make the autoID type config a string
To potentially make room for one more.
See #6707
Bjørn Erik Pedersen [Sun, 5 Jan 2020 10:14:51 +0000 (11:14 +0100)]
Bjørn Erik Pedersen [Sun, 5 Jan 2020 10:13:09 +0000 (11:13 +0100)]
Squashed 'docs/' changes from
54f0e8776..
bd0e15bb6
bd0e15bb6 Optimised images with calibre/image-actions
59830ea44 Remove comments from quickstart code samples
348821b5d Remove image-actions
1cbbd26a9 Update index.md
bcf3de764 Update index.md
fcf17e6ef Release 0.62.1
0956bde21 Merge branch 'temp621'
28d604756 releaser: Add release notes to /docs for release of 0.62.1
c895f12e7 Fix statement about version installed with apt-get (#854)
e96928e38 Updated quickstart to split theme download and theme config add into separate blocks (#967)
e099c1ad6 changed ".Title" to ".URL" (#972)
bea71280d Fix small typing error (#1001)
9c28c422e Correct hyperlink for 'markdownify' function
cf3844a06 Corrected small conjugation mistake (#996)
8b9c1d4f2 Added remarks about additional parameters in ref/relref (#995)
ca06c9a56 Fix illegal character in render-link.html example
7a85c789b Update RenderString.md
69df3b17e Update configuration-markup.md
43e9222a2 Revert "Add shortcodes to note comparing with `markdownify`"
2bd5bc2d7 Add shortcodes to note comparing with `markdownify`
ddfee60b7 Update configuration-markup.md
f87c35fe2 docs: Remove extra double quotation
5ca5cc15f Update index.md
6e457f5ec Update configuration-markup.md
12df3c0fc Update configuration-markup.md
91977fd96 Update configuration-markup.md
377b8954a Update configuration-markup.md
99d691b5e Update hosting-on-render.md
ccf855b22 Update index.md
a945acc42 Update index.md
7d4f308d6 Fix Netlify config
f4caa07f5 Release 0.62.0
79d18276f releaser: Add release notes to /docs for release of 0.62.0
9db1a08d1 Merge commit '
8a4005cf2b0ef34265ff8051a6b76226685fc226'
79e556223 docs: More on hooks
5088c54df tpl: Do not return any value in errorf
98c8c8638 tpl: Add a warnf template func
4a9d76cea docs: Regen docshelper
626e53b55 Fix incorrect MIME type from image/jpg to image/jpeg
f92f77c5d Preserve HTML Text for link render hooks
6db9c52b1 docs: Footnote
16801db3b Add render template hooks for links and images
0facb823c Merge commit '
2e711a28c71e8667258e5ab824f9b9a71c261b0a'
79bf8ed4c markup/tableofcontents: Add config option for ordered list
git-subtree-dir: docs
git-subtree-split:
bd0e15bb6063f7ad4f0c47eb33c8c0c23c962d13
Bjørn Erik Pedersen [Sat, 4 Jan 2020 22:58:23 +0000 (23:58 +0100)]
markup/goldmark: Simplify code
Bjørn Erik Pedersen [Sat, 4 Jan 2020 10:28:19 +0000 (11:28 +0100)]
markup/goldmark: Make auto IDs GitHub compatible
You can turn off this behaviour:
```toml
[markup]
[markup.goldmark]
[markup.goldmark.parser]
autoHeadingIDAsciiOnly = true
```
Note that the `anchorize` now adapts its behaviour depending on the default Markdown handler.
Fixes #6616
hugoreleaser [Wed, 1 Jan 2020 17:46:46 +0000 (17:46 +0000)]
releaser: Prepare repository for 0.63.0-DEV
[ci skip]
hugoreleaser [Wed, 1 Jan 2020 17:38:22 +0000 (17:38 +0000)]
releaser: Add release notes to /docs for release of 0.62.1
[ci skip]
hugoreleaser [Wed, 1 Jan 2020 17:38:22 +0000 (17:38 +0000)]
releaser: Bump versions for release of 0.62.1
[ci skip]
hugoreleaser [Wed, 1 Jan 2020 17:38:22 +0000 (17:38 +0000)]
releaser: Add release notes for 0.62.1
[ci skip]
Bjørn Erik Pedersen [Mon, 30 Dec 2019 09:50:00 +0000 (10:50 +0100)]
Support files in content mounts
This commit is a general improvement of handling if single file mounts.
Fixes #6684
Fixes #6696
Remco de Man [Mon, 30 Dec 2019 11:18:15 +0000 (12:18 +0100)]
Update alpine base image in Dockerfile to 3.11
When building the extended version of Hugo using the Dockerfile and
`--build-arg HUGO_BUILD_TAGS=extended`, the obtained Docker container is
broken, because the source is build under alpine 3.11 and the compiled
binary is copied to an image based on alpine 3.10. This problem was most
likely introduced due to an update of the golang base image.
This commit changes the base image from alpine:3.10 to alpine:3.11,
fixing extended version builds.
Bjørn Erik Pedersen [Sat, 28 Dec 2019 11:07:23 +0000 (12:07 +0100)]
hugolib: Fix inline shortcode regression
Fixes #6677
hugoreleaser [Mon, 23 Dec 2019 10:32:39 +0000 (10:32 +0000)]
releaser: Prepare repository for 0.63.0-DEV
[ci skip]
hugoreleaser [Mon, 23 Dec 2019 10:23:27 +0000 (10:23 +0000)]
releaser: Add release notes to /docs for release of 0.62.0
[ci skip]
hugoreleaser [Mon, 23 Dec 2019 10:23:27 +0000 (10:23 +0000)]
releaser: Bump versions for release of 0.62.0
[ci skip]
Bjørn Erik Pedersen [Mon, 23 Dec 2019 09:49:08 +0000 (10:49 +0100)]
Release 0.62.0
hugoreleaser [Mon, 23 Dec 2019 08:57:02 +0000 (08:57 +0000)]
releaser: Add release notes for 0.62.0
Rename to *-ready.md to continue.
[ci skip]
Bjørn Erik Pedersen [Sun, 22 Dec 2019 21:51:45 +0000 (22:51 +0100)]
Squashed 'docs/' changes from
af4b7ac5b..
54f0e8776
54f0e8776 Update image-actions.yml
94e5cad02 Update image-actions.yml
0ad20d226 Add a page about Hugo's Security Model
0dee16d11 Link to Régis Full Partials series
138782808 Update partialCached.md
git-subtree-dir: docs
git-subtree-split:
54f0e877670fd434c6903e20774fcf7eba9255fa
Bjørn Erik Pedersen [Sun, 22 Dec 2019 21:51:45 +0000 (22:51 +0100)]
Bjørn Erik Pedersen [Fri, 20 Dec 2019 19:37:47 +0000 (20:37 +0100)]
deps: Update Goldmark to v1.1.18
Fixes #6649
Niklas Fasching [Sun, 22 Dec 2019 13:39:09 +0000 (14:39 +0100)]
deps: Update go-org
- export #+TITLE (front-matter title) as `<h1>` and demote all normal headlines
by 1 accordingly (i.e. a normal top level headline now becomes a `<h2>`
rather than a `<h1>`)
- preserve whitespace in paragraphs - this allows rendering meaningful
whitespace when wished for using e.g. css `white-space: pre;` (e.g. in verse
/ quote blocks)
Bjørn Erik Pedersen [Sat, 21 Dec 2019 10:59:36 +0000 (11:59 +0100)]
docs: More on hooks
Bjørn Erik Pedersen [Sat, 21 Dec 2019 09:26:14 +0000 (10:26 +0100)]
tpl: Do not return any value in errorf
Fixes #6653
Bjørn Erik Pedersen [Fri, 20 Dec 2019 19:46:17 +0000 (20:46 +0100)]
tpl: Add a warnf template func
Fixes #6628
Bjørn Erik Pedersen [Fri, 20 Dec 2019 07:11:36 +0000 (08:11 +0100)]
hugolib: Improve error and reload handling of hook templates in server mode
Fixes #6635
Bjørn Erik Pedersen [Fri, 20 Dec 2019 07:00:37 +0000 (08:00 +0100)]
deps: Update to Goldmark v1.1.17
Fixes #6641
Bjørn Erik Pedersen [Thu, 19 Dec 2019 22:48:01 +0000 (23:48 +0100)]
docs: Regen docshelper
Bjørn Erik Pedersen [Thu, 19 Dec 2019 19:50:30 +0000 (20:50 +0100)]
tpl/collections: Some more params merge adjustments
* If the end result is maps.Params, we need to lower the keys
* Also make sure to handle nested maps of different type
Update #6633
Bjørn Erik Pedersen [Thu, 19 Dec 2019 16:43:07 +0000 (17:43 +0100)]
Preserve HTML Text for image render hooks
Fixes #6639
Bjørn Erik Pedersen [Thu, 19 Dec 2019 11:17:44 +0000 (12:17 +0100)]
Fix abs path handling in module mounts
Fixes #6622
John Zaitseff [Thu, 19 Dec 2019 14:04:18 +0000 (01:04 +1100)]
Fix incorrect MIME type from image/jpg to image/jpeg
According to multiple sources, both official ([IANA] and [RFC2046]) and
otherwise (eg, [Mozilla] and [Wikipedia]), the official MIME type for
JPEG images is `image/jpeg`, not `image/jpg`. Change Hugo to match.
[IANA]: https://www.iana.org/assignments/media-types/media-types.xhtml#image
[RFC2046]: https://tools.ietf.org/html/rfc2046
[Mozilla]: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types
[Wikipedia]: https://en.wikipedia.org/wiki/JPEG
Bjørn Erik Pedersen [Wed, 18 Dec 2019 21:00:53 +0000 (22:00 +0100)]
deps: Update Goldmark
Fixes #6626
Bjørn Erik Pedersen [Wed, 18 Dec 2019 16:23:09 +0000 (17:23 +0100)]
Preserve HTML Text for link render hooks
The context now have two text methods:
* Text - rendered
* PlainText
Fixes #6629
Bjørn Erik Pedersen [Wed, 18 Dec 2019 20:31:34 +0000 (21:31 +0100)]
tpl/collections: Fix merge vs Params
Fixes #6633
Bjørn Erik Pedersen [Wed, 18 Dec 2019 15:50:34 +0000 (16:50 +0100)]
tpl: Get rid of the custom template truth logic
Fixes #6615
Bjørn Erik Pedersen [Wed, 18 Dec 2019 15:37:43 +0000 (16:37 +0100)]
docs: Footnote
Bjørn Erik Pedersen [Wed, 27 Nov 2019 12:42:36 +0000 (13:42 +0100)]
Add render template hooks for links and images
This commit also
* revises the change detection for templates used by content files in server mode.
* Adds a Page.RenderString method
Fixes #6545
Fixes #4663
Closes #6043
Bjørn Erik Pedersen [Sun, 15 Dec 2019 09:37:36 +0000 (10:37 +0100)]
Bjørn Erik Pedersen [Sun, 15 Dec 2019 09:35:09 +0000 (10:35 +0100)]
Squashed 'docs/' changes from
51c4f3184..
af4b7ac5b
af4b7ac5b Remove mention of Amber and Ace
c841e9207 Exif docs corrections (#978)
0f82420b8 Change cache assets default example to 1 year
676dc6e12 Release 0.61.0
a1d9fb18a Merge commit '
79c5d7053486f540b6219e693d5590f2c4c3937a'
1b9e675cd releaser: Add release notes to /docs for release of 0.61.0
5b95cbc8a Fixed suffixIsRemoved error in code samples (#975)
59b2c245b Fix Usage section in toc.md to consider Goldmark TOC settings
fd3828673 Add link on how to configure TOC w/ Goldmark
ea339f2d6 Added external learning resources including Hugo In Action book.
fab502d5d Adjust release notes
269a025ef Release 0.60.1
6bff50bea Merge branch 'temp601'
e15251c43 releaser: Add release notes to /docs for release of 0.60.1
690b864b9 Update use-modules.md
345ca8c36 Update syntax-highlighting.md
be64af9f5 Update syntax-highlighting.md
df9dead83 Update syntax-highlighting.md
1c6e6d238 Fix relnotes
0ea6b2012 Update homepagetweets.toml
2c465625d Update index.md
0025bba09 Update index.md
7417f1c05 Update index.md
9eeb8ce57 Release 0.60.0
25a711023 Merge branch 'temp60'
0c4faab0e releaser: Add release notes to /docs for release of 0.60.0
779e5108e Update installing.md
2ef1c386a Minor text improvements in README.md
41ec5a19a Reword sentence for clarity search.md
ded74f098 Add Goldmark as the new default markdown handler
cb55cdbb0 Update introduction.md
fcaad653a Update homepage.md
7427a1fc5 Update configuration.md
8cc2c72ca tpl/collections: Allow dict to create nested structures
4538c092c Merge commit '
efc0b1bb6c6564f54d596467dbc6a18cb206954e'
90f908e7b Support Go time format strings in permalinks
git-subtree-dir: docs
git-subtree-split:
af4b7ac5b403e392a92228e66058331905fff7dc
Shohei Ueda [Sat, 14 Dec 2019 12:51:18 +0000 (21:51 +0900)]
Enhance accessibility to issues
Add links to the Hugo issues, Hugo docs issues, and Hugo website theme issues.
Close #6233
Bjørn Erik Pedersen [Thu, 12 Dec 2019 13:48:59 +0000 (14:48 +0100)]
hugolib: Fix test
Bjørn Erik Pedersen [Thu, 12 Dec 2019 13:45:46 +0000 (14:45 +0100)]
deps: Re-introduce the correct version of Goldmark
It was accidently pulled back to an old version earlier today.
Bjørn Erik Pedersen [Thu, 12 Dec 2019 10:44:36 +0000 (11:44 +0100)]
tpl: Add some comments
Bjørn Erik Pedersen [Tue, 10 Dec 2019 18:56:44 +0000 (19:56 +0100)]
Rework template handling for function and map lookups
This is a big commit, but it deletes lots of code and simplifies a lot.
* Resolving the template funcs at execution time means we don't have to create template clones per site
* Having a custom map resolver means that we can remove the AST lower case transformation for the special lower case Params map
Not only is the above easier to reason about, it's also faster, especially if you have more than one language, as in the benchmark below:
```
name old time/op new time/op delta
SiteNew/Deep_content_tree-16 53.7ms ± 0% 48.1ms ± 2% -10.38% (p=0.029 n=4+4)
name old alloc/op new alloc/op delta
SiteNew/Deep_content_tree-16 41.0MB ± 0% 36.8MB ± 0% -10.26% (p=0.029 n=4+4)
name old allocs/op new allocs/op delta
SiteNew/Deep_content_tree-16 481k ± 0% 410k ± 0% -14.66% (p=0.029 n=4+4)
```
This should be even better if you also have lots of templates.
Closes #6594
Bjørn Erik Pedersen [Tue, 10 Dec 2019 07:02:15 +0000 (08:02 +0100)]
Create lightweight forks of text/template and html/template
This commit also removes support for Ace and Amber templates.
Updates #6594
Gavin D. Howard [Thu, 12 Dec 2019 06:48:40 +0000 (23:48 -0700)]
markup/tableofcontents: Add config option for ordered list
hugoreleaser [Wed, 11 Dec 2019 08:35:04 +0000 (08:35 +0000)]
releaser: Prepare repository for 0.62.0-DEV
[ci skip]
hugoreleaser [Wed, 11 Dec 2019 08:26:33 +0000 (08:26 +0000)]
releaser: Add release notes to /docs for release of 0.61.0
[ci skip]
hugoreleaser [Wed, 11 Dec 2019 08:26:33 +0000 (08:26 +0000)]
releaser: Bump versions for release of 0.61.0
[ci skip]
Bjørn Erik Pedersen [Wed, 11 Dec 2019 08:12:18 +0000 (09:12 +0100)]
Release 0.61.0
hugoreleaser [Wed, 11 Dec 2019 07:55:37 +0000 (07:55 +0000)]
releaser: Add release notes for 0.61.0
Rename to *-ready.md to continue.
[ci skip]
Bjørn Erik Pedersen [Tue, 10 Dec 2019 22:50:02 +0000 (23:50 +0100)]
deps: Update Goldmark
Bjørn Erik Pedersen [Wed, 11 Dec 2019 07:08:42 +0000 (08:08 +0100)]
Deprecate Ace and Amber
Fixes #6609
Daniel Tang [Tue, 10 Dec 2019 20:37:52 +0000 (12:37 -0800)]
markup: Add typographic chars from goldmark to toc
Fixes #6592
Bjørn Erik Pedersen [Mon, 2 Dec 2019 20:10:27 +0000 (21:10 +0100)]
tpl/partials: Allow any key type in partialCached
Fixes #6572
Bjørn Erik Pedersen [Mon, 2 Dec 2019 07:31:23 +0000 (08:31 +0100)]
markup: Reimplement pygmentsCodefencesGuessSyntax
Fixes #6565
Bjørn Erik Pedersen [Sun, 1 Dec 2019 19:50:58 +0000 (20:50 +0100)]
deps: Update Goldmark
Fixes #6557
hugoreleaser [Fri, 29 Nov 2019 15:05:19 +0000 (15:05 +0000)]
releaser: Prepare repository for 0.61.0-DEV
[ci skip]
hugoreleaser [Fri, 29 Nov 2019 14:56:16 +0000 (14:56 +0000)]
releaser: Add release notes to /docs for release of 0.60.1
[ci skip]
hugoreleaser [Fri, 29 Nov 2019 14:56:16 +0000 (14:56 +0000)]
releaser: Bump versions for release of 0.60.1
[ci skip]
hugoreleaser [Fri, 29 Nov 2019 14:56:16 +0000 (14:56 +0000)]
releaser: Add release notes for 0.60.1
[ci skip]
MeiK [Fri, 29 Nov 2019 13:37:32 +0000 (21:37 +0800)]
deps: Update minify
Fixes #6475