The template we are using has the structure set up like this.
<li><a href="dashboard.html"><span class="iconfa-laptop"></span>Dashboard</a></li>
Razor lets us use @Html helpers.
<li>@Html.ActionLink("Home", "Index", "Home")</li>
The above adds an icon to the left of the link text. Is there a way to duplicate this structure using Html helpers?
Or is the only way to type out the html manually?
<span>must be inside the<a>