Skip to content

Commit

Permalink
chore(docs): fix crlf (#4828)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Dec 27, 2020
1 parent 2cb5770 commit dc25173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/parse_md.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

function normalizeLines(content) {
const inLines = content.split('\n');
const inLines = content.replace(/\r\n/g, '\n').split('\n');
let inCodeBlock = false;
const outLines = [];
let outLineTokens = [];
Expand Down

0 comments on commit dc25173

Please sign in to comment.