mirror of
https://github.com/zen-browser/docs.git
synced 2025-07-08 09:20:01 +02:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { QuartzTransformerPlugin } from "../types"
|
|
import remarkBreaks from "remark-breaks"
|
|
|
|
export const HardLineBreaks: QuartzTransformerPlugin = () => {
|
|
return {
|
|
name: "HardLineBreaks",
|
|
markdownPlugins() {
|
|
return [remarkBreaks]
|
|
},
|
|
}
|
|
}
|