mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import {QuartzTransformerPlugin} from "../types"
|
|
import remarkBreaks from "remark-breaks"
|
|
|
|
export const HardLineBreaks: QuartzTransformerPlugin = () => {
|
|
return {
|
|
name: "HardLineBreaks",
|
|
markdownPlugins() {
|
|
return [remarkBreaks]
|
|
},
|
|
}
|
|
}
|