From f2b4e259f0151c82f55e01c7c9d2a9485a3ee226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Jeschke?= Date: Wed, 18 Mar 2015 23:18:43 +0100 Subject: [PATCH] Clarified description for --highlighter parameter --- .../com/github/rjeschke/txtmark/cmd/TxtmarkArguments.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/github/rjeschke/txtmark/cmd/TxtmarkArguments.java b/src/main/java/com/github/rjeschke/txtmark/cmd/TxtmarkArguments.java index f379e9f..51f48d4 100644 --- a/src/main/java/com/github/rjeschke/txtmark/cmd/TxtmarkArguments.java +++ b/src/main/java/com/github/rjeschke/txtmark/cmd/TxtmarkArguments.java @@ -38,6 +38,8 @@ final class TxtmarkArguments @CmdArgument(l = "out-file", s = 'o', desc = "specifies the output filename, writes to stdout otherwise") public String outFile = null; - @CmdArgument(l = "highlighter", desc = "specifies a program [meta in-file outfile] that should be used for highlighting fenced code blocks") + @CmdArgument(l = "highlighter", desc = "full path to a program taking three arguments [meta in-file out-file] " + + "that should be used for highlighting fenced code blocks. 'in-file' contains the text to be highlighted/escaped, " + + "the result is expected to be written to 'out-file'") public String highlighter = null; }