-------------------------------------------------------------------------
| 44 | |
| 45 | //------------------------------------------------------------------------- |
| 46 | std::string ToHtmlPath(const fs::path& path) |
| 47 | { |
| 48 | auto htmlPath = path.wstring(); |
| 49 | boost::algorithm::replace_all(htmlPath, L"\\", L"/"); |
| 50 | return ToString(htmlPath); |
| 51 | } |
| 52 | |
| 53 | //------------------------------------------------------------------------- |
| 54 | void WriteContentTo(const std::string& content, const fs::path& path) |