📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-29 12:11:45
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
markdown-it
/
lib
/
rules_core
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/markdown-it/lib/rules_core
🔄 Refresh
✏️
Editing: normalize.js
Writable
// Normalize input string 'use strict'; // https://spec.commonmark.org/0.29/#line-ending var NEWLINES_RE = /\r\n?|\n/g; var NULL_RE = /\0/g; module.exports = function normalize(state) { var str; // Normalize newlines str = state.src.replace(NEWLINES_RE, '\n'); // Replace NULL characters str = str.replace(NULL_RE, '\uFFFD'); state.src = str; };
💾 Save Changes
❌ Cancel