diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pyssgrc | 9 | ||||
-rw-r--r-- | src/pyssg/pyssg.py | 2 |
3 files changed, 5 insertions, 11 deletions
@@ -1,6 +1,11 @@ CHANGES ======= +v0.5.3 +------ + +* refactor code and add image\_url parsing + v0.5.2 ------ diff --git a/pyssgrc b/pyssgrc deleted file mode 100644 index 0a92b46..0000000 --- a/pyssgrc +++ /dev/null @@ -1,9 +0,0 @@ -SRC_PATH=e_src -DST_PATH=e_dst -PLT_PATH=e_plt -BASE_URL=https://blog.luevano.xyz -BASE_STATIC_URL=https://static.luevano.xyz -TITLE=Luévano's Blog -DATE_FORMAT=%a, %b %d, %Y @ %H:%M %Z -LIST_DATE_FORMAT=%b %d -LIST_SEP_DATE_FORMAT=%B %Y diff --git a/src/pyssg/pyssg.py b/src/pyssg/pyssg.py index 75f0fe4..f579aba 100644 --- a/src/pyssg/pyssg.py +++ b/src/pyssg/pyssg.py @@ -10,8 +10,6 @@ from .configuration import Configuration from .database import Database from .builder import Builder from .page import Page -from .rss import RSSBuilder -from .sitemap import SitemapBuilder def get_options() -> Namespace: |