stamdStatic Markdown Page Generator |
git clone git://git.dimitrijedobrota.com/stamd.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
options.hpp (240B)
0 #pragma once 1 2 #include <string> 3 4 namespace stamd 5 { 6 7 struct options_t 8 { 9 std::string base_url; // url with trailing '/' 10 std::string author; 11 std::string email; 12 std::string description; 13 std::string summary; 14 }; 15 16 } // namespace stamd