summaryrefslogtreecommitdiffstats
path: root/hugolib/planner.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/planner.go')
-rw-r--r--hugolib/planner.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/hugolib/planner.go b/hugolib/planner.go
index 160479c4c..96962350e 100644
--- a/hugolib/planner.go
+++ b/hugolib/planner.go
@@ -11,7 +11,11 @@ func (s *Site) ShowPlan(out io.Writer) (err error) {
}
for _, p := range s.Pages {
- fmt.Fprintf(out, "%s\n", p.FileName)
+ fmt.Fprintf(out, "%s", p.FileName)
+ if p.IsRenderable() {
+ fmt.Fprintf(out, " (renderer: markdown)")
+ }
+ fmt.Fprintf(out, "\n")
fmt.Fprintf(out, " canonical => ")
if s.Target == nil {
fmt.Fprintf(out, "%s\n", "!no target specified!")