all repos — snow-editor @ main

small and cozy markdown, and orgmode editor

src/lib/org/normalize.js (view raw)

 1
 2
 3
 4
export function normalizeOrgContent(content) {
  if (!content) return '';
  return content.replace(/\r\n/g, '\n');
}