I want to add a line break inside a Code in Markdown!
I tried :-
but nothing seems to work. (I have mentioned expected OUTPUT below)
``
Object.$hooks.call('customizeFormPlaceholder'),{
"emailid": "Enter your email address",
"password": "Enter your password"
});
``
expected OUTPUT:-
Object.$hooks.call('customizeFormPlaceholder'),{
"emailid": "Enter your email address",
"password": "Enter your password"
});
but instead i am getting:-
Object.$hooks.call('customizeFormPlaceholder'),{ "emailid": "Enter your email address", "password": "Enter your password" });
Any views on this?
Manish pamnani
New programmer trying to learn new things.
Milica Maksimović
founder Literally.dev, ex-Growth @wasp, former Community Manager @Hashnode
Hey Manish pamnani you need three of those backticks e.g
```The trick is also to add a space right after the ticks, and you also don't need extra enter when you're done with the snippet.