From eb374d20f553b0f1c1d03e78f320ae7557f5d57c Mon Sep 17 00:00:00 2001 From: Willem van den Ende Date: Thu, 30 Apr 2026 21:42:39 +0100 Subject: [PATCH] update synopsis and module docs to mention DOCX output --- docster.cabal | 6 +++--- src/Docster/Compiler.hs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docster.cabal b/docster.cabal index 911808b..3a11a36 100644 --- a/docster.cabal +++ b/docster.cabal @@ -1,9 +1,9 @@ cabal-version: 3.0 name: docster version: 0.1.0.0 -synopsis: A self-contained CLI tool that converts Markdown with Mermaid diagrams to PDF/HTML -description: Docster converts Markdown documents containing Mermaid diagrams into PDF or HTML files - using Pandoc and Mermaid CLI. It automatically renders Mermaid code blocks to SVG +synopsis: A self-contained CLI tool that converts Markdown with Mermaid diagrams to PDF, HTML, or DOCX +description: Docster converts Markdown documents containing Mermaid diagrams into PDF, HTML, or DOCX files + using Pandoc and Mermaid CLI. It automatically renders Mermaid code blocks to SVG (HTML) or PNG (PDF/DOCX) and embeds them in the output. homepage: https://github.com/yourusername/docster license: BSD-3-Clause diff --git a/src/Docster/Compiler.hs b/src/Docster/Compiler.hs index 9bb0d02..60fa243 100644 --- a/src/Docster/Compiler.hs +++ b/src/Docster/Compiler.hs @@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE LambdaCase #-} --- | Document compilation functionality for PDF and HTML output +-- | Document compilation functionality for PDF, HTML, and DOCX output module Docster.Compiler ( -- * Compilation Functions compileToPDF