Hi all.
I’m ripping my hair out in frustration with markdown!
I’m reading all these pages that say typing either a trailing space and return or to use . That doesn’t work for my page, immediately it stops rendering.
When I use a backlash () together with at the start of each line it seems to work , okay, but it won’t render blockquotes or lists.
Heres’ my default markdown code:
const defaultValue = '# This is an `<h1>` tag \n ## This is an `<h2>` tag \
<br/> <https://squeaksandnibbles.com/fancy-rats/> \
<br/> \
<br/> ``` const getDate =() => {let date = new Date()}``` \
<br/> **bold** \
<br/> \
<br/> > quote start \
<br/> > \
<br/> > quote end \
<br/> \
<br/> * list \
<br/> \
<br/>  \
';
I added the spaces above the list and in between the quoteblock, which also wasn’t mentioned at every site , had too search many pages to find that mentioned.
Hope someone can help
Thanks
Soo frustrating , everything passes , except the last bonus test.
I tried using 2 spaces, a backlash, using <br> with escapeHtml set to false,
more than 2 spaces, I made sure the line break was within a block.
Why is it not working??! Maddening really
I have solved everything by myself and hate to ask for help , but I’m just at a loss. I’ve read a few different forum topics which dealt with issues with this :
I’ve readed marked.js docs, nothing is solving this.
I hate posting it as I feel I should be able to do it on my own , but I’ve absolutely tried everything, it must be something very stupid that I’m overlooking:
not much CSS yet, just focusing on passing all tests atm