Skip to main content

A simple tag wrapping method for XML and HTML.

Project description

tag_wrap

A simple tag and attribute generation tool.

Purpose

Developed to simplify the generation of HTML and XML content.

Usage

Syntax: wrap(tag_name, optional_attribute1="here", optional_attributeN="here, content_to_be_wrapped)

You may specify any number of attributes and any number of items to wrap as well as nesting tags themselves.


Examples

import tag_wrap

HTML Paragraph

tag_wrap.wrap('p', "This is a paragraph.")

Produces:

<p>This is a paragraph.</p>

Nested HTML with attributes and a nested body

tag_wrap.wrap('html', lang="en-US", wrap('body', 'Body content here'))

Produces:

<html lang="en-US"><body>Body content here</body></html>


Authors

Josh Whetton

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tag_wrap-1.0.6.tar.gz (2.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page