4b37976c29
* feat: plugin for remark-breaks * fix: update package-lock.json * fix: styling Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com> * Update linebreaks.ts * Update index.ts --------- Co-authored-by: Jacky Zhao <j.zhao2k19@gmail.com>
12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import { QuartzTransformerPlugin } from "../types"
|
|
import remarkBreaks from "remark-breaks"
|
|
|
|
export const HardLineBreaks: QuartzTransformerPlugin = () => {
|
|
return {
|
|
name: "HardLineBreaks",
|
|
markdownPlugins() {
|
|
return [remarkBreaks]
|
|
},
|
|
}
|
|
}
|