🐛 The hyperlink in the marketplace package README fails to jump to the browser to open Fix https://github.com/siyuan-note/siyuan/issues/8452
This commit is contained in:
parent
228452b8e2
commit
82fa9f58b2
1 changed files with 1 additions and 2 deletions
|
@ -524,8 +524,7 @@ func renderREADME(repoURL string, mdData []byte) (ret string, err error) {
|
|||
}
|
||||
|
||||
doc.Find("a").Each(func(i int, selection *goquery.Selection) {
|
||||
href, ok := selection.Attr("href")
|
||||
if ok {
|
||||
if href, ok := selection.Attr("href"); ok {
|
||||
if util.IsRelativePath(href) {
|
||||
selection.SetAttr("href", linkBase+href)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue