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 lib markright parsers hr.ex
Raw

lib/markright/parsers/hr.ex

defmodule Markright.Parsers.Hr do
@moduledoc ~S"""
The default horizontal rule implementation, unsure if needed.
"""
use Markright.Helpers.Flush, tag: :hr
end