| 166 | bool hasMarkdownExtension(std::string_view fileName) { return checkFileExtension(fileName, ".md"); } |
| 167 | |
| 168 | bool hasCssExtension(std::string_view fileName) { return checkFileExtension(fileName, ".css"); } |
| 169 | |
| 170 | std::string extractFolderPath(const std::string& filePath) { |
| 171 | const auto lastSlash = filePath.find_last_of('/'); |
nothing calls this directly
no test coverage detected