Make a start at toml reader.

This commit is contained in:
jmsgrogan 2022-10-10 08:57:32 +01:00
parent cbc9ba77d2
commit 70991e59af
4 changed files with 115 additions and 3 deletions

View file

@ -7,6 +7,8 @@ int main()
const auto data_loc = std::filesystem::path(__FILE__) / "../data";
const auto sample_toml_file = data_loc / "sample_toml.toml";
auto reader = TomlReader();
reader.read(sample_toml_file);
return 0;
}

View file

@ -1,4 +1,6 @@
# Site Generator Config
[themes]
location = "../personal-site-themes"
active_theme = "basic"