Jacky Zhao
2025-03-19 eccad3da5d7b84b0f78a85b357efedef8c0127fc
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]
    },
  }
}