+2
-2
src/xmleam/builder.gleam
+2
-2
src/xmleam/builder.gleam
···
48
48
/// "IDK why you would use this")
49
49
/// ->
50
50
/// <enclosure url="https://example.com"> IDK why you would use this </enclosure>
51
-
pub fn opts_cont_tag(
51
+
pub fn option_content_tag(
52
52
tag_name: String,
53
53
options: List(Option),
54
54
contents: List(String),
···
75
75
|> Ok
76
76
}
77
77
78
-
pub fn opts_tag(
78
+
pub fn option_tag(
79
79
tag_name: String,
80
80
options: List(Option),
81
81
) -> Result(String, XmlError) {