SkillAgentSearch skills...

PlutoBook.jl

Paged HTML Rendering Library

Install / Use

/learn @aviks/PlutoBook.jl
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

PlutoBook.jl

Build Status version Docs Stable

A Julia wrapper for the PlutoBook C++ library - a robust HTML rendering engine that converts HTML/XML content to PDF documents and bitmap images.

Features

  • Custom rendering engine (not based on Chromium/WebKit/Gecko)
  • Modern web standards: CSS 3/4, HTML5, XHTML, SVG support
  • Multiple output formats: PDF and bitmap images (PNG)
  • Flexible page control and custom page sizes
  • Memory efficient and optimized for performance

Installation

using Pkg
Pkg.add("PlutoBook")

Quick Start

using PlutoBook

# HTML content
html = """
<!DOCTYPE html>
<html><body>
<h1>Hello PlutoBook!</h1>
<p>Converting HTML to PDF with Julia & PlutoBook.</p>
</body></html>
"""

# Create book and render to PDF
book = plutobook_create(PLUTOBOOK_PAGE_SIZE_A4, 
                        PLUTOBOOK_PAGE_MARGINS_NORMAL, 
                        PLUTOBOOK_MEDIA_TYPE_PRINT)
plutobook_load_html(book, html, -1, "", "", "")
plutobook_write_to_pdf(book, "output.pdf")
plutobook_destroy(book)

Documentation

For detailed usage examples, API reference, and advanced features, see the documentation.

License

MIT License. See LICENSE for details.


[!NOTE]
This package is named after the upstream library that it wraps. It has no relation to the Pluto, the wonderful reactive notebook environment in Julia.

Related Skills

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated2mo ago
Forks0

Languages

HTML

Security Score

90/100

Audited on Jan 14, 2026

No findings