We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec78f0 commit cddcc85Copy full SHA for cddcc85
src/plugins/html-stripper.processor.ts
@@ -9,6 +9,7 @@ export class HtmlStripperPlugin extends PostProcessorPlugin {
9
10
private fieldsToProcess: (keyof RecipeFields)[] = [
11
'title',
12
+ 'description',
13
'instructions',
14
'ingredients',
15
]
@@ -71,6 +72,7 @@ export class HtmlStripperPlugin extends PostProcessorPlugin {
71
72
.replace(/</g, '<')
73
.replace(/>/g, '>')
74
.replace(/"/g, '"')
75
+ .replace(/"/g, '"')
76
.replace(/'/g, "'")
77
.trim()
78
}
0 commit comments