mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
commands: Remove extraneous newline from result of convert toTOML
Fixes #10351
This commit is contained in:
parent
e3f31352d4
commit
b002d47953
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ func InterfaceToFrontMatter(in any, format metadecoders.Format, w io.Writer) err
|
|||
return err
|
||||
}
|
||||
|
||||
_, err = w.Write([]byte("\n" + tomlDelimLf))
|
||||
_, err = w.Write([]byte(tomlDelimLf))
|
||||
return err
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue