Packages

**The extended, configurable markdown-like syntax parser, that produces an AST.** Supports the full set of `markdown`, plus extensions (custom markup with a bit of elixir code to handle parsing.) The AST produced is understandable by [`XmlBuilder`](https://github.com/joshnuss/xml_builder).

Current section

Files

Jump to
markright mix.exs
Raw

mix.exs

defmodule Markright.Mixfile do
@moduledoc false
use Mix.Project
@app :markright
def project do
[
app: @app,
version: "0.6.0",
elixir: "~> 1.3",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
escript: [main_module: Markright, path: "bin/#{@app}"],
description: description(),
package: package(),
deps: deps()
]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
# Specify extra applications you'll use from Erlang/Elixir
[applications: [:logger]]
end
# Dependencies can be Hex packages:
#
# {:my_dep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
#
# Type "mix help deps" for more examples and options
defp deps do
[
{:xml_builder, "~> 2.0"},
{:credo, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.22", only: :dev}
]
end
defp description do
"""
**The extended, configurable markdown-like syntax parser, that produces an AST.**
Supports the full set of `markdown`, plus extensions
(custom markup with a bit of elixir code to handle parsing.)
The AST produced is understandable by [`XmlBuilder`](https://github.com/joshnuss/xml_builder).
"""
end
defp package do
[
name: @app,
files: ~w|bin lib mix.exs README.md|,
maintainers: ["Aleksei Matiushkin"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/mudasobwa/#{@app}",
"Docs" => "https://hexdocs.pm/#{@app}"
}
]
end
end