Skip to content

Commit e118ecc

Browse files
authored
Fix documentation link formatting in README_cn (#2615)
This PR fixes the formatting of documentation and source code links in the README. Current issue: The links are enclosed in backticks, which causes them to be displayed as code instead of clickable links. Changes made: - Removed backticks surrounding the documentation and source code links - Kept the HTML <a> tags to maintain the "target="_blank" functionality Reason for change: This formatting error affects the usability of the README, as users cannot directly click on the links. The fix improves navigation and overall user experience when viewing the project's GitHub page. Related files: - README.md
1 parent 15d4d43 commit e118ecc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

i18n/README_cn.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@
2525
<b>中文(简体)</b>
2626
<p>
2727
</h4>
28+
2829
---
2930

30-
**文档**: `<a href="https://hf.co/docs/huggingface_hub" target="_blank">`https://hf.co/docs/huggingface_hub `</a>`
31+
**文档**: <a href="https://hf.co/docs/huggingface_hub" target="_blank">https://hf.co/docs/huggingface_hub </a>
3132

32-
**源代码**: `<a href="https://github.com/huggingface/huggingface_hub" target="_blank">`https://github.com/huggingface/huggingface_hub `</a>`
33+
**源代码**: <a href="https://github.com/huggingface/huggingface_hub" target="_blank">https://github.com/huggingface/huggingface_hub </a>
3334

3435
---
3536

0 commit comments

Comments
 (0)