paradoxxxzero_butterfly/butterfly/bin/bhtml

8 lines
165 B
Python
Executable file

#!/usr/bin/env python
from butterfly.escapes import html
import fileinput
import sys
with html():
for line in fileinput.input():
sys.stdout.write(line)