diff --git a/stsg/build.py b/stsg/build.py index 2211b06..3bb26be 100644 --- a/stsg/build.py +++ b/stsg/build.py @@ -157,7 +157,7 @@ class Article(CustomPath): return { "article_content": article_content, - "article_preview": article_content[:ARTICLE_PREVIEW_LENGTH], + "article_preview": article_content[:ARTICLE_PREVIEW_LENGTH] + " ...", "article_overview_href": "/" + str(self.path.parent), "article_href": "/" + str(self.path.parent / self.stem), "article_title": self.get_first_header_content(article_content),