layout: post title: “2018-03-01-authoring-report” date: 2018-03-01 10:21:52 +0000
Bad value https://fonts.googleapis.com/css?family=Amatic+SC|Comfortaa for attribute href on element link: Illegal character in query: | is not allowed.
From line 10, column 3; to line 10, column 92
The text content of element time was not in the required format: The literal did not satisfy the time-datetime format.
From line 68, column 30; to line 68, column 36
以上2点。
解決法
Amatic+SC|Comfortaa
の|
を%7c
にする- 属性の使い方に問題あり。
<time>
にdatetime
要素を追加。今回は<time datetime="{{ post.date | date: "%Y-%m-%d" }}">
としてみました。