Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/html/standard_html_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class StandardHtmlConverter(SongConverter):
def _add_chunk_group(self, chunks, parent, position):
"""Add a group of chunks that share the same position in text"""
# Debug comment showing chunk group content
parent.append(etree.Comment(', '.join(str(c).replace(u'-', '_') for c in chunks)))
# parent.append(etree.Comment(', '.join(str(c).replace(u'-', '_') for c in chunks)))

# Callect all chords and create chord stack
chords = [c.chord for c in chunks if c.chord]
Expand Down