(hopefully) fix botched markdown rendering in RSS feeds

Changed files
+8 -3
app
+1 -1
app/views/articles/index.html.erb
··· 39 39 40 40 <hr> 41 41 42 - <p><%= link_to "tags", tags_path %> | <a href="/articles.rss">rss</a> | <a href="https://github.com/xxwhirlpool/bubblegum">source</a> | <%= Article.public_count %> total articles </p> 42 + <p><%= link_to "tags", tags_path %> | <a href="/articles.rss">feed</a> | <a href="https://github.com/xxwhirlpool/bubblegum">source</a> | <%= Article.public_count %> total articles </p> 43 43 44 44 <h4>2025</h4> 45 45
+1 -1
app/views/articles/index.rss.builder
··· 8 8 @article.each do |article| 9 9 xml.item do 10 10 xml.title article.title 11 - xml.description article.body.to_html.html_safe 11 + xml.description markdown(article.body).html_safe 12 12 xml.pubDate article.created_at.to_formatted_s(:rfc822) 13 13 xml.link article_url(article) 14 14 xml.guid article_url(article)
+6 -1
app/views/layouts/application.html.erb
··· 3 3 <head> 4 4 <title>sweet like bubblegum</title> 5 5 <meta name="viewport" content="width=device-width,initial-scale=1"> 6 + <meta name="subject" content="blog"> 7 + <meta name="description" content="kat's blog"> 8 + <meta name="language" content="en-US"> 9 + <meta name="author" content="girl on the moon"> 10 + 6 11 <%= csrf_meta_tags %> 7 12 <%= csp_meta_tag %> 8 13 9 14 <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> 10 15 <%= stylesheet_link_tag "application.css" %> 11 16 <%= favicon_link_tag asset_path("favicon.png") %> 12 - <%= auto_discovery_link_tag :rss, articles_url(:format => :rss) %> 17 + <%= auto_discovery_link_tag :rss, articles_path(:format => :rss) %> 13 18 <%= javascript_importmap_tags %> 14 19 <script src="https://tinylytics.app/embed/nkLX7dscszfbJdU6pseT.js?kudos=🐬" defer></script> 15 20