Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmot committed Jun 8, 2022
1 parent 4be3f1c commit fa6262a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions public_html/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
<html>
<head>
<title>Hello!</title>
<!-- this will be skipped -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/reset.css" />

<link rel="stylesheet" href="./assets/css/example_1.css" type="text/css" />
<link rel="stylesheet" href="./assets/css/example_2.css" type="text/css" />
<!-- this should work, note the missing "./" -->
<link rel="stylesheet" href="assets/css/example_3.css" type="text/css" />
<!-- this will be skipped -->
<!-- <link rel="stylesheet" href="./assets/css/example_4.css" type="text/css" /> -->
<!-- this will be excluded -->
<!-- these will be excluded -->
<link rel="stylesheet" href="./assets/css/cssexclude_1.css" type="text/css" />
<link rel="stylesheet" href="./assets/cssexcl/exclude_1.css" type="text/css" />
</head>
<body>
<!-- this will be skipped -->
Expand All @@ -27,7 +30,8 @@
</script>
<script src="./assets/js/example_3.js" type="text/javascript"></script>
<script src="./assets/js/example_4.js" type="text/javascript"></script>
<!-- this will be excluded -->
<!-- these will be excluded -->
<script src="/assets/js/jsexclude_1.js" type="text/javascript"></script>
<script src="/assets/jsexcl/exclude_1.js" type="text/javascript"></script>
</body>
</html>

0 comments on commit fa6262a

Please sign in to comment.