58inline std::vector<ParsedLine>
61 std::vector<ParsedLine> result;
64 for (
const auto& raw : raw_lines) {
65 if (raw.empty())
continue;
68 if (raw.size() >= 2 && raw[1] ==
';') {
73 if (!pending.empty()) pending +=
"\\n";
74 pending += raw.substr(1);
80 result.push_back({raw, std::move(pending)});