From 9d51a8f29f74ee0c797e2ac5d389c64bb5ed110a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 8 Aug 2013 12:07:33 +0200 Subject: [PATCH] add missing / for xhtml --- Documentation/html_output_post_processing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/html_output_post_processing.py b/Documentation/html_output_post_processing.py index bfa1ee1bcb0..05937da70f7 100755 --- a/Documentation/html_output_post_processing.py +++ b/Documentation/html_output_post_processing.py @@ -309,10 +309,10 @@ removes some unneeded files, and performs minor repair on some glitches.''') #add a canonical link to all pages all_pages=glob.glob('*/*.html') for f in all_pages: - canonical_link="\n" + canonical_link="\n" re_replace_first_in_file(r'', r'\n'+canonical_link, f) ## special case for how_to_cite.html - canonical_link="\n" + canonical_link="\n" re_replace_first_in_file(r'', r'\n'+canonical_link+"\n", "Manual/how_to_cite.html")