all repos — snow-editor @ 13d855e25e8510a57608b0ce77f62cbeed372d0e

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');
}