当前位置:网站首页>Markdown to realize text link jump

Markdown to realize text link jump

2022-06-24 08:26:00 Qredsun

Implement the internal link relationship in the screenshot

 Insert picture description here

Concrete realization :

  1. Add connection Association in the original text <a href="#info"> Radar information </a>
  2. The link points to the position to increase the association relationship <a id="info"> Radar information </a>

Sample original text :

| Parameters | type | describe 
|:----:|:----:|:----|
|code|Int|__ Field description :__  Interface response status  <br> __ Value range :__ 0: success 
|data|Object|__ Field description :__  Radar information  <br> __ Value range :__  Radar information object , Reference resources <a href="#info">  Radar information </a>
|msg|String|__ Field description :__  Interface response information  <br> __ Value range :__  character string 

* <a id="info"> Radar information </a>
原网站

版权声明
本文为[Qredsun]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206240520433105.html