You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to some dotenvy documentation for Swift, control characters are not interpreted with weak quotes. It seems this crate does not adhere to this rule, i assume multiline is implemented differently?
The use-case is following
# expected: linebreak is unprocessed
TEST_SINGLE_WEAK='{"bla":"one\ntwo"}'
# expected: line break interpreted
TEST_SINGLE_HARD="{\"bla\":\"one\ntwo\"}"
# expected: line break interpreted
TEST_MULTILINE="one
two"
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
According to some dotenvy documentation for Swift, control characters are not interpreted with weak quotes. It seems this crate does not adhere to this rule, i assume multiline is implemented differently?
The use-case is following
Beta Was this translation helpful? Give feedback.
All reactions