<?xml version="1.0"?>
<template version="1.0">
 <channel type="RSS">
  <name>Naver Ranking News</name>
  <url>http://ozs.kr/news/rss/</url>
 </channel>
<parse_article>
 <![CDATA[
var root = new Document(article.url, "UTF-8");
article.body = "";
var matchNodes = root.getElementsByAttr("div", "id", "articleBody");
for(var iLoop = 0; iLoop < matchNodes.length; iLoop++)
{
    article.body = article.body + matchNodes[iLoop].GetOuterHTML();
}
 ]]> 
</parse_article>
</template>
