index : pandoc | |
Hex package with a file-watcher and Mix task for using Pandoc to convert Markdown files to HTML. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'lib/pandoc.ex')
-rw-r--r-- | lib/pandoc.ex | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/pandoc.ex b/lib/pandoc.ex index ec5ce70..57606da 100644 --- a/lib/pandoc.ex +++ b/lib/pandoc.ex @@ -4,11 +4,6 @@ defmodule Pandoc do """ def run(profile, ["--watch" | dirs]) do - IO.puts(""" - - Pandoc watcher starting, env: #{Application.get_env(:pandoc, profile) |> inspect(pretty: true)} - """) - ref = __MODULE__.Supervisor |> Supervisor.start_child( @@ -51,10 +46,6 @@ defmodule Pandoc do ) end) - IO.puts(""" - System command running: #{inspect(Enum.join(["pandoc" | args ++ extra_args], " "))} - """) - "pandoc" |> System.cmd(args ++ extra_args, opts) |> elem(1) end end |