decentral1se
3 years ago
No known key found for this signature in database
GPG Key ID: 3789458B3D0C410
1 changed files with
4 additions and
2 deletions
-
distribusi.go
|
|
@ -607,13 +607,15 @@ func mkHref(c *cli.Context, fpath string, mtype string) (bool, string, error) { |
|
|
|
return unknown, href, err |
|
|
|
} |
|
|
|
|
|
|
|
trimmed := trimFinalNewline(fcontents) |
|
|
|
|
|
|
|
if stype == "html" { |
|
|
|
hrefTemplate = htmlTags[ftype][stype] |
|
|
|
href = fmt.Sprintf(hrefTemplate, fname, trimFinalNewline(fcontents)) |
|
|
|
href = fmt.Sprintf(hrefTemplate, fname, trimmed) |
|
|
|
strippedDebugOutput = fmt.Sprintf(hrefTemplate, fname, logStripMsg) |
|
|
|
} else { |
|
|
|
hrefTemplate = htmlTags[ftype]["generic"] |
|
|
|
href = fmt.Sprintf(hrefTemplate, trimFinalNewline(fcontents)) |
|
|
|
href = fmt.Sprintf(hrefTemplate, trimmed) |
|
|
|
strippedDebugOutput = fmt.Sprintf(hrefTemplate, logStripMsg) |
|
|
|
} |
|
|
|
} else if ftype == "image" { |
|
|
|