From f57fb3923a23a82b8d6cf70cd894e298d149aa03 Mon Sep 17 00:00:00 2001 From: Samuel Cambien Date: Fri, 23 Sep 2022 12:20:08 +0200 Subject: [PATCH] issue #1404, issue #1762, issue #1763 Add support for line breaks, markdown and mathjax in metadata - fix lint issues --- src/app/shared/utils/markdown.pipe.spec.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/shared/utils/markdown.pipe.spec.ts b/src/app/shared/utils/markdown.pipe.spec.ts index 026c1da103..48505c0d78 100644 --- a/src/app/shared/utils/markdown.pipe.spec.ts +++ b/src/app/shared/utils/markdown.pipe.spec.ts @@ -40,19 +40,15 @@ describe('Markdown Pipe', () => { it('should render regular links', async () => { await testTransform( - /*eslint-disable quotemark*/ 'DSpace', 'DSpace' - /* eslint-enable quotemark */ ); }); it('should not render javascript links', async () => { await testTransform( - /*eslint-disable quotemark*/ 'exploit', 'exploit' - /* eslint-enable quotemark */ ); });