12 lines
382 B
Python
Executable file
12 lines
382 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
concat = '<font face="courier new" size="-1"><br>'
|
|
thisline = ""
|
|
import sys
|
|
for line in sys.stdin:
|
|
thisline = line.expandtabs(7)
|
|
thisline = thisline.replace("&", "&").replace("<","<").replace(">",">")
|
|
thisline = thisline.replace("\n", "<br>")
|
|
thisline = thisline.replace(" "," ")
|
|
concat = concat + thisline # + "<br>"
|
|
print concat + "</font>"
|