diff --git a/README.md b/README.md
index cfa1978..a26a721 100644
--- a/README.md
+++ b/README.md
@@ -379,7 +379,7 @@ diagnostics.
| Specifier | `core::fmt` trait | Example output | Notes |
|------------------|----------------------------|------------------------|-------|
-| _default_ | `core::fmt::Display` | `value` | User-facing strings; `#` has no effect. |
+| *default* | `core::fmt::Display` | `value` | User-facing strings; `#` has no effect. |
| `:?` / `:#?` | `core::fmt::Debug` | `Struct { .. }` / multi-line | Mirrors `Debug`; `#` pretty-prints structs. |
| `:x` / `:#x` | `core::fmt::LowerHex` | `0x2a` | Hexadecimal; `#` prepends `0x`. |
| `:X` / `:#X` | `core::fmt::UpperHex` | `0x2A` | Uppercase hex; `#` prepends `0x`. |
@@ -579,6 +579,8 @@ assert_eq!(resp.status, 401);
+
+
Feature flags
diff --git a/README.template.md b/README.template.md
index 47e35f4..e071ddd 100644
--- a/README.template.md
+++ b/README.template.md
@@ -572,6 +572,8 @@ assert_eq!(resp.status, 401);
+
+
Feature flags