74inline std::vector<ParsedLine>
77 std::vector<ParsedLine> result;
80 for (
const auto& raw : raw_lines) {
81 if (raw.empty())
continue;
84 if (raw.size() >= 2 && raw[1] ==
';') {
89 if (!pending.empty()) pending +=
"\\n";
90 pending += raw.substr(1);
96 result.push_back({raw, std::move(pending)});