I'm trying to use html.Raw with some content I get from the server , it is a html page with JavaScript embedded , something like this :
<title>Footer</title>
<script>alert("hi")</script>
<style>.custom-footer-wrapper {
margin-top: -12px;
background-color: #231f20;
color: #fff;
padding: 48px;
min-height: 300px
}
</style>
<div class="custom-footer-wrapper"><div class="row"><div class="logo col-md-2 col-xs-12">
</div>
when I render the html.raw with that string , is displaying all the html except the script tags, what I'm missing?
