file_path
stringlengths
3
280
file_language
stringclasses
66 values
content
stringlengths
1
1.04M
repo_name
stringlengths
5
92
repo_stars
int64
0
154k
repo_description
stringlengths
0
402
repo_primary_language
stringclasses
108 values
developer_username
stringlengths
1
25
developer_name
stringlengths
0
30
developer_company
stringlengths
0
82
crates/swc_html_minifier/tests/fixture/text/empty-1/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-2/input.html
HTML
<!doctype html> <html><head></head><body></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-2/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-3/input.html
HTML
<!doctype html> <html></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-3/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-4/input.html
HTML
<!doctype html><html> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-4/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-5/input.html
HTML
<!doctype html> <html> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-5/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-body/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty-body/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty/input.html
HTML
<!doctype html> <html><body></body></html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/empty/output.min.html
HTML
<!doctype html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/first-and-last-text/input.html
HTML
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div>text</div> </body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/first-and-last-text/output.min.html
HTML
<!doctype html><html lang=en><meta charset=UTF-8><meta name=viewport content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0"><meta http-equiv=X-UA-Compatible content="ie=edge"><title>Document</title><div>text</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-1/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <strong>baz</strong> bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-1/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo <strong>baz</strong> bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-10/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<strong>baz</strong>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-10/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<strong>baz</strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-11/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <strong>baz</strong>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-11/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <strong>baz</strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-12/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <strong>baz</strong> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-12/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <strong>baz</strong> bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-13/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <strong> baz </strong> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-13/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <strong>baz </strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-14/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<strong> baz </strong>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-14/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<strong> baz </strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-15/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <strong> baz </strong>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-15/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <strong>baz </strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-16/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<strong> baz </strong> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-16/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<strong> baz </strong>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-17/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><span class="input-group-btn"> <button class="btn btn-default" type="button"> <span class="glyphicon glyphicon-search"></span> </button> </span></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-17/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><span class=input-group-btn><button class="btn btn-default" type=button><span class="glyphicon glyphicon-search"></span></button></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-18/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>a<span class="input-group-btn"> <button class="btn btn-default" type="button"> <span class="glyphicon glyphicon-search"></span> </button> </span>a</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-18/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>a<span class=input-group-btn> <button class="btn btn-default" type=button><span class="glyphicon glyphicon-search"></span></button> </span>a
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-19/input.html
HTML
<!doctype html> <html lang="en"> <div> <a href="#"> <span> <b> foo </b> z <i> bar </i> </span> </a> </div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-19/output.min.html
HTML
<!doctype html><html lang=en><div><a href=#><span><b>foo </b>z <i>bar</i></span></a></div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-2/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo<strong>baz</strong>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-2/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo<strong>baz</strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-20/input.html
HTML
<!doctype html> <html lang="en"> <span> <!-- test --> text <!-- test --></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-20/output.min.html
HTML
<!doctype html><html lang=en><span>text</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-21/input.html
HTML
<!doctype html> <html lang="en"> <div><span> <!-- test --> text <!-- test --></span></div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-21/output.min.html
HTML
<!doctype html><html lang=en><div><span>text</span></div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-22/input.html
HTML
<!doctype html> <html lang="en"> <span> <!-- test --> text <!-- test --></span> <span><!-- test --> text <!-- test --></span> <span> <!-- test --> text <!-- test --> </span> <span><!-- test --> text <!-- test --></span> <span> <!-- test --> text <!-- test --></span> <span> <!-- test --> text <!-- test --></span> <span> <!-- test --> text <!-- test --> </span> <span> <!-- test --> text <!-- test --></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-22/output.min.html
HTML
<!doctype html><html lang=en><span>text </span><span> text </span><span> text </span><span> text </span><span> text </span><span> text </span><span> text </span><span> text</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-23/input.html
HTML
<!doctype html> <svg> <linearGradient id=gradient /> </svg>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-23/output.min.html
HTML
<!doctype html><svg><linearGradient id=gradient /></svg>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-24/input.html
HTML
<!doctype html> <span>a</span> <svg> <linearGradient id=gradient /> </svg>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-24/output.min.html
HTML
<!doctype html><span>a</span> <svg><linearGradient id=gradient /></svg>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-25/input.html
HTML
<!doctype html> <svg> <linearGradient id=gradient /> </svg> <span>a</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-25/output.min.html
HTML
<!doctype html><svg><linearGradient id=gradient /> </svg><span>a</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-26/input.html
HTML
<!doctype html> <span>a</span> <svg> <linearGradient id=gradient /> </svg> <span>a</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-26/output.min.html
HTML
<!doctype html><span>a</span> <svg><linearGradient id=gradient /> </svg><span>a</span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-27/input.html
HTML
<!doctype html> <html lang="en"> <span> <span><!-- test --> text <!-- test --> </span></span> <span><span> <!-- test --> text <!-- test --></span> </span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-27/output.min.html
HTML
<!doctype html><html lang=en><span><span>text </span></span><span><span> text</span></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-28/input.html
HTML
<!doctype html> <html lang="en"> <span> <div><!-- test --> text <!-- test --> </div></span> <span><div> <!-- test --> text <!-- test --></div> </span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-28/output.min.html
HTML
<!doctype html><html lang=en><span><div>text</div></span><span><div>text</div></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-29/input.html
HTML
<!doctype html> <html lang="en"> <span> <span><!-- test --> text <!-- test --> </span><meta name="test"><!-- test --></span> <span><!-- test --><meta name="test"><span> <!-- test --> text <!-- test --></span> </span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-29/output.min.html
HTML
<!doctype html><html lang=en><span><span>text </span><meta name=test></span><span><meta name=test><span> text</span></span>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-3/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <strong>baz</strong>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-3/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo <strong>baz</strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-30/input.html
HTML
<!doctype html> <html lang="en"> <foo-bar><span>test</span> a </foo-bar> b <foo-bar> c <span> test</span></foo-bar>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-30/output.min.html
HTML
<!doctype html><html lang=en><foo-bar><span>test</span> a </foo-bar> b <foo-bar> c <span>test</span></foo-bar>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-31/input.html
HTML
<!doctype html> <html lang="en"> <foo-bar> <span>test</span> </foo-bar> <foo-bar> <span>test</span> </foo-bar>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-31/output.min.html
HTML
<!doctype html><html lang=en><foo-bar><span>test</span> </foo-bar> <foo-bar> <span>test</span></foo-bar>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-4/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo<strong>baz</strong> bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-4/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo<strong>baz</strong> bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-5/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <strong> baz </strong> bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-5/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo <strong>baz </strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-6/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo<strong> baz </strong>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-6/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo<strong> baz </strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-7/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <strong> baz </strong>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-7/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo <strong>baz </strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-8/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo<strong> baz </strong> bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-8/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo<strong> baz </strong>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-9/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <strong>baz</strong> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-9/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <strong>baz</strong> bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-1/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <button>baz</button> bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-1/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo <button>baz</button> bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-10/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<button>baz</button>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-10/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<button>baz</button>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-11/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <button>baz</button>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-11/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <button>baz</button>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-12/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<button>baz</button> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-12/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<button>baz</button> bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-13/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <button> baz </button> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-13/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <button>baz</button> bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-14/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<button> baz </button>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-14/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<button>baz</button>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-15/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo <button> baz </button>bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-15/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo <button>baz</button>bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-16/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><div>foo<button> baz </button> bar</div></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-16/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><div>foo<button>baz</button> bar</div>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-17/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><button>a</button> <button>b</button></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-17/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><button>a</button> <button>b</button>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-18/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body><button>a</button><button>b</button></body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-18/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title><button>a</button><button>b</button>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-2/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo<button>baz</button>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-2/output.min.html
HTML
<!doctype html><html lang=en><title>Document</title>foo<button>baz</button>bar
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University
crates/swc_html_minifier/tests/fixture/text/inline-block-3/input.html
HTML
<!doctype html> <html lang="en"> <head> <title>Document</title> </head> <body>foo <button>baz</button>bar</body> </html>
willcrichton/ilc-swc
1
Rust
willcrichton
Will Crichton
Brown University