Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output <video> similar to <ul> #8

Closed
stevenle opened this issue Feb 22, 2012 · 1 comment
Closed

Output <video> similar to <ul> #8

stevenle opened this issue Feb 22, 2012 · 1 comment

Comments

@stevenle
Copy link
Contributor

Currently,

    elements.

    For example, before:

    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8">
        <title>Video</title>
      </head>
      <body>
        <video width="320" height="240" controls="controls">
          <source src="movie.mp4" type="video/mp4" />
          <source src="movie.ogg" type="video/ogg" />
          Your browser does not support the video tag.
        </video>
      </body>
    </html>

    After:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta name="generator" content=
    "HTML Tidy for Linux from https://github.com/w3c/tidy-html5">
    <meta charset="utf-8">
    <title>Video</title>
    </head>
    <body>
    <video width="320" height="240" controls="controls"><source src=
    "movie.mp4" type="video/mp4"> <source src="movie.ogg" type=
    "video/ogg"> Your browser does not support the video tag.</video>
    </body>
    </html>

    Proposed:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta name="generator" content=
    "HTML Tidy for Linux from https://github.com/w3c/tidy-html5">
    <meta charset="utf-8">
    <title>Video</title>
    </head>
    <body>
    <video width="320" height="240" controls="controls">
    <source src="movie.mp4" type="video/mp4">
    <source src="movie.ogg" type="video/ogg"> 
    Your browser does not support the video tag.
    </video>
    </body>
    </html>
@dontcallmedom
Copy link
Contributor

I think that because

GerHobbelt pushed a commit to GerHobbelt/tidy-html5 that referenced this issue Nov 1, 2024
Disable building rdtidy executable  by default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants