-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c01136c
commit ec851f7
Showing
7 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
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,6 @@ | ||
from pathlib import Path | ||
|
||
|
||
def sample_file(name: str) -> str: | ||
path = (Path(__file__).parent / name).absolute() | ||
return f"file://{path}" |
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,19 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Grocery List</title> | ||
</head> | ||
|
||
<body> | ||
<h1>Grocery List</h1> | ||
<ul> | ||
<li>Apples</li> | ||
<li>Bananas</li> | ||
<li>Carrots</li> | ||
<li>Donuts</li> | ||
<li>Eggs</li> | ||
<li>French Fries</li> | ||
<li>Grapes</li> | ||
<ul> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.