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 'mix.exs')
-rw-r--r-- | mix.exs | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +defmodule Pandoc.MixProject do + use Mix.Project + + def project do + [ + app: :pandoc, + version: "0.1.0", + elixir: "~> 1.14", + deps: deps(), + description: "Pandoc", + package: [] + ] + end + + # Run "mix help compile.app" to learn about applications. + def application do + [ + extra_applications: [:logger], + mod: {Pandoc.Application, []} + ] + end + + # Run "mix help deps" to learn about dependencies. + defp deps do + [ + # {:dep_from_hexpm, "~> 0.3.0"}, + # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} + {:file_system, "~> 1.0"} + ] + end +end |