Current section

Files

Jump to
floki lib floki html_parser mochiweb.ex
Raw

lib/floki/html_parser/mochiweb.ex

defmodule Floki.HTMLParser.Mochiweb do
@behaviour Floki.HTMLParser
@moduledoc false
@root_node "floki"
@impl true
def parse_document(html, args) do
html = ["<#{@root_node}>", html, "</#{@root_node}>"]
{@root_node, _, parsed} = :floki_mochi_html.parse(html, args)
{:ok, parsed}
end
# NOTE: mochi_html cannot make a distinction of a fragment and document.
@impl true
def parse_fragment(html, args), do: parse_document(html, args)
@impl true
def parse_document_with_attributes_as_maps(html, args) do
parse_document(html, Keyword.put(args, :attributes_as_maps, true))
end
@impl true
def parse_fragment_with_attributes_as_maps(html, args) do
parse_document(html, Keyword.put(args, :attributes_as_maps, true))
end
end