Skip to content

Instantly share code, notes, and snippets.

@reuven
Created September 2, 2014 12:56
Show Gist options
  • Save reuven/6ceb8ab2ed936e054bf6 to your computer and use it in GitHub Desktop.
Save reuven/6ceb8ab2ed936e054bf6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# def xml(....)
#
# print xml('foo') # => <foo></foo>
# print xml('foo', 'bar') # => <foo>bar</foo>
# print xml('p', xml('i', xml('b', 'Hello')))
# # # # # => <p><i><b>Hello</b></i></p>
# print xml('foo', 'bar', a=1) # => <foo a="1">bar</foo>
# print xml('foo', 'bar', a=1, b=2) # => <foo a="1" b="2">bar</foo>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment