From f57ac84c1877bd2120018cd3b315aad332ff697e Mon Sep 17 00:00:00 2001 From: dberzano Date: Thu, 5 Feb 2015 20:12:18 +0100 Subject: [PATCH] doxy: re-refactor comment after adding brief --- doxygen/thtml2doxy.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doxygen/thtml2doxy.py b/doxygen/thtml2doxy.py index 67b91bc1a11..b894d20ab77 100755 --- a/doxygen/thtml2doxy.py +++ b/doxygen/thtml2doxy.py @@ -468,7 +468,9 @@ def comment_classdesc(filename, comments, look_no_further_than_line): break comm_idx = comm_idx + 1 if brief is not None: - comment_lines = [ comment_lines[0], '\\brief ' + brief ] + comment_lines[1:comm_idx] + comment_lines[comm_idx+1:] + comment_lines = refactor_comment( + [ comment_lines[0], '\\brief ' + brief ] + comment_lines[1:comm_idx] + comment_lines[comm_idx+1:], + do_strip_html=False, infilename=filename) logging.debug('Comment found for class %s' % Colt(class_name_doxy).magenta()) comments.append(Comment( -- 2.39.3