mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 12:42:16 +01:00
telling the world we support Markdown files
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
<img src="https://user-images.githubusercontent.com/8983173/38133342-11df3bd8-340f-11e8-9fe4-50baecdceeca.png" alt="Gotenberg's logo" width="250" height="250" />
|
<img src="https://user-images.githubusercontent.com/8983173/38133342-11df3bd8-340f-11e8-9fe4-50baecdceeca.png" alt="Gotenberg's logo" width="250" height="250" />
|
||||||
</p>
|
</p>
|
||||||
<h3 align="center">Gotenberg</h3>
|
<h3 align="center">Gotenberg</h3>
|
||||||
<p align="center">A stateless API for converting HTML files and Office documents to PDF</p>
|
<p align="center">A stateless API for converting Markdown files, HTML files and Office documents to PDF</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://microbadger.com/images/thecodingmachine/gotenberg:{{ .Orbit.Branch }}">
|
<a href="https://microbadger.com/images/thecodingmachine/gotenberg:{{ .Orbit.Branch }}">
|
||||||
<img src="https://images.microbadger.com/badges/image/thecodingmachine/gotenberg:{{ .Orbit.Branch }}.svg" alt="MicroBadger">
|
<img src="https://images.microbadger.com/badges/image/thecodingmachine/gotenberg:{{ .Orbit.Branch }}.svg" alt="MicroBadger">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<img src="https://user-images.githubusercontent.com/8983173/38133342-11df3bd8-340f-11e8-9fe4-50baecdceeca.png" alt="Gotenberg's logo" width="250" height="250" />
|
<img src="https://user-images.githubusercontent.com/8983173/38133342-11df3bd8-340f-11e8-9fe4-50baecdceeca.png" alt="Gotenberg's logo" width="250" height="250" />
|
||||||
</p>
|
</p>
|
||||||
<h3 align="center">Gotenberg</h3>
|
<h3 align="center">Gotenberg</h3>
|
||||||
<p align="center">A stateless API for converting HTML files and Office documents to PDF</p>
|
<p align="center">A stateless API for converting Markdown files, HTML files and Office documents to PDF</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://microbadger.com/images/thecodingmachine/gotenberg:1.0.0">
|
<a href="https://microbadger.com/images/thecodingmachine/gotenberg:1.0.0">
|
||||||
<img src="https://images.microbadger.com/badges/image/thecodingmachine/gotenberg:1.0.0.svg" alt="MicroBadger">
|
<img src="https://images.microbadger.com/badges/image/thecodingmachine/gotenberg:1.0.0.svg" alt="MicroBadger">
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ type (
|
|||||||
// by the user in the gotenberg.yml file.
|
// by the user in the gotenberg.yml file.
|
||||||
CommandsConfig struct {
|
CommandsConfig struct {
|
||||||
// Markdown is the command's configuration for converting
|
// Markdown is the command's configuration for converting
|
||||||
// an markdown file to PDF.
|
// an Markdown file to PDF.
|
||||||
Markdown *CommandConfig
|
Markdown *CommandConfig
|
||||||
// HTML is the command's configuration for converting
|
// HTML is the command's configuration for converting
|
||||||
// an HTML file to PDF.
|
// an HTML file to PDF.
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ type Type uint32
|
|||||||
const (
|
const (
|
||||||
// PDFType represents a... PDF file.
|
// PDFType represents a... PDF file.
|
||||||
PDFType Type = iota
|
PDFType Type = iota
|
||||||
// MarkdownType represents a... markdown file.
|
// MarkdownType represents a... Markdown file.
|
||||||
MarkdownType
|
MarkdownType
|
||||||
// HTMLType represents an... HTML file.
|
// HTMLType represents an... HTML file.
|
||||||
HTMLType
|
HTMLType
|
||||||
|
|||||||
2
main.go
2
main.go
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
Package main handles the application startup and shutdown.
|
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.
|
For more information, go to https://github.com/thecodingmachine/gotenberg.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user