See this question for the full story.
This is what I have:
<input type="text" data-provide="typeahead" data-source='@Html(param)' data-items="4">
Say @param evaluates to ["can't","hi", "boom"]
without the @Html() escaping, and ["can't","hi", "boom"]
with @Html().
Is it possible for me to call @Html(parameter) here but escape the conversion from '
to '
?