Use this code to add "Illinoize" to your own site

JavaScript

Use JavaScript if you are a beginner, have a Blogspot blog or want the easiest method.

Using JavaScript you can include a feed digest on any HTML page, as long as you have the ability to edit the HTML directly. Find where in the HTML layout you want the digest to appear, and then paste in this code:

<script type="text/javascript" src="http://app.feeddigest.com/digest3/V8SPBDH7QU.js"><noscript><a href="http://app.feeddigest.com/digest3/V8SPBDH7QU.html">Click for &quot;Illinoize&quot;.</a> By <a href="http://www.feeddigest.com/">Feed Digest</a></noscript></script>

Pros: Can include on any HTML page. Works fine. Users see digest content okay. Ideal for novices.
Cons: Not the fastest method. Digest text is not part of the page content, so search robots will not see it. Possible character encoding issues in complex multi-language situations.

PHP Include

If you have PHP support on your server, you can use the following code to include a feed digest directly into your page's source code:

<?php
include ("http://app.feeddigest.com/digest3/V8SPBDH7QU.html");
?>

Pros: Fast. Works well with complex multi-language and character encoding situations.
Cons: Requires PHP pages to be used, or a .htaccess workaround for Apache.

Character Encoding

If your digest contains unexpected or weird symbols, read this..

If your digest contains non-ASCII characters, it is essential the character encoding of your page matches that of your digests, or vice versa. An HTML page has no definitive character encoding unless you specify one, and to do so include the following code in your page's <head> .. </head> section:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

This code should resolve any issues you may be having with extraneous, weird characters appearing in your digest which do not appear on an HTML preview.