Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
349 B
20 lines
349 B
// Normalize input string
|
|
|
|
'use strict';
|
|
|
|
|
|
var NEWLINES_RE = /\r[\n\u0085]|[\u2424\u2028\u0085]/g;
|
|
var NULL_RE = /\u0000/g;
|
|
|
|
|
|
module.exports = function inline(state) {
|
|
var str;
|
|
|
|
// Normalize newlines
|
|
str = state.src.replace(NEWLINES_RE, '\n');
|
|
|
|
// Replace NULL characters
|
|
str = str.replace(NULL_RE, '\uFFFD');
|
|
|
|
state.src = str;
|
|
};
|
|
|