forked from AkkomaGang/akkoma
xml builder: properly escape quotes
This commit is contained in:
parent
582bd9d170
commit
80759f012e
1 changed files with 1 additions and 0 deletions
|
@ -35,6 +35,7 @@ def to_doc(content), do: ~s(<?xml version="1.0" encoding="UTF-8"?>) <> to_xml(co
|
|||
defp make_open_tag(tag, attributes) do
|
||||
attributes_string =
|
||||
for {attribute, value} <- attributes do
|
||||
value = String.replace(value, "\"", """)
|
||||
"#{attribute}=\"#{value}\""
|
||||
end
|
||||
|> Enum.join(" ")
|
||||
|
|
Loading…
Reference in a new issue