I have a description in my website and I want to make new lines in it. Can I do this? If then please help me
My code
<meta property="og:description" content="This is 1st line. This should be 2nd. And this should be 3rd line"/>
I want the content result to be like
This is 1st line.
This should be 2nd.
And this should be 3rd line
Please help me
character entities work in attributes, so this might work:"
";
like that:
<meta property="og:description" content=" This is 1st line. This should be 2nd. And this should be 3rd line"/>
<meta property="og:description" content="
This is 1st line.
This should be 2nd.
And this should be 3rd line">
I didn't actually try it, but why not just add "\n".
<meta property="og:description" content="This is 1st line.\n This should be 2nd.\n And this should be 3rd line"/>