7 lines
127 B
Python
Executable file
7 lines
127 B
Python
Executable file
from util import hook, text
|
|
|
|
|
|
@hook.command
|
|
def munge(inp):
|
|
"munge <text> -- Munges up <text>."
|
|
return text.munge(inp)
|