c_ph_r
c_ph_r

Reputation: 267

Escape "@" character in Blazor

Simple question: How to escape the "@" character in Blazor so you don't get reference error in this example?

<script src="https://unpkg.com/@here/harp.gl/dist/harp.js"></script>

I already tried "\@" and "\\@"

Upvotes: 1

Views: 1209

Answers (1)

Brian Parker
Brian Parker

Reputation: 14593

You need to use double @@. Docs are here

Upvotes: 6

Related Questions