Thanks!
Iām creating files that are imported properly. Itās just that the description: field is generated dynamically and should contain newlines. Anytime I created a field with ā\nā line endings within variables (QString) the stream would be stripped of the newlines. I belived I tried ā\r\nā too, but Iāll try that again
One variation was to construct
aDesc.append("DESCRIPTION:\n");
for ( const auto& i : slist )
{
aDesc.append( i + "\n" );
}
aDesc.append("END:VEVENT\n");
Another operated in << In any case, a simple QString with no newlines works without problems.
A QString, with no newlines, but with html in it becomes messed up.