http://wiki.apache.org/couchdb/Formatting_with_Show_and_List
search for "example list function" doppler On Tue, Nov 2, 2010 at 10:22 PM, Robert Sosinski <em...@robertsosinski.com> wrote: > I have the following list function: > > function(head, req) { > send("<ul>"); > > while(row = getRow()) { > send("<li>"+row.value.name+"</li>"); > } > > send("</ul>"); > } > > This function works except that it is being sent back with a ContentType of > "application/json". Is there any way to change the content type to > "text/html", similar to show functions? > > Thanks, > > -Robert >