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.
17 lines
351 B
17 lines
351 B
// Normalize input string
|
|
|
|
// https://spec.commonmark.org/0.29/#line-ending
|
|
const NEWLINES_RE = /\r\n?|\n/g
|
|
const NULL_RE = /\0/g
|
|
|
|
export default function normalize (state) {
|
|
let str
|
|
|
|
// Normalize newlines
|
|
str = state.src.replace(NEWLINES_RE, '\n')
|
|
|
|
// Replace NULL characters
|
|
str = str.replace(NULL_RE, '\uFFFD')
|
|
|
|
state.src = str
|
|
}
|
|
|