I am attempting to write a simple function to perform string interpolation on arbitrary text in ruby. I also want the function to not evaluate escaped interpolation blocks so that "\#{foo}" would be converted to "#{foo}" rather than evaluated.I am attempting to write a simple function to p