mirror of
				https://github.com/zopiya/x-eden-quartz.git
				synced 2025-11-04 06:46:48 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			260 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			260 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { QuartzTransformerPlugin } from "../types"
 | 
						|
import remarkBreaks from "remark-breaks"
 | 
						|
 | 
						|
export const HardLineBreaks: QuartzTransformerPlugin = () => {
 | 
						|
  return {
 | 
						|
    name: "HardLineBreaks",
 | 
						|
    markdownPlugins() {
 | 
						|
      return [remarkBreaks]
 | 
						|
    },
 | 
						|
  }
 | 
						|
}
 |