snow-editor

small markdown and org-mode editor
Log | Files | Refs | README

normalize.js (117B)


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