Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only show structured data when showing post and strip body #1090

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/views/layouts/_head.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@
<meta property="og:description" content="<%= content_for?(:description) ? content_for(:description) : desc %>" />
<meta property="og:image" content="<%= "https://#{RequestContext.community.host}#{SiteSetting['SiteLogoPath']}" %>" />
<% end %>

<% if content_for? :schema %>
<%= yield :schema %>
<% end %>
27 changes: 27 additions & 0 deletions app/views/posts/_schema.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<% if post && post.post_type.name == 'Question' %>
<% suggested_answers = @children.filter { |answer| answer.score > 0.5 } %>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "QAPage",
"mainEntity": {
"@type": "Question",
"name": "<%= @post.title %>",
"text": "<%= strip_tags(@post.body).gsub(/\r?\n/, '\n') %>",
"answerCount": <%= @children&.length || 0 %>,
"upvoteCount": <%= @post.upvote_count %>,
"suggestedAnswer": [
<% suggested_answers.each_with_index do |answer, i| %>
<% if i > 0 then %>,<% end %>
{
"@type": "Answer",
"text": "<%= strip_tags(answer.body).gsub(/\r?\n/, '\n') %>",
"upvoteCount": <%= answer.upvote_count %>,
"url": "<%= post_url(answer) %>"
}
<% end %>
]
}
}
</script>
<% end %>
4 changes: 4 additions & 0 deletions app/views/posts/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<meta property="og:image" content="<%= "https://#{RequestContext.community.host}#{SiteSetting['SiteLogoPath']}" %>" />
<% end %>

<% content_for :schema do %>
<%= render 'posts/schema', post: @post %>
<% end %>

<%= render 'posts/expanded', post: @post, float_notice: false %>

<% if @post.post_type.has_answers %>
Expand Down