Remove stray forward slash in RSS feed builder (#1943)

closes #1942

- removed stray `/` from lines 17 and 18.
This commit is contained in:
Steve Layton 2019-03-02 07:50:57 -08:00 committed by Ben Halpern
parent 9375d2436f
commit 3cc0f27eb3

View file

@ -14,8 +14,8 @@ xml.rss version: "2.0" do
xml.title article.title
xml.author (@user && @user.class.name == "User") ? @user.name : article.user.name
xml.pubDate article.published_at.to_s(:rfc822) if article.published_at
xml.link "https://dev.to/#{article.path}"
xml.guid "https://dev.to/#{article.path}"
xml.link "https://dev.to#{article.path}"
xml.guid "https://dev.to#{article.path}"
xml.description sanitize article.processed_html.html_safe,
tags: %w(strong em a table tbody thead tfoot th tr td col colgroup del p h1 h2 h3 h4 h5 h6 blockquote iframe time div span i em u b ul ol li dd dl dt q code pre img sup cite center br small),
attributes: %w(href strong em class ref rel src title alt colspan height width size rowspan span value start data-conversation data-lang id)