Programming question: are escape sequences/characters always from an inner to an outer context? (eg code to data, ide to shell...)
Conversation
Replying to
In Ruby, you can interpolate like this: "some text #{variable} and more text" and whatever is between the braces is standard Ruby code.
1
1
Replying to
Lots of templating schemes and the like (ef JSX in React) escape/embed code into data. PHP too. code can them have escaped data with regex.
Replying to
doesn't seem like right distinction here. you're writing foreign language using local alphabet and need to distinguish what's foreign
2



