File: ignore.html

package info (click to toggle)
ruby-premailer 1.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 440 kB
  • sloc: ruby: 2,344; makefile: 3
file content (15 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html>
  <head>
    <title>Should ignore link and style elements with data attribute</title>
    <link rel="stylesheet" type="text/css" href="ignore.css" data-premailer="ignore" />
    <style type="text/css" data-premailer="ignore">
      h1 {
        color: red;
      }
    </style>
  </head>
  <body>
    <h1>Content</h1>
  </body>
</html>