i want to store a sting in a yaml file with the necessary double qoutes around it. when i do so it stores it in a escaped way with backslash.
I need it this way: imagePullPolicy = "Always"
it stores it this way:
imagePullPolicy ="Always"
I tried it this way node["imagePullPolicy"] = R"("Always")"; with no success
I also tried ist with putting a char[] directly with the char representing the double quote directly but the "node" always escaping the double quote
Is the even pissible to tell the node that i want to not escape the string i want to store?