Current section

Files

Jump to
tableau lib tableau converters mdex_converter.ex
Raw

lib/tableau/converters/mdex_converter.ex

defmodule Tableau.MDExConverter do
@moduledoc """
Converter to parse markdown content with `MDEx`
"""
def convert(_filepath, _front_matter, body, %{site: %{config: config}}) do
MDEx.to_html!(body, config.markdown[:mdex])
end
end