X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fxml_builder.ex;h=b58602c7b7592f4ef3fa9ab218deaa90afbb05e6;hb=cdcdbd88da76f18c21da7f6f15a29883044902c8;hp=ac1ac8a743db0ff01aca0dcb845d8b06a7ef3f5d;hpb=a3b9741a627ab0ab0e2ec0dc13c1ed81283cc50a;p=akkoma diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex index ac1ac8a74..b58602c7b 100644 --- a/lib/xml_builder.ex +++ b/lib/xml_builder.ex @@ -23,20 +23,23 @@ defmodule Pleroma.XmlBuilder do for element <- content do to_xml(element) end - |> Enum.join + |> Enum.join() end def to_xml(%NaiveDateTime{} = time) do NaiveDateTime.to_iso8601(time) end - def to_doc(content), do: "" <> to_xml(content) + def to_doc(content), do: ~s() <> to_xml(content) defp make_open_tag(tag, attributes) do - attributes_string = for {attribute, value} <- attributes do - "#{attribute}=\"#{value}\"" - end |> Enum.join(" ") - - Enum.join([tag, attributes_string], " ") |> String.strip + attributes_string = + for {attribute, value} <- attributes do + value = String.replace(value, "\"", """) + "#{attribute}=\"#{value}\"" + end + |> Enum.join(" ") + + [tag, attributes_string] |> Enum.join(" ") |> String.trim() end end