manuals tidy tier 3a: rondes, ternaris, anyofallof, padding, etc.

This commit is contained in:
2026-05-14 19:24:02 +02:00
parent 0b82be193f
commit a48fe51f73
13 changed files with 54 additions and 32 deletions
+5 -1
View File
@@ -16,7 +16,11 @@ namespace Locale {
if (node.is_mapping()) {
for (auto it = node.begin(); it != node.end(); ++it) {
auto key = it.key().get_value<std::string>();
std::string full = prefix.empty() ? key : prefix + "." + key;
std::string full = prefix;
if (!full.empty()) {
full += ".";
}
full += key;
traverse(it.value(), full);
}
} else if (node.is_scalar()) {