<div dir="ltr"><div><div><div>This problem isn’t all that different in Swift than it is in any other OO language. As someone who has done a lot of this in the past, a good strategy that worked is:<br><br></div>Create an “`HTMLNode`” superclass, and have inherited from it individual tags such as `br`, `p`, `table`, `tr`, etc. In Swift it may be better to use protocols and you can lower them to structs. Each tag struct should have a few static properties indicating the tag’s ASCII name, whether or not it’s allowed to contain text, and if you want, how the tag should be indented. It should have two instance properties, a dictionary `attributes:[String: String]`, and a contents vector. The vector is the hardest thing to get right, since it contains all the children of the node, which may include textual characters as well as node structs. If you are not writing an editor, you may find it helpful to create a pseudotag struct “text” that just contains a `String` so that your vector has a type `HTMLNode` instead of `Any`. Alternatively you can use an `enum` with an associated value to achieve a type-safe `Character`/`HTMLNode` union type.<br><br></div>You can easily build such a tree parsing an HTML file with two stacks. Outputting the tree to a string is a little more complex if you want good identation, but the main idea is you traverse the tree recursively, bumping up the indentation level each time, and the emitter function can either append a new String to the output vector, or append to the last String in the output vector, depending on if the enclosing tag is allowed to contain text, or if it can only contain other nodes.<br><br></div><div>To print the attributes inside the tags themselves, you want to use some sort of “DNA” system to enforce type safety, and preserve canonical ordering information, if desired.<br></div><div><br></div>Good luck!<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 19, 2017 at 4:09 AM, Rien via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I want to generate some HTML code with Swift. Of course there are many way to do this, but I am not looking to do an &quot;in-dept all options open” approach.<br>
Just some ‘get the html out quickly” type of thing.<br>
<br>
So I wonder, how do _you_ do this?<br>
<br>
Simply using Strings is one option, but cumbersome and without any ‘html-type-safety’<br>
Using some general purpose function (e.g. func tagged(tag: String, content: String) -&gt; String) helps a little, but not very much.<br>
Enums are another possibility.<br>
Or var’s in a struct/class that wrap the html element etc.<br>
<br>
Many possibilities.<br>
<br>
Any suggestion is welcome, suggestions as wel as experiences.<br>
Of course if there is a solution out there, I’d like to know as well. (I didn’t find any though)<br>
<br>
<br>
Regards,<br>
Rien<br>
<br>
Site: <a href="http://balancingrock.nl" rel="noreferrer" target="_blank">http://balancingrock.nl</a><br>
Blog: <a href="http://swiftrien.blogspot.com" rel="noreferrer" target="_blank">http://swiftrien.blogspot.com</a><br>
Github: <a href="http://github.com/Balancingrock" rel="noreferrer" target="_blank">http://github.com/<wbr>Balancingrock</a><br>
Project: <a href="http://swiftfire.nl" rel="noreferrer" target="_blank">http://swiftfire.nl</a> - A server for websites build in Swift<br>
<br>
<br>
<br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-users</a><br>
</blockquote></div><br></div>