I would like to add a link (to a section) to a part of an equation in RMarkdown. I hope it becomes more clear in the following MWE:
MWE
---
title: "Link Test"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## Equation
$$
a^2 + b^2 = c^2
$$
## Description {#description}
Here we talk a lot about $c^2$. I can use `r kableExtra::text_spec("$c^2$", link = "#description")` to reference.
Now I would like to link on part of an equation, i.e. something like
$$
a^2 + b^2 = `r kableExtra::text_spec("$c^2$", link = "#description")`
$$
such that only $c^2$ is linked to the section inside the equation.
The attempt obviously does not work, maybe someone has an idea :)

