Escape Characters

I am creating a list of architectural scales and mapping them to a half size counterpart. Here is an example of a small list of two items: {“1/4” = 1’-0"", “1/8” = 1’-0"}; Dynamo seems to be confused by all the quotes. What “escape character” is available to allow for these strings? Do I just create a bunch of string nodes and use create list node?

 

Hi Donovan,

The standard backslash escape character applies for code blocks as well. However, if the list of strings is not too long, I find that chaining string input nodes is a lot easier:

Thank you!