Problem
The content of <time> elements is removed from the output of Defuddle.
To reproduce:
- Go to the Defuddle Playground
- Paste the following:
<main>
<p>Current date is <time datetime="2026-03-03">March 3, 2026</time>.</p>
</main>
Note: I've wrapped it in <main> and <p> to force it to be inside of "main content" of a web page
- Notice the output is
Current date is . The metadata does pick up the time element, which should probably count as a false positive.
Solution
Output should be Current date is March 3, 2026., where the content of the <time> tag is used as-is.
Thanks in advance! I really enjoy playing around with the tool :)
Problem
The content of
<time>elements is removed from the output of Defuddle.To reproduce:
Note: I've wrapped it in
<main>and<p>to force it to be inside of "main content" of a web pageCurrent date is .The metadata does pick up the time element, which should probably count as a false positive.Solution
Output should be
Current date is March 3, 2026., where the content of the<time>tag is used as-is.Thanks in advance! I really enjoy playing around with the tool :)