mirror of https://github.com/dirtbags/moth.git
Merge pull request #48 from int00h5525/topics/url_escape_hexdump
Topics/HTML escape hexdump
This commit is contained in:
commit
3b5e89c3f3
|
@ -4,6 +4,7 @@ import argparse
|
|||
import contextlib
|
||||
import glob
|
||||
import hashlib
|
||||
import html
|
||||
import io
|
||||
import importlib.machinery
|
||||
import mistune
|
||||
|
@ -244,7 +245,7 @@ class Puzzle:
|
|||
self.body.write(' ')
|
||||
self.body.write(' '.join(hexes[8:]))
|
||||
self.body.write(' |')
|
||||
self.body.write(''.join(chars))
|
||||
self.body.write(html.escape(''.join(chars)))
|
||||
self.body.write('|\n')
|
||||
offset += len(chars)
|
||||
self.body.write('{:08x}\n'.format(offset))
|
||||
|
|
Loading…
Reference in New Issue