-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add verbose transclusion, supporting auto-insertion of css/js
-v or --verbose
- Loading branch information
Showing
6 changed files
with
48 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
console.log("yoyoyo, how do you do?") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
h1 { | ||
color: blue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
<meta name="author" content="Damian Heaton" /> | ||
<style> | ||
h1 { | ||
color: blue; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<!DOCTYPE html> | ||
<html><head><title>Test CHTML Document</title><html><head><meta content="Damian Heaton" name=author><style> | ||
h1 { | ||
color: blue; | ||
} | ||
</style></head></html></head><body><h1>This is a test document.</h1><p>This document is a test CHTML file, for the particular purpose of testing the CHTML » HTML compiler.</p></body></html> | ||
<html><head><title>Test CHTML Document</title><meta content="Damian Heaton" name=author><style>h1 { | ||
color: blue; | ||
} | ||
</style><script>console.log("yoyoyo, how do you do?") | ||
</script></head><body><h1>This is a test document.</h1><p>This document is a test CHTML file, for the particular purpose of testing the CHTML » HTML compiler.</p></body></html> |