Added option style to plantuml config section

This commit is contained in:
Bartek Kryza
2024-03-03 17:01:31 +01:00
parent c4ec8bef8a
commit 76fa811869
34 changed files with 363 additions and 128 deletions

View File

@@ -411,6 +411,9 @@ template <> struct convert<plantuml> {
if (node["cmd"])
rhs.cmd = node["cmd"].as<decltype(rhs.cmd)>();
if (node["style"])
rhs.style = node["style"].as<decltype(rhs.style)>();
return true;
}
};