File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,7 @@ class PostScanner(BasePlugin):
86
86
"""The scan method of these plugins is called by Nikola.scan_posts."""
87
87
88
88
def scan (self ):
89
- """Creates a list of posts from some source. Returns timeline, global_data:
90
-
91
- timeline is a list of Post objects
92
- global_data is a dictionary where keys are source paths and values are posts.
93
- """
89
+ """Creates a list of posts from some source. Returns a list of Post objects."""
94
90
raise NotImplementedError ()
95
91
96
92
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class ScanPosts(PostScanner):
40
40
name = "scan_posts"
41
41
42
42
def scan (self ):
43
- """Build final pages from metadata and HTML fragments ."""
43
+ """Create list of posts from POSTS and PAGES options ."""
44
44
45
45
seen = set ([])
46
46
if not self .site .quiet :
You can’t perform that action at this time.
0 commit comments