refactor: only trim once
This commit is contained in:
parent
ca2b2a721f
commit
d3299f7c76
@ -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" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user