Edgewall Software

Changes between Version 2 and Version 3 of MarkupBuilder


Ignore:
Timestamp:
Jul 9, 2006, 12:56:17 AM (18 years ago)
Author:
cmlenz
Comment:

Remove python highlighting as it doesn't get the interpreter style samples

Legend:

Unmodified
Added
Removed
Modified
  • MarkupBuilder

    v2 v3  
    66
    77{{{
    8 #!python
    98>>> from markup.builder import tag
    109>>> doc = tag.p('Some text and ', tag.a('a link', href='http://example.org/'), '.')
     
    1615
    1716{{{
    18 #!python
    1917>>> doc(tag.br)
    2018<Element "p">
     
    2624
    2725{{{
    28 #!python
    2926>>> doc(class_='intro')
    3027<Element "p">
     
    3633
    3734{{{
    38 #!python
    3935>>> stream = doc.generate()
    4036>>> stream
     
    4743
    4844{{{
    49 #!python
    5045>>> substream = stream.select('a')
    5146>>> substream