Skip to content

Conversation

@ReagentX
Copy link
Owner

@ReagentX ReagentX commented Dec 5, 2025

@ReagentX ReagentX self-assigned this Dec 5, 2025
@ReagentX ReagentX added bug Something isn't working crate: cli Related to the CLI crate html Related to HTML Export labels Dec 5, 2025
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes issue #641 by correcting invalid HTML syntax in the HTML exporter. The changes address two types of HTML syntax errors: commas incorrectly placed between HTML attributes (which are invalid in HTML) and missing closing angle brackets on opening HTML tags. These corrections ensure the generated HTML is valid and will render correctly in browsers.

Key Changes:

  • Removed extraneous commas between HTML attributes (e.g., class="message", id="..."class="message" id="...")
  • Fixed incomplete opening tags by adding missing closing angle brackets (e.g., type="audio" </audio>type="audio"> </audio>)
  • Updated test assertions to match the corrected HTML output

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@ReagentX ReagentX merged commit 7d8c99a into develop Dec 5, 2025
7 checks passed
@ReagentX ReagentX deleted the feat/cs/fix-audio-tags branch December 5, 2025 20:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working crate: cli Related to the CLI crate html Related to HTML Export

Projects

Development

Successfully merging this pull request may close these issues.

Missing closing brackets for HTML audio tags

2 participants