46 lines
1.7 KiB
Text
46 lines
1.7 KiB
Text
<% title "Editor Guide - Publishing from RSS or Atom" %>
|
|
|
|
<%= content_for :page_meta do %>
|
|
<link rel="canonical" href="<%= app_url(publishing_from_rss_guide_path) %>" />
|
|
<meta name="description" content="<%= community_name %> | Publishing from RSS or Atom guidelines">
|
|
<%= meta_keywords_default %>
|
|
<% end %>
|
|
|
|
<main class="container article" id="main-content">
|
|
<div class="title help-guide-title">
|
|
<h1>Publishing from RSS or Atom</h1>
|
|
</div>
|
|
|
|
<div class="body">
|
|
<h2>Front Matter</h2>
|
|
|
|
<p>Our feed reader converts some elements from the RSS or Atom feeds to tags for the editor's front matter:</p>
|
|
<ul>
|
|
<li>
|
|
<code><title></code>: <strong>title</strong>, the title of the post
|
|
</li>
|
|
|
|
<li>
|
|
<code><category></code>: <strong>tags</strong>, only the first four <code><category></code> elements
|
|
can be used in a post on <%= community_name %> per each item in the feed.
|
|
</li>
|
|
|
|
<li>
|
|
<code><link></code>: <strong>canonical_url</strong>, only used if the "Mark the RSS source as canonical URL by default"
|
|
option is enabled in the <%= link_to "RSS Settings", user_settings_path(:extensions) %>.
|
|
</li>
|
|
</ul>
|
|
|
|
<h2>Post Content</h2>
|
|
|
|
<p>
|
|
The post content is prioritized in this order: <code><content></code>, <code><summary></code>, or
|
|
<code><description></code>.
|
|
</p>
|
|
|
|
<p>The HTML will be converted to Markdown as the body of the <%= community_name %> post.</p>
|
|
|
|
<p>If you're using Medium RSS feed all its tweet links, YouTube, and Gist iframes will be converted to Liquid tags.</p>
|
|
<div class="blank-space"></div>
|
|
</div>
|
|
</main>
|