sync: avoid useless line break at the end of markdown processing

This commit is contained in:
nemunaire 2019-02-03 21:14:56 +01:00
parent 2fcbc44c60
commit 8afc7b9488
1 changed files with 3 additions and 0 deletions

View File

@ -59,5 +59,8 @@ func ProcessMarkdown(i Importer, input string, rootDir string) (output string, e
}
}
// Trim output
output = strings.TrimSpace(output)
return
}