Awesome
Stream markup parser, extendable, flexible, blazingly fast, with callbacks and more, ready for markdown…
Main Focus
This library is not yet another markdown parser, rather it’s a highly configurable
and extendable parser for any custom markdown-like markup. It has been created
mostly to allow custom markdown syntax, like ^foo^
for superscript, or ⇓bar⇓
for subscript. It also supports custom parsers
for anything that cannot be handled with generic parsers, inspired by markdown
(something more complex than standard markdown provides.)
The library provides callbacks for all the default syntax handlers, as well as for custom handlers, allowing the on-fly modification of what’s currently being processed.
Md
parses the incoming stream once and keeps the state, producing an AST
of the input document. It has an ability to recover from errors collecting them.
It currently does not support (and I frankly doubt it ever will)
lists with embedded quotes, and other contrived syntax. If one needs to perfectly
parse the common markdown, Md
is probably not the correct choice.
But if one wants to easily extend syntax almost without limits, Md
might be good.
Markup Handling
There are several different syntax patterns recognizable by Md
. Those are:
custom
— the custom parser implementingMd.Parser
behavious would be calledattributes
— inplace attributes for all tags"{{foo:'bar'}}"
→"<… foo='bar' …>"
substitute
— simple substitution, like"<"
→"<"
escape
— characters to be treated as is, not as a part of syntaxcomment
— characters to be treated as a comment, discarded in the outputflush
— somewhat breaking a paragraph flow, like triple-dashmagnet
— the markup for a single work following the patters, like#tag
block
— the whole block of input treated distinguished, like triple-backtickshift
— the same asblock
, but the opening marker should precede each line and"\n"
is treated as the closing markerpair
— the opening marker followed by closing marker, and a subsequent pair of opening and closing, like![name](#anchor)
; the second element might be an internal shortcut to the deferred disclosuredisclosure
— the disclosure of elements previously declared aspair
withdeferred
parameter providedparagraph
— a header, blockquote, or such, followed by a paragraph flow breaklist
— a list, like- one\n- two
tag
— allowed tags (e. g.<sup>2</sup>
)brace
— a most common markdown feature, like text decoration or such (e. g.**bold**
)
Syntax description
The syntax must be configured at compile time (because parse/2
handlers are
generated in compile time.) It is a map, having settings
key
settings: %{
outer: :p,
span: :span,
empty_tags: ~w|img hr br|a
}
and key ⇒ list_of_tuples
key-values, providing a text markup representation
and its handling rules. Here is the excerpt from the default parser for brace
s
brace: %{
"*" => %{tag: :b},
"_" => %{tag: :i},
"**" => %{tag: :strong, attributes: %{class: "nota-bene"}},
"__" => %{tag: :em},
"~" => %{tag: :s},
"~~" => %{tag: :del},
"`" => %{tag: :code, mode: :raw, attributes: %{class: "code-inline"}}
}
For more examples of what properties are allowed for each kind of handlers, see the sources (ATM.)
Predefined parsers
Md
comes with a generic predefined parser Md.Parser.Default
, which includes
all the markup currently supported by Md
.
Custom parser definition would be usually based on Md.Parser.Syntax.Void
syntax
as shown below
defmodule MyParser do
use Md.Parser
alias Md.Parser.Syntax.Void
@default_syntax Map.put(Void.syntax(), :settings, Void.settings())
@syntax @default_syntax |> Map.merge(%{
comment: [{"<!--", %{closing: "-->"}}],
paragraph: [
{"##", %{tag: :h2}},
{"###", %{tag: :h3}},
{">", %{tag: :blockquote}}
],
list:
[
{"- ", %{tag: :li, outer: :ul}},
{"+ ", %{tag: :li, outer: :ol}}
]
brace: [
{"*", %{tag: :b}},
{"_", %{tag: :i}},
{"~", %{tag: :s}},
{"`", %{tag: :code, mode: :raw, attributes: %{class: "code-inline"}}}
]
})
end
@syntax
module attribute must be declared, or DSL used as shown below
(declarations), or an argument in a call to use Md.Parser
.
The separate declarations will be collected and merged.
defmodule MyDSLParser do
@my_syntax %{brace: [{"***", %{tag: "u"}}]}
use Md.Parser, syntax: @my_syntax
import Md.Parser.DSL
comment "<!--", %{closing: "-->"}
...
end
Instead of @syntax
module attribute, one might use
- a parameter to
use Md.Parser
asuse Md.Parser, syntax: map()
- a DSL like
paragraph {"#", %{tag: :h1}}
.
Changelog
0.10.4
fix pairs with special symbols inside0.10.2
spaces as delimiters in attributes0.10.1
support for the flakyfloki
update0.10.0
[:tag:] attributes for tags0.9.10
[:ant:] escape in blocks (credits @adriansalamon,) sup, sub, center, youtube0.9.9
[:ant:] fixed nested mixed lists0.9.7
[:ant:] fixed custom parsers invocation0.9.4
addsclass: "empty-anchor"
to tags expecting attributes to be set, fixed :ant: with nested brackets0.9.3
addsclass: "empty-tag"
to empty tags to allow their display supression0.9.2
nested tags shallow support, default support for<dl>
0.9.1
acceptconfig :md, :httpc_options
config used withFloki
in TwitterCard/OG retrieval0.9.0
useunicode_set
instead ofstring_naming
by default for guards0.8.5
advancedterminators:
inmagnet
0.8.4
Md.Parser.Syntax.merge/2
0.8.2
walker:
andparser:
options in a call togenerate/2
0.8.0
Md.Transforms.Anchor
supporting twitter/og cards viaFloki
0.7.4
configurable linebreaks (defaults:\n
,\r\n
)0.7.1
Md.Guards
throughStringNaming
0.7.0
allowpayload
to be passed through within state0.6.8
xml_builder
→xml_builder_ex
(default formatting for code is now:none
)0.6.0
allow HTML tags (without attributes yet)0.5.0
DSL +use Md.Parser, syntax: …
for configurable syntax0.4.0
configurable syntax as@syntax
0.3.0
relaxed support for comments and tables0.2.1
deferred references like in[link][1]
followed by[1]: https://example.com
somewhere0.2.0
PoC, most of reasonable markdown is supported
Installation
def deps do
[
{:md, "~> 0.1"}
]
end