Current section

Files

Jump to
exd_plugin_html lib exd plugin html_parse_list.ex
Raw

lib/exd/plugin/html_parse_list.ex

defmodule Exd.Plugin.HTMLParseList do
@moduledoc """
"""
use Exd.UDF
@impl true
def name do
:html_parse_list
end
@impl true
def eval([markup, selector]) do
result = ExdHTML.Parser.parse_list(markup, selector)
{:ok, result}
end
end