diff --git a/markup/link.go b/markup/link.go index 8aac40c..1c358be 100644 --- a/markup/link.go +++ b/markup/link.go @@ -22,9 +22,11 @@ func LinkParts(addr, display, hyphaName string) (href, text, class, icon string) case strings.ContainsRune(addr, ':'): pos := strings.IndexRune(addr, ':') destination := addr[:pos] - text = addr[pos+1:] - if strings.HasPrefix(text, "//") && len(text) > 2 { - text = text[2:] + if display == "" { + text = addr[pos+1:] + if strings.HasPrefix(text, "//") && len(text) > 2 { + text = text[2:] + } } return addr, text, "wikilink_external", fmt.Sprintf(``, destination) case strings.HasPrefix(addr, "/"):