mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
toml: add UTF header support, add BOM tests (#12326)
This commit is contained in:
BIN
vlib/toml/tests/testdata/toml_with_utf16_bom.toml
vendored
Normal file
BIN
vlib/toml/tests/testdata/toml_with_utf16_bom.toml
vendored
Normal file
Binary file not shown.
BIN
vlib/toml/tests/testdata/toml_with_utf32_bom.toml
vendored
Normal file
BIN
vlib/toml/tests/testdata/toml_with_utf32_bom.toml
vendored
Normal file
Binary file not shown.
33
vlib/toml/tests/testdata/toml_with_utf8_bom.toml
vendored
Normal file
33
vlib/toml/tests/testdata/toml_with_utf8_bom.toml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# This is a TOML document with an UTF-8 BOM header.
|
||||
|
||||
title = "TOML Example"
|
||||
|
||||
[owner]
|
||||
name = "Tom Preston-Werner"
|
||||
dob = 1979-05-27T07:32:00-08:00 # First class dates
|
||||
|
||||
[database]
|
||||
server = "192.168.1.1"
|
||||
ports = [ 8000, 8001, 8002 ]
|
||||
connection_max = 5000
|
||||
enabled = true
|
||||
|
||||
[servers]
|
||||
|
||||
# Indentation (tabs and/or spaces) is allowed but not required
|
||||
[servers.alpha]
|
||||
ip = "10.0.0.1"
|
||||
dc = "eqdc10"
|
||||
|
||||
[servers.beta]
|
||||
ip = "10.0.0.2"
|
||||
dc = "eqdc10"
|
||||
|
||||
[clients]
|
||||
data = [ ["gamma", "delta"], [1, 2] ]
|
||||
|
||||
# Line breaks are OK when inside arrays
|
||||
hosts = [
|
||||
"alpha",
|
||||
"omega"
|
||||
]
|
||||
Reference in New Issue
Block a user