But it shows description of po" /> But it shows description of po" /> But it shows description of po"/>

how to use html_safe in meta tag og:description content in ruby on rails

381 Views Asked by At

I use og:description meta tag like this

<meta property="og:description" content="<%= @post.description.html_safe %>" />

But it shows description of post in top of the page.

1

There are 1 best solutions below

1
akbarbin On BEST ANSWER

I have ever got this error in my php code to show og file. I thought, It will work to in rails. You just change "" into ''

<meta property="og:description" content='<%= @post.description.html_safe %>'/>

or

<meta property="og:description" content='<%= @post.description %>'/>

I hope this help you.