Jacky Zhao
2025-03-16 a7372079817fb1a1e69b2632405d759f9c5e913d
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]
    },
  }
}