diff --git a/docs/img/codercat.png b/docs/img/codercat.png new file mode 100644 index 0000000..1504f57 Binary files /dev/null and b/docs/img/codercat.png differ diff --git a/docs/styling.md b/docs/styling.md index 856b17c..bc4c54e 100644 --- a/docs/styling.md +++ b/docs/styling.md @@ -35,7 +35,7 @@ The base template for rendering is `templates/base.html`: You can override this template locally and adapt it to make layout changes. -## Media assets +## Media The default theme includes the following assets: diff --git a/docs/writing.md b/docs/writing.md index 4d6c6e8..9a5a430 100644 --- a/docs/writing.md +++ b/docs/writing.md @@ -40,11 +40,11 @@ These are the elements outlined in John Gruberโ€™s original design document. All ## Link -[About](ABOUT.md) +[Homepage](index.md) ## Image -![calt text](img/codercat.jpg) +![coder cat](img/codercat.png) ## Table @@ -103,7 +103,7 @@ Here's a sentence with a footnote. [^1] `@octocat :+1: This PR looks great - it's ready to merge! :shipit:` -@octocat :+1: This PR looks great - it's ready to merge! :shipit: +@octocat :+1: This PR looks great :heart: - it's ready to merge! :shipit: ### Task List diff --git a/src/mkdocs/mkdocs.py b/src/mkdocs/mkdocs.py index d0893c3..b5bb719 100644 --- a/src/mkdocs/mkdocs.py +++ b/src/mkdocs/mkdocs.py @@ -55,9 +55,6 @@ def read(self, path: pathlib.Path) -> bytes: """ return '' - def name(self) -> str: - return '' - class Directory(Handler): """ @@ -78,9 +75,6 @@ def load_paths(self) -> list[pathlib.Path]: def read(self, path: pathlib.Path) -> bytes: return self._dir.joinpath(path).read_bytes() - def name(self) -> str: - return 'docs' - def __repr__(self): return f'' @@ -112,9 +106,6 @@ def load_paths(self) -> list[pathlib.Path]: def read(self, path: pathlib.Path) -> bytes: return self._files.joinpath(path).read_bytes() - def name(self) -> str: - return 'theme' - def __repr__(self): return f'' @@ -137,7 +128,7 @@ def read(self) -> bytes: return self.handler.read(self.path) def __repr__(self) -> str: - return f'' + return f'' class Template: @@ -150,7 +141,7 @@ def read(self) -> bytes: return self.handler.read(self.path) def __repr__(self) -> str: - return f'