const renderMarkdownFactory = require('./renderMarkdown'); describe('remark: renderMarkdown service', () => { let renderMarkdown; beforeEach(() => { renderMarkdown = renderMarkdownFactory(); }); it('should convert markdown to HTML', () => { const content = '# heading 1\n' + '\n' + 'A paragraph with **bold** and _italic_.\n' + '\n' + '* List item 1\n' + '* List item 2'; const output = renderMarkdown(content); expect(output).toEqual( '

heading 1

\n' + '

A paragraph with bold and italic.

\n' + '\n'); }); it('should not process markdown inside inline tags', () => { const content = '* list item {@link some_url_path}'; const output = renderMarkdown(content); expect(output).toEqual('\n'); }); it('should not put block level inline tags inside paragraphs', () => { const content = 'A paragraph.\n' + '\n' + '{@example blah **blah** blah }\n' + '\n' + 'Another paragraph {@link _containing_ } an inline tag'; const output = renderMarkdown(content); expect(output).toEqual( '

A paragraph.

\n' + '{@example blah **blah** blah }\n' + '

Another paragraph {@link _containing_ } an inline tag

\n'); }); it('should not format the contents of tags marked as unformatted ', () => { const content = '\n\n **abc**\n\n def\n\n\n\n\n **abc**\n\n def\n'; const output = renderMarkdown(content); expect(output).toEqual('\n\n **abc**\n\n def\n\n\n\n **abc**\n\n def\n\n'); }); it('should not remove spaces after anchor tags', () => { var input = 'A aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa aaaaaaaaaaa\n' + '[foo](path/to/foo) bbb.'; var output = '

' + 'A aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaa aaaaaaaaaa aaaaaaaaaaa\n' + 'foo bbb.' + '

\n'; expect(renderMarkdown(input)).toEqual(output); }); it('should not format indented text as code', () => { const content = 'some text\n\n indented text\n\nother text'; const output = renderMarkdown(content); expect(output).toEqual('

some text

\n

indented text

\n

other text

\n'); }); it('should add id slugs and links to headings', () => { const content = '# heading 1\n\nSome text\n\n## heading 2\n\nMore text'; const output = renderMarkdown(content); expect(output).toEqual( '

heading 1

\n' + '

Some text

\n' + '

heading 2

\n' + '

More text

\n'); }); });