I am on the Build a Markdown Previewer challenge but I cannot pass test N° 5 (When my markdown previewer first loads, the default text in the #editor field should contain valid markdown that represents at least one of each of the following elements: a header (H1 size), a sub header (H2 size), a link, inline code, a code block, a list item, a blockquote, an image, and bolded text.).
I have one of each element asked for in the User Story N°5 but I still cannot pass the test and don’t know why.
To see the preview just cause an “onchange” event in the textarea element and you’ll see they all look as they’re supposed to.
write some markdown representing a codeblock, i.e. <pre><code>...</code></pre> : expected false to be true
AssertionError: write some markdown representing a codeblock, i.e. <pre><code>...</code></pre> : expected false to be true
it’s having problems with your codeblock. Try writing some real codes in your markdown.
I type it with three backticks on each side and it renders like a codeblock correctly and I tried with the code tag on each side and works as well. I don’t understand what the problem is.