summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-06-05 03:38:26 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-06-05 03:38:26 -0600
commit2e9ada3ab8189de14df588da1339a8554b63a161 (patch)
tree4941333448abf24330faebcefac55a3b73229595
parent045eb5986ea11174b2ee39dc8476b365d734d37d (diff)
fix bug
-rw-r--r--ChangeLog5
-rw-r--r--pyssgrc9
-rw-r--r--src/pyssg/pyssg.py2
3 files changed, 5 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index edde04e..0322adb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: