Skip to content

Commit

Permalink
fix: default processor pass as one line data
Browse files Browse the repository at this point in the history
  • Loading branch information
jobo322 committed Nov 28, 2023
1 parent 6a530d9 commit 519f412
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/processContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export function processContent(content, options) {
) {
return propertyLinesProcessor(content);
}

return processor(content, options);
}
}
Expand All @@ -43,8 +44,8 @@ function chooseProcessor(tag) {
case 'solvent':
case 'temperature':
case 'level':
return (content) => content;
default:
return (content) => content;
}
}

Expand Down

0 comments on commit 519f412

Please sign in to comment.