Skip to content

Commit

Permalink
[BUGFIX] Use the correct formatter="minimal" with BeautifulSoup
Browse files Browse the repository at this point in the history
  • Loading branch information
marble committed Jun 23, 2019
1 parent 6dbb907 commit 75abf03
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 20-Postprocess/run_64-Process-Html.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def process_html_file(folder, relpath):

if soup_modified:
with codecs.open(abspath, 'w', 'utf-8') as f2:
print(soup.prettify(formatter=None), file=f2)
print(soup.prettify(), file=f2)



Expand Down
11 changes: 9 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Release v2.6.0 (to be released)
===============================
Release v2.6.1 (Jun 23, 2019)
=============================

* [BUGFIX] Use the correct formatter="minimal" with BeautifulSoup
* 6dbb907 [BUGFIX] Dump the right sitemap-files list for singlehtml


Release v2.6.0 (Jun 22, 2019)
=============================

* ffbd087 Dump info to stdout if there are forbidden include files
* f68ebf0 Dump warnings.txt to stdout if not in _buildinfo
Expand Down

0 comments on commit 75abf03

Please sign in to comment.