Hello - just wondering if someone could kindly take a look at this. I am not sure if this is expected or not.
Given a config.toml with:
+++
...
ISO8601 = "2006-01-02T15:04:05-07:00"
...
+++
And a partial template that is meant to render json-ld
markup for a schema.org schema:
{{ "<!-- ENTERING partial seo-schema.html -->" | safeHTML }}
{{ if .IsPage }}
{{ if eq .Type "post" }}
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "BlogPosting",
"articleSection" : "{{ .Section }}",
"name" : "{{ .Title }}",
"headline" : "{{ .Title }}",
"description" : "{{ if .Description }}{{ .Description }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ end }}{{ end }}",
"inLanguage" : "en-US",
"author" : "{{ .Params.author }}",
"creator" : "{{ .Params.author }}",
"accountablePerson" : "{{ .Params.author }}",
"copyrightHolder" : "{{ .Params.author }}",
"copyrightYear" : "{{ .Date.Format "2006" }}",
"dateCreated" : "{{ .Params.createdate }}",
"datePublished": "{{ .PublishDate.Format $.Site.Params.ISO8601 }}",
"dateUpdated" : "{{ .Date.Format $.Site.Params.ISO8601 }}",
"url" : "{{ .Permalink }}",
"wordCount" : "{{ .WordCount }}",
"image" : [ {{ range $i, $e := .Params.images }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} ],
"keywords" : [ {{ range $i, $e := .Params.tags }}{{ if $i }}, {{ end }}{{ $e }}{{ end }} ]
}
</script>
{{ end }}
{{ end }}
{{ "<!-- LEAVING partial seo-schema.html -->" | safeHTML }}
ā¦ then with yaml frontmatter like this:
---
author: Rick Cogley
authorlink: /about
authortwitter: https://twitter.com/rickcogley
banner: https://farm5.staticflickr.com/4059/5135448447_95b026227b_o.jpg
date: 2015-05-08T12:33:19+09:00
publishdate: 2015-05-08T12:33:19+09:00
createdate: 2015-05-08T12:33:19+09:00
description: The rsync that Apple provides in OS X Yosemite is out of date, but you can easily upgrade it using the homebrew package manager - a post by Rick Cogley.
draft: "false"
showauthor: "true"
showcomment: "true"
showdate: "true"
showpaging: "true"
showreadingtime: "true"
showsocialsharing: "true"
showtoc: "true"
showtotop: "true"
slug: upgrade-outdated-rsync-on-osx
subtitle: Homebrew to the rescue
tags:
- brew
- tap
- rsync
- homebrew
- upgrade
- osx
- mac
title: Old rsync on OS X?
topics:
- Tips
- SysAdmin
- Upgrades
news_keywords:
- brew
- tap
- rsync
- homebrew
- upgrade
- mac
- osx
images:
- /img/homebrew.png
- http://static.cogley.info/img/rick-cogley-avatar-900x900.jpg
---
ā¦ I get this as the result, in view source:
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "BlogPosting",
"articleSection" : "post",
"name" : "Old rsync on OS X?",
"headline" : "Old rsync on OS X?",
"description" : "The rsync that Apple provides in OS X Yosemite is out of date, but you can easily upgrade it using the homebrew package manager - a post by Rick Cogley.",
"inLanguage" : "en-US",
"author" : "Rick Cogley",
"creator" : "Rick Cogley",
"accountablePerson" : "Rick Cogley",
"copyrightHolder" : "Rick Cogley",
"copyrightYear" : "2015",
"dateCreated" : "2015-05-08T12:33:19\x2b09:00",
"datePublished": "2015-05-08T12:33:19\x2b09:00",
"dateUpdated" : "2015-05-08T12:33:19\x2b09:00",
"url" : "http:\/\/localhost:1313\/post\/upgrade-outdated-rsync-on-osx",
"wordCount" : "214",
"image" : [ "/img/homebrew.png", "http://static.cogley.info/img/rick-cogley-avatar-900x900.jpg" ],
"keywords" : [ "brew", "tap", "rsync", "homebrew", "upgrade", "osx", "mac" ]
}
</script>
Finally, My Question
My question is about the url field and date fields.
The plus sign in +9:00 got converted to \x2b
and the permalink URL is escaped.
Is this expected? Or is this a problem?
Thanks for your attention in advance!
Kind regards
Rick
Hugo version:
Hugo Static Site Generator v0.14-DEV BuildDate: 2015-05-08T11:10:47+09:00