In order to to use razor to generate "non-XML-like languages" without using <text> tags
as a softwaredevelopper
i want
@"..."@ or
@'...'@ as alias for <text>...</text>
From
http://stackoverflow.com/questions/4938134/use-razor-to-generate-code
> You certainly could use Razor to generate C# code,
> but it's not really designed for non-XML-like languages.
> You'd have to have a lot of <text> tags.
I implemented a small working example
http://stackoverflow.com/questions/4938134/use-razor-to-generate-code/5376539#5376539
and thought that
@"..."@ or
@'...'@ as alias for <text>...</text> would make the code much more clear