tests.html
73 lines
| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 | <html lang="en" data-editor-version="2" class="sg-campaigns" xmlns="http://www.w3.org/1999/xhtml"> |
| 3 | |
| 4 | <head> |
| 5 | <meta charset="UTF-8" /> |
| 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 7 | <meta http-equiv="X-UA-Compatible" content="ie=edge" /> |
| 8 | |
| 9 | <link href="http://example.com/style.css" rel="stylesheet" /> |
| 10 | <link rel="icon" href="http://example.com/favicon.png" /> |
| 11 | |
| 12 | <title>Tiny Html Minifier</title> |
| 13 | </head> |
| 14 | |
| 15 | <body class="body"> |
| 16 | |
| 17 | <!-- A html comment--> |
| 18 | |
| 19 | <!-- A html comment--> |
| 20 | |
| 21 | <div> |
| 22 | <!-- A html comment--> |
| 23 | </div> |
| 24 | |
| 25 | <script type="application/ld+json"> |
| 26 | { |
| 27 | "@context": "http://schema.org", |
| 28 | "@type": "Event", |
| 29 | "location": { |
| 30 | "@type": "Place", |
| 31 | "address": { |
| 32 | "@type": "PostalAddress", |
| 33 | "addressLocality": "Denver", |
| 34 | "addressRegion": "CO", |
| 35 | "postalCode": "80209", |
| 36 | "streetAddress": "7 S. Broadway" |
| 37 | }, |
| 38 | "name": "The Hi-Dive" |
| 39 | }, |
| 40 | "name": "Typhoon with Radiation City", |
| 41 | "offers": { |
| 42 | "@type": "Offer", |
| 43 | "price": "13.00", |
| 44 | "priceCurrency": "USD", |
| 45 | "url": "http://www.ticketfly.com/purchase/309433" |
| 46 | }, |
| 47 | "startDate": "2013-09-14T21:30" |
| 48 | } |
| 49 | </script> |
| 50 | |
| 51 | <div class="main-wrap"> |
| 52 | <main> |
| 53 | <textarea> |
| 54 | Some text |
| 55 | with newlines |
| 56 | and some spaces |
| 57 | </textarea> |
| 58 | |
| 59 | <div class="test"> |
| 60 | <p>This text</p> |
| 61 | <p>should not</p> |
| 62 | <p>wrap on multiple lines</p> |
| 63 | </div> |
| 64 | </main> |
| 65 | </div> |
| 66 | <script> |
| 67 | console.log('Script tags are not minified'); |
| 68 | console.log('This is inside a script tag'); |
| 69 | </script> |
| 70 | |
| 71 | </body> |
| 72 | |
| 73 | </html> |