mirror of
https://github.com/gohugoio/hugo.git
synced 2025-02-17 04:51:07 +00:00
Make error message when encountering unrecognized file extensions more helpful
This commit is contained in:
parent
ea8d0981d5
commit
0becad727a
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ func (page *Page) Convert() error {
|
||||||
case "html":
|
case "html":
|
||||||
page.Content = bytesToHTML(page.rawContent)
|
page.Content = bytesToHTML(page.rawContent)
|
||||||
default:
|
default:
|
||||||
return errors.New("Error converting unsupported file type " + markupType)
|
return fmt.Errorf("Error converting unsupported file type '%s' for page '%s'", markupType, page.FileName)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue