An open API service indexing awesome lists of open source software.

https://github.com/rekgrpth/pg_htmldoc

PostgreSQL implementation of HTMLDOC conversion software. It is a program that reads HTML and Markdown source files or web pages and generates corresponding EPUB, HTML, PostScript, or PDF files with an optional table of contents.
https://github.com/rekgrpth/pg_htmldoc

c html pdf postgresql ps

Last synced: 6 months ago
JSON representation

PostgreSQL implementation of HTMLDOC conversion software. It is a program that reads HTML and Markdown source files or web pages and generates corresponding EPUB, HTML, PostScript, or PDF files with an optional table of contents.

Awesome Lists containing this project

README

          

PostgreSQL implementation of HTMLDOC conversion software. It is a program that reads HTML and Markdown source files or web pages and generates corresponding EPUB, HTML, PostScript, or PDF files with an optional table of contents.

### [Use of the extension](#use-of-the-extension)

```sql
select htmldoc_addurl('https://github.com');
copy (
select convert2pdf()
) to '/var/lib/postgresql/htmldoc.pdf' WITH (FORMAT binary, HEADER false)
```