Skip to content

Output <video> similar to <ul> #8

Closed
@stevenle

Description

@stevenle

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions