@legalplace/prerenderx 2.3.42 → 2.3.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,7 +40,7 @@ var OptionRender = (function () {
40
40
  var variables = OutputParser_1.getRelatedVariablesValues(this.id, this.index, outputReference.variables, this.ovc, this.references);
41
41
  var output = OutputParser_1.parseOutputWithVariables(option.meta.output, variables, autonums);
42
42
  output = output.replace(/\n/g, '<br />');
43
- output = output.replace(/<p><\/p>/g, '<p><br /></p>');
43
+ output = output.replace(/<p><\/p>/g, '<br />');
44
44
  this.outputs.push(output);
45
45
  }
46
46
  this.renderChildren();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@legalplace/prerenderx",
3
- "version": "2.3.42",
3
+ "version": "2.3.43",
4
4
  "description": "PrerenderX",
5
5
  "main": "dist/index.js",
6
6
  "repository": "https://git.legalplace.eu/legalplace/prerenderx",
@@ -62,7 +62,7 @@ class OptionRender {
62
62
  output = output.replace(/\n/g, '<br />')
63
63
 
64
64
  // Replacing empty paragraphs with line-break
65
- output = output.replace(/<p><\/p>/g, '<p><br /></p>')
65
+ output = output.replace(/<p><\/p>/g, '<br />')
66
66
 
67
67
  // Pushing output
68
68
  this.outputs.push(output)