forked from brendanhay/amazonka
-
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.
docs: remove rule_hugo in place of using pandoc directly
- Loading branch information
1 parent
791a72d
commit e4583a6
Showing
24 changed files
with
3,549 additions
and
137 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import http.server | ||
import socketserver | ||
import sys | ||
import tempfile | ||
import tarfile | ||
|
||
with tempfile.TemporaryDirectory() as root: | ||
with tarfile.TarFile(sys.argv[1], "r") as archive: | ||
archive.extractall(root) | ||
|
||
class Handler(http.server.SimpleHTTPRequestHandler): | ||
def __init__(self, *args, **kwargs): | ||
super(Handler, self).__init__(*args, directory=root, **kwargs) | ||
|
||
with socketserver.TCPServer(("127.0.0.1", 0), Handler) as httpd: | ||
print("http://%s:%s" % httpd.server_address) | ||
httpd.serve_forever() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,68 @@ | ||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Light.woff') format('woff'); | ||
font-weight: 300; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-LightItalic.woff') format('woff'); | ||
font-weight: 300; | ||
font-style: italic; | ||
} | ||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Black.woff') format('woff'); | ||
font-weight: 900; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-BlackItalic.woff') format('woff'); | ||
font-weight: 900; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Bold.woff') format('woff'); | ||
font-weight: bold; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-BoldItalic.woff') format('woff'); | ||
font-weight: bold; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Semibold.woff') format('woff'); | ||
font-weight: 500; | ||
font-style: normal; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-SemiboldItalic.woff') format('woff'); | ||
font-weight: 500; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Italic.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: italic; | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
src: url('../fonts/Lato-Regular.woff') format('woff'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.