diff --git a/.blueprints/README.blueprint.md b/.blueprints/README.blueprint.md index a9740a86..9cb0f887 100644 --- a/.blueprints/README.blueprint.md +++ b/.blueprints/README.blueprint.md @@ -2,7 +2,7 @@ Gotenberg's logo

Gotenberg

-

A stateless API for converting HTML files and Office documents to PDF

+

A stateless API for converting Markdown files, HTML files and Office documents to PDF

MicroBadger diff --git a/README.md b/README.md index 2aaf78f0..71914225 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Gotenberg's logo

Gotenberg

-

A stateless API for converting HTML files and Office documents to PDF

+

A stateless API for converting Markdown files, HTML files and Office documents to PDF

MicroBadger diff --git a/app/config/config.go b/app/config/config.go index 26f77697..bff203ac 100644 --- a/app/config/config.go +++ b/app/config/config.go @@ -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. diff --git a/app/converter/file/file.go b/app/converter/file/file.go index 23f55812..2fae7b42 100644 --- a/app/converter/file/file.go +++ b/app/converter/file/file.go @@ -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 diff --git a/main.go b/main.go index 329d46ed..2a7371a1 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ /* Package main handles the application startup and shutdown. -Gotenberg is a stateless API for converting HTML files and Office documents to PDF. +Gotenberg is a stateless API for converting Markdown files, HTML files and Office documents to PDF. For more information, go to https://github.com/thecodingmachine/gotenberg. */