dependabot[bot]
2025-09-22 eb6cc6ff8e3e9de9cf86e10b013d7785aa63aba5
1
2
3
4
5
6
7
8
9
10
11
import { QuartzTransformerPlugin } from "../types"
import remarkBreaks from "remark-breaks"
 
export const HardLineBreaks: QuartzTransformerPlugin = () => {
  return {
    name: "HardLineBreaks",
    markdownPlugins() {
      return [remarkBreaks]
    },
  }
}