cleanup: Remove comments from abandoned approach.

This commit is contained in:
Karl Stolley
2025-08-07 11:11:53 -04:00
committed by Tim Abbott
parent a0441b5bcb
commit 1bcc52c860

View File

@@ -204,10 +204,6 @@ export function postprocess_content(html: string): string {
// We want a class to refer to audio elements
audio.classList.add("media-audio-element");
audio_wrapper.append(audio.cloneNode());
// Now we'll use a template to build additional DOM
// structures out of the original <audio> element
// const audio_html_string = audio.outerHTML;
// const rendered_audio_html = render_markdown_audio({audio_html: audio_html_string});
audio.replaceWith(audio_wrapper);
}