| ZVON > References > [XHTML Basic] Reference |
| Intro / Search / ZVON |
| Text Module > element pre |
| Element: | pre |
| Attributes: | | class | id | title | xml:lang | |
| Parents: | | blockquote | body | dd | div | form | li | object | td | th | |
| Children: | | #PCDATA | a | abbr | acronym | b | br | cite | code | dfn | em | i | kbd | map | q | samp | script | span | strong | tt | var | |
| Your browser display: |
Higher still and higher
From the earth thou springest
Like a cloud of fire;
The blue deep thou wingest,
And singing still dost soar, and soaring ever singest.
| Source [ Open as XHTML document ] |
|
<pre>
Higher still and higher
From the earth thou springest
Like a cloud of fire;
The blue deep thou wingest,
And singing still dost soar, and soaring ever singest.
</pre>
|
| Your browser display: |
If called with: John
#!/usr/bin/python
import sys
print "Hello " + sys.argv[1] + "!"
Outputs: Hello John!
| Source [ Open as XHTML document ] |
|
<p>If called with: <kbd>John</kbd> </p> <h3>Program:</h3> <pre> <code> #!/usr/bin/python import sys print "Hello " + <var>sys.argv[1]</var> + "!" </code> </pre> <p>Outputs: <samp> Hello John! </samp> </p> |