fix: sort rss feed by date
This commit is contained in:
		
							parent
							
								
									f67356c3d2
								
							
						
					
					
						commit
						bf603c49c2
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
					@ -6,6 +6,7 @@ import { FilePath, FullSlug, SimpleSlug, simplifySlug } from "../../util/path"
 | 
				
			||||||
import { QuartzEmitterPlugin } from "../types"
 | 
					import { QuartzEmitterPlugin } from "../types"
 | 
				
			||||||
import { toHtml } from "hast-util-to-html"
 | 
					import { toHtml } from "hast-util-to-html"
 | 
				
			||||||
import path from "path"
 | 
					import path from "path"
 | 
				
			||||||
 | 
					import { byDateAndAlphabetical } from "../../components/PageList"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type ContentIndex = Map<FullSlug, ContentDetails>
 | 
					export type ContentIndex = Map<FullSlug, ContentDetails>
 | 
				
			||||||
export type ContentDetails = {
 | 
					export type ContentDetails = {
 | 
				
			||||||
| 
						 | 
					@ -59,6 +60,7 @@ function generateRSSFeed(cfg: GlobalConfiguration, idx: ContentIndex, limit?: nu
 | 
				
			||||||
  </item>`
 | 
					  </item>`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  const items = Array.from(idx)
 | 
					  const items = Array.from(idx)
 | 
				
			||||||
 | 
					    .sort((a, b) => byDateAndAlphabetical(cfg)(a[1], b[1]))
 | 
				
			||||||
    .map(([slug, content]) => createURLEntry(simplifySlug(slug), content))
 | 
					    .map(([slug, content]) => createURLEntry(simplifySlug(slug), content))
 | 
				
			||||||
    .slice(0, limit ?? idx.size)
 | 
					    .slice(0, limit ?? idx.size)
 | 
				
			||||||
    .join("")
 | 
					    .join("")
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue