mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
14 lines
264 B
Go
14 lines
264 B
Go
//go:build noMarkdown
|
|
|
|
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// renderNote prints the notes section of an entry to stdout (when Markdown rendering is disabled).
|
|
func renderNote(noteLines []string) {
|
|
fmt.Print("\n" + strings.Join(noteLines, "\n") + "\n\n")
|
|
}
|