CSSUoB / CSSUoB/cssuob.github.io

Allow YAML string fields to be explicitly quoted when serialising front matter

未关闭
#938 0 条评论 0 个 reaction 已指派 1 人 已被 @gellowg 认领 在 GitHub 查看
bug
主要语言
HTML
星标
29
派生
44
平均合并
3 天 16 小时
30 天内合并 PR
15

描述

I have run into an interoperability issue when a string field contains a value such as a 24-hour time.

For example, if a collection contains:
```
- label: "Start Time"
name: "start_time"
widget: "string"
```

If I enter: `18:30`, decap serialises it as `start_time: 18:30`.

I think Decap correctly treats this as a string. However, Jekyll’s YAML parsing interprets the unquoted value 18:30 using YAML 1.1 sexagesimal notation, resulting in: `1110`.

This means the value is rendered by Jekyll as 1110/1110.0 rather than 18:30.

Quoting the value fixes the issue:
`start_time: "18:30"`

## Expected behaviour
Given: `18:30`, Decap would serialise this to: `start_time: "18:30"`.

## Current behaviour
Decap serialises: `start_time: 18:30`

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。