@@ -8,7 +8,7 @@ namespace contour::config::documentation
88template <std::size_t N>
99struct StringLiteral
1010{
11- constexpr StringLiteral (const char (&str)[N]): value{} { std::copy_n (str, N, value); }
11+ constexpr StringLiteral (const char (&str)[N]): value {} { std::copy_n (str, N, value); }
1212
1313 char value[N]; // NOLINT
1414};
@@ -422,28 +422,26 @@ constexpr StringLiteral Bell {
422422 " \n "
423423};
424424
425-
426425constexpr StringLiteral FrozenDecMode {
427- " {comment} Defines a list of DEC modes to explicitly and permanently disable/enable support for.\n "
428- " {comment}\n "
429- " {comment} This is a developer-users-only option that may possibly help investigating problems.\n "
430- " {comment} This option may also be used by regular users if they're asked to in order to disable\n "
431- " {comment} a broken functionality. This is something we hardly try to avoid, of course.\n "
432- " {comment}\n "
433- " {comment} This can be an object with each key being the DEC mode number and its value a boolean,\n "
434- " {comment} indicating whether this DEC mode is permanently set (enabled) or unset (disabled).\n "
435- " {comment}\n "
436- " {comment} Example:\n "
437- " {comment}\n "
438- " {comment} frozen_dec_modes:\n "
439- " {comment} 2026: false\n "
440- " {comment} 2027: true\n "
441- " {comment}\n "
442- " {comment} Default: (empty object)\n "
443- " {comment}frozen_dec_modes:\n "
426+ " {comment} Defines a list of DEC modes to explicitly and permanently disable/enable support for.\n "
427+ " {comment}\n "
428+ " {comment} This is a developer-users-only option that may possibly help investigating problems.\n "
429+ " {comment} This option may also be used by regular users if they're asked to in order to disable\n "
430+ " {comment} a broken functionality. This is something we hardly try to avoid, of course.\n "
431+ " {comment}\n "
432+ " {comment} This can be an object with each key being the DEC mode number and its value a boolean,\n "
433+ " {comment} indicating whether this DEC mode is permanently set (enabled) or unset (disabled).\n "
434+ " {comment}\n "
435+ " {comment} Example:\n "
436+ " {comment}\n "
437+ " {comment} frozen_dec_modes:\n "
438+ " {comment} 2026: false\n "
439+ " {comment} 2027: true\n "
440+ " {comment}\n "
441+ " {comment} Default: (empty object)\n "
442+ " {comment}frozen_dec_modes:\n "
444443};
445444
446-
447445constexpr StringLiteral Live {
448446 " {comment} Determines whether the instance is reloading the configuration files "
449447 " whenever it is changing or not. \n "
0 commit comments