blob: fe4c127c0fd01459c44bd9a7e52f78654347f69b [file] [log] [blame]
cue export commas2.cue
cmp stdout expect-stdout-cue
-- frontmatter.toml --
title = "Commas are Still Required in Lists"
description = ""
-- text.md --
Commas are still required as separators in lists.
The last element of a list may also have a comma.
-- commas2.cue --
[
1,
2,
3,
]
-- expect-stdout-cue --
[
1,
2,
3
]