RSS <docs> 요소

정의와 사용법

<docs> 요소는 현재 RSS 파일에서 사용하는 형식 설명을 가리키는 URL을 정의합니다.

예제

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
  <title>CodeW3C.com 홈페이지</title>
  <link>http://www.codew3c.com</link>
  <description>무료 웹 빌딩 강의</description>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <item>
    <title>RSS 강의</title>
    <link>http://www.codew3c.com/rss</link>
    <description>CodeW3C.com에서 새로운 RSS 강의</description>
  </item>
</channel>
</rss>