3

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.

akbarbin
  • 4,985
  • 1
  • 28
  • 31
Md. Sahidul Islam
  • 351
  • 1
  • 3
  • 14

1 Answers1

1

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.

akbarbin
  • 4,985
  • 1
  • 28
  • 31