Merge pull request #48 from int00h5525/topics/url_escape_hexdump

Topics/HTML escape hexdump
This commit is contained in:
Neale Pickett 2018-09-28 08:00:44 -06:00 committed by GitHub
commit c7434954dc
1 changed files with 2 additions and 1 deletions

View File

@ -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))