From 14580e9501c974efaa2041abd763b583c3ed9ea6 Mon Sep 17 00:00:00 2001
From: Julien Neuhart
Date: Tue, 10 Apr 2018 17:14:01 +0200
Subject: [PATCH] telling the world we support Markdown files
---
.blueprints/README.blueprint.md | 2 +-
README.md | 2 +-
app/config/config.go | 2 +-
app/converter/file/file.go | 2 +-
main.go | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
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
-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
diff --git a/README.md b/README.md
index 2aaf78f0..71914225 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
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
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.
*/