X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fxml_builder.ex;h=88f8ce2a37a0ca7f54bcc71e2e4f4588a95675db;hb=1afd6d37bd2febb58ee09d273b9c7d690022d3c3;hp=c6d1449036705084f785c056b3dfce32f0ee703e;hpb=6cf7c132282e612514af992c6dea0b03ee5b678d;p=akkoma diff --git a/lib/xml_builder.ex b/lib/xml_builder.ex index c6d144903..88f8ce2a3 100644 --- a/lib/xml_builder.ex +++ b/lib/xml_builder.ex @@ -23,7 +23,7 @@ defmodule Pleroma.XmlBuilder do for element <- content do to_xml(element) end - |> Enum.join + |> Enum.join() end def to_xml(%NaiveDateTime{} = time) do @@ -33,10 +33,12 @@ defmodule Pleroma.XmlBuilder do 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(" ") + attributes_string = + for {attribute, value} <- attributes do + "#{attribute}=\"#{value}\"" + end + |> Enum.join(" ") - [tag, attributes_string] |> Enum.join(" ") |> String.strip + [tag, attributes_string] |> Enum.join(" ") |> String.trim() end end