From 14aa5de037e7b4eea14d01404ec895734f87a515 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Mon, 5 Feb 2018 18:13:23 +0100 Subject: [PATCH] Specify MIME type. Closes #465. --- CHANGELOG.md | 3 ++- README.md | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42412e01..abcbd685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ * Allow space (instead of T) to separate date and time in Date-Time. * Allow accidental whitespace between backslash and newline in the line continuation operator in multi-line basic strings. -* Specify that .toml is the standard file extension. +* Specify that the standard file extension is `.toml`. +* Specify that MIME type is `application/toml` * Clarify that U+007F is an escape character. * Clarify that keys are always strings. * Clarify that you cannot use array-of-table to append to a static array. diff --git a/README.md b/README.md index d30ecf54..bd11d61e 100644 --- a/README.md +++ b/README.md @@ -791,6 +791,12 @@ Filename Extension TOML files should use the extension `.toml`. +MIME Type +--------- + +When transferring TOML files over the internet, the appropriate MIME type is +`application/toml`. + Comparison with Other Formats -----------------------------