From 5b4d975c7bd080e2e5b77069c21fa9a371c53599 Mon Sep 17 00:00:00 2001 From: Rahman Usta Date: Mon, 16 Oct 2023 09:17:20 +0300 Subject: [PATCH] CLI based file conversion --- src/main/java/com/kodedu/boot/CmdlineConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/kodedu/boot/CmdlineConfig.java b/src/main/java/com/kodedu/boot/CmdlineConfig.java index 060947a7..4bda6d6a 100644 --- a/src/main/java/com/kodedu/boot/CmdlineConfig.java +++ b/src/main/java/com/kodedu/boot/CmdlineConfig.java @@ -16,7 +16,7 @@ public class CmdlineConfig { @CmdOption(names = {"--workdir", "-w"}, args = "DIRECTORY", description = "Working directory to use when generating opened files views") String workingDirectory = null; - @CmdOption(names = {"--backend", "-b"}, args = "BACKEND", description = "Defines output format: pdf, html, docbook") + @CmdOption(names = {"--backend", "-b"}, args = "BACKEND", description = "Defines output format: pdf, html, docbook, epub") String backend = null; @CmdOption(names = {"--headless", "-H"}, description = "Selects to start AsciidocFX in headless mode")