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
Current section
Files
mix.exs
defmodule Markright.Mixfile do
use Mix.Project
@app :markright
def project do
[app: @app,
version: "0.3.1",
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, "~> 0.0.9", only: ~w|dev test|a},
{:credo, "~> 0.5", only: :dev},
{:ex_doc, "~> 0.11", 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: :markright,
files: ~w|bin lib mix.exs README.md|,
maintainers: ["Aleksei Matiushkin"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mudasobwa/markright",
"Docs" => "https://hexdocs.pm/markright"}]
end
end