Skip to main content

easy HTML and XHTML transcription

Project description

Malformed markup is enraging. Therefore, when I must generate HTML I construct a token structure using natural Python objects (strings, lists, dicts) and use this module to transcribe them to syntacticly correct HTML. This also avoids lots of tediuous and error prone entity escaping.

  • tok2s: transcribe tokens to a string; trivial wrapper for puttok

  • puttok: transcribe tokens to a file

  • text2s: transcribe a string to an HTML-safe string; trivial wrapper for puttext

  • puttext: transcribe a string as HTML-safe text to a file

  • BR: a convenience token for <br/>, which I use a lot

A “token” in this scheme is:

  • a string: transcribed safely to HTML

  • an int or float: transcribed safely to HTML

  • a preformed token object with .tag (a string) and .attrs (a mapping) attributes

  • a sequence: an HTML tag: element 0 is the tag name, element 1 (if a mapping) is the element attributes, any further elements are enclosed tokens

    • because a string like “&foo” gets its “&” transcribed into the entity “&amp;”, a single element list whose tag begins with “&” encodes an entity, example: [”&lt;”]

Example:

from cs.html import puttoken, BR
[...]
table = ['TABLE', {'width': '80%'},
         ['TR',
          ['TD', 'a truism'],
          ['TD', '1 < 2']
         ]
        ]
[...]
puttoken(sys.stdout,
          'Here is a line with a line break.', BR,
          'Here is a trite table.',
          table)

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

cs.html-20150721.tar.gz (4.3 kB view details)

Uploaded Source

File details

Details for the file cs.html-20150721.tar.gz.

File metadata

  • Download URL: cs.html-20150721.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for cs.html-20150721.tar.gz
Algorithm Hash digest
SHA256 0ed36eda20b526a03c9860d31646740ae0daf8953c9332ea5cde899b7debaf97
MD5 c15bfba2cf1c73bdfb728de4f1fb7872
BLAKE2b-256 864aff73b9e99b242aa1377ce6bbbacf6ad11ab1bb368b7ea1e7211b954341f4

See more details on using hashes here.

Supported by

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