summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoop Kiefte <ikojba@gmail.com>2019-01-08 16:25:53 +0100
committerJoop Kiefte <ikojba@gmail.com>2019-01-08 16:25:53 +0100
commit5861ed4f19c32d01d80921b3a8254b20789ebb5f (patch)
tree1a29c62e6c3c4b74208f63f836ebbb011ebe4313
parent0a713520274a3550091c22e962b6d27f6564a333 (diff)
add warning about PDF output
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index dfd1d2c..d973727 100644
--- a/main.go
+++ b/main.go
@@ -74,6 +74,7 @@ func main() {
log.Println("Cannot write PDF to standard output")
return
}
+ log.Println("While the PDF output of this tool is acceptable for most purposes, I would recommend against it for sending in your screenplay. For command line usage, the Afterwriting commandline tools and e.g. the latex export of emacs fountain-mode look really good.")
pdf.Create(*output, rules.Default, i)
case "lex":
lex.Write(i, outfile)