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 | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -1,14 +1,23 @@ defmodule Pandoc.MixProject do use Mix.Project + @version "0.2.0" + @source_url "https://webdevcat.me/git/pandoc/" + def project do [ app: :pandoc, - version: "0.1.0", + version: @version, elixir: "~> 1.14", deps: deps(), - description: "Pandoc", - package: [links: [], licenses: ["MIT"]] + description: "File-watcher and Mix task to convert Markdown files to HTML", + package: [ + links: %{ + "pandoc" => "https://pandoc.org/" + }, + licenses: ["MIT"] + ], + source_url: @source_url ] end |