I'm migrating from VuePress to Astro. In VuePress, I was able to highlight code lines with syntax like this:
```csharp {1}
public override int GetHashCode()
{
return prop1.GetHashCode() ^ prop2.GetHashCode()
}
```
The first line would be highlighted in the resulting HTML.
In Astro, I am not getting any highlight. How do I enable that?
Btw, on the official docs I see some more nice features regarding code blocks:
- diffs
- highlighting just some specific text, not entire lines.
https://docs.astro.build/en/guides/assets/
For now, line highlighting is enough for me.