telling the world we support Markdown files

This commit is contained in:
Julien Neuhart
2018-04-10 17:14:01 +02:00
parent 187485a9a1
commit 14580e9501
5 changed files with 5 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ type (
// by the user in the gotenberg.yml file.
CommandsConfig struct {
// Markdown is the command's configuration for converting
// an markdown file to PDF.
// an Markdown file to PDF.
Markdown *CommandConfig
// HTML is the command's configuration for converting
// an HTML file to PDF.

View File

@@ -25,7 +25,7 @@ type Type uint32
const (
// PDFType represents a... PDF file.
PDFType Type = iota
// MarkdownType represents a... markdown file.
// MarkdownType represents a... Markdown file.
MarkdownType
// HTMLType represents an... HTML file.
HTMLType