If I use svg(with title and description elements) inside anchor tag, the Screen reader like Narrator reads the title and description for anchor tag as well as svg. So, title and description are being read twice. How can I avoid this?
Eg:
<a>
<svg>
<title>Hello</title>
<description>Sample description</description>
</svg>
</a>