Currently the only problem is that the sanitizer will kill every value coming in through interpolation, because interpolate0 will convert anything to a string. I guess I could add an exception to interpolate0, but generally I'd like to avoid hard-coding edge cases as much as possible. Perhaps I can figure something out tomorrow.
Currently the only problem is that the sanitizer will kill every value coming in through interpolation, because
interpolate0
will convert anything to a string. I guess I could add an exception tointerpolate0
, but generally I'd like to avoid hard-coding edge cases as much as possible. Perhaps I can figure something out tomorrow.