Skip to content

Releases: madstone-tech/veve-cli

v0.9.1

13 Dec 03:18
90ed8ed

Choose a tag to compare

veve v0.9.1 - Markdown to PDF Converter

Transform your Markdown documents into beautiful PDFs with powerful theme support.

Installation

# Download the binary for your platform from the assets below
# Extract and install
tar -xzf veve_*.tar.gz
sudo mv veve /usr/local/bin/

# Or using Go
go install github.com/madstone-tech/veve-cli/cmd/veve@v0.9.1

# Or using Homebrew (when available)
brew tap madstone-tech/tap
brew install veve

Verification

veve --version

Quick Start

# Basic conversion
veve input.md -o output.pdf

# With theme
veve input.md --theme dark -o output.pdf

# List available themes
veve theme list

# Create a custom theme
mkdir -p ~/.config/veve/themes
cat > ~/.config/veve/themes/custom.css << 'EOF'
---
name: custom
author: Your Name
description: Custom theme
version: 1.0.0
---
body { color: blue; }
EOF

# Use custom theme
veve input.md --theme custom -o output.pdf

Changelog

Other

Features

  • 📄 Markdown to PDF: Convert markdown files to beautiful PDFs
  • 🎨 Themes: Built-in and custom themes (default, dark, academic)
  • ⚙️ Configuration: TOML-based configuration with XDG support
  • 🔧 Theme Management: veve theme list|add|remove
  • 🔀 Unix Composability: stdin/stdout piping support
  • 📦 Cross-Platform: macOS, Linux, Windows support

Changes in v0.9.1

See below for a complete list of changes in this release.

Full Changelog: v0.2.1...v0.9.1


Transform your documentation with veve-cli

v0.2.1

23 Nov 20:50
d84dc83

Choose a tag to compare

veve v0.2.1 - Markdown to PDF Converter

Transform your Markdown documents into beautiful PDFs with powerful theme support.

Installation

# Download the binary for your platform from the assets below
# Extract and install
tar -xzf veve_*.tar.gz
sudo mv veve /usr/local/bin/

# Or using Go
go install github.com/madstone-tech/veve-cli/cmd/veve@v0.2.1

# Or using Homebrew (when available)
brew tap madstone-tech/tap
brew install veve

Verification

veve --version

Quick Start

# Basic conversion
veve input.md -o output.pdf

# With theme
veve input.md --theme dark -o output.pdf

# List available themes
veve theme list

# Create a custom theme
mkdir -p ~/.config/veve/themes
cat > ~/.config/veve/themes/custom.css << 'EOF'
---
name: custom
author: Your Name
description: Custom theme
version: 1.0.0
---
body { color: blue; }
EOF

# Use custom theme
veve input.md --theme custom -o output.pdf

Changelog

Other

Features

  • 📄 Markdown to PDF: Convert markdown files to beautiful PDFs
  • 🎨 Themes: Built-in and custom themes (default, dark, academic)
  • ⚙️ Configuration: TOML-based configuration with XDG support
  • 🔧 Theme Management: veve theme list|add|remove
  • 🔀 Unix Composability: stdin/stdout piping support
  • 📦 Cross-Platform: macOS, Linux, Windows support

Changes in v0.2.1

See below for a complete list of changes in this release.

Full Changelog: ...v0.2.1


Transform your documentation with veve-cli