-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from Guts/feature/date-published
Feature: override date from git log using meta from yaml-frontmatter
- Loading branch information
Showing
10 changed files
with
205 additions
and
28 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,6 @@ | |
"__author__", | ||
"__copyright__", | ||
"__email__", | ||
"__executable_name__", | ||
"__license__", | ||
"__summary__", | ||
"__title__", | ||
|
@@ -33,9 +32,8 @@ | |
__author__ = "Julien Moura" | ||
__copyright__ = "2020 - {0}, {1}".format(date.today().year, __author__) | ||
__email__ = "[email protected]" | ||
__executable_name__ = "MkDocsRssPlugin.exe" | ||
__license__ = "GNU General Public License v3.0" | ||
__summary__ = "Generates a static RSS feed using git log." | ||
__summary__ = "MkDocs plugin which generates a static RSS feed using git log." | ||
__title__ = "MkDocs RSS plugin" | ||
__title_clean__ = "".join(e for e in __title__ if e.isalnum()) | ||
__uri__ = "https://github.com/Guts/mkdocs-rss-plugin/" | ||
|
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
Oops, something went wrong.