sync: avoid useless line break at the end of markdown processing
This commit is contained in:
parent
2fcbc44c60
commit
8afc7b9488
1 changed files with 3 additions and 0 deletions
|
@ -59,5 +59,8 @@ func ProcessMarkdown(i Importer, input string, rootDir string) (output string, e
|
|||
}
|
||||
}
|
||||
|
||||
// Trim output
|
||||
output = strings.TrimSpace(output)
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Reference in a new issue