From f8adddad8a3a0cacbaac58380690275702f2d3f4 Mon Sep 17 00:00:00 2001 From: hasparus Date: Wed, 9 Oct 2019 22:30:23 +0200 Subject: [PATCH] Stop inserting HTML tags from error messages --- lib/core/src/client/preview/start.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core/src/client/preview/start.js b/lib/core/src/client/preview/start.js index 8099ea3eb22..ab511a02aba 100644 --- a/lib/core/src/client/preview/start.js +++ b/lib/core/src/client/preview/start.js @@ -14,7 +14,9 @@ import Events from '@storybook/core-events'; import { initializePath, setPath } from './url'; import { NoDocs } from './NoDocs'; -const ansiConverter = new AnsiToHtml(); +const ansiConverter = new AnsiToHtml({ + escapeXML: true, +}); const classes = { MAIN: 'sb-show-main',