I am using powershell to automaticly add lines of code to certain scripts. See example below:
$a -replace '<div class="ef-column1 bodyContent" id="column1">', '<div class="ef-column1 body-content" id="column1"> @RenderSection("ColumnMainHeader", false)'
The @RenderSection part should be on a new line. So i tried to add 'n in front of @RenderSection but this will create 'n@RenderSection instead of putting @RenderSection on a new line.
I also tried 'r'n@RenderSection, but this has the same effect. putting 'n between " " will work neither.