<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>simple usage, no documentations</title>
        <description>Hi all,
This might sound ignorant but here it goes:
My web app accepts the following:
bla, bold, italics, strikethrough, underline

that's it, and of course it those can be nested. 
I have browsed htmlpurifier site, I cannot find any documentation to achieve this (or anything) for me to start at all? 

Help me point to the right direction?</description>
        <link>http://htmlpurifier.org/phorum/read.php?3,1152,1152#msg-1152</link>
        <lastBuildDate>Sat, 18 May 2013 16:29:53 -0400</lastBuildDate>
        <generator>Phorum 5.2.18</generator>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1166#msg-1166</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1166#msg-1166</link>
            <description><![CDATA[<p>Code updated. My apologies.</p>]]></description>
            <dc:creator>Ambush Commander</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:52:46 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1165#msg-1165</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1165#msg-1165</link>
            <description><![CDATA[<p>on a side note, the example above will create a fatal error, at least in my case. use $config = HTMLPurifier_Config::createDefault(); and it works like a charm!</p>

<p>thanks^^</p>]]></description>
            <dc:creator>wahyudinata</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:50:27 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1164#msg-1164</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1164#msg-1164</link>
            <description><![CDATA[<p>Ah, that could certainly be a problem! I'll add a link to the INSTALL document on the webpage.</p>]]></description>
            <dc:creator>Ambush Commander</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:34:45 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1163#msg-1163</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1163#msg-1163</link>
            <description><![CDATA[<p>wow,
All these times I've been searching for documentation in <a href="http://htmlpurifier.org/#Docs,">http://htmlpurifier.org/#Docs,</a> but it is in INSTALL. And after scouring the forums it seems that I am the only one having trouble finding it?  </p>

<p>But this is more than enough to get me started, thanks for the prompt response Ambush Commander, *salutes*</p>]]></description>
            <dc:creator>wahyudinata</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:33:26 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1162#msg-1162</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1162#msg-1162</link>
            <description><![CDATA[<p>The information on how to set configuration options is in the INSTALL documentation. Anyway, for what you describe, you want this:</p>

<pre>
$config = HTMLPurifier_Config::createDefault();
$config-&gt;set('HTML', 'Allowed', 'a[href],b,i,s,u,p');
$purifier = new HTMLPurifier($config);
</pre>

<p>I added the p tag in my own discretion; otherwise users can't make paragraphs!</p>

<p>This is all documented in the INSTALL document.</p>]]></description>
            <dc:creator>Ambush Commander</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:25:21 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1161#msg-1161</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1161#msg-1161</link>
            <description><![CDATA[<p>Great!
now...how do I use it?
I read the doc i saw no usage or examples.</p>]]></description>
            <dc:creator>wahyudinata</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 17:11:52 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1156#msg-1156</guid>
            <title>Re: simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1156#msg-1156</link>
            <description><![CDATA[<p>You want to use the <a href="http://htmlpurifier.org/live/configdoc/plain.html#HTML.Allowed">%HTML.Allowed </a> setting.</p>]]></description>
            <dc:creator>Ambush Commander</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 13:15:35 -0500</pubDate>
        </item>
        <item>
            <guid>http://htmlpurifier.org/phorum/read.php?3,1152,1152#msg-1152</guid>
            <title>simple usage, no documentations</title>
            <link>http://htmlpurifier.org/phorum/read.php?3,1152,1152#msg-1152</link>
            <description><![CDATA[<p>Hi all,
This might sound ignorant but here it goes:
My web app accepts the following:
<a href="some%20url">bla</a>, bold, italics, strikethrough, underline</p>

<p>that's it, and of course it those can be nested. 
I have browsed htmlpurifier site, I cannot find any documentation to achieve this (or anything) for me to start at all? </p>

<p>Help me point to the right direction?</p>]]></description>
            <dc:creator>wahyudinata</dc:creator>
            <category>Support</category>
            <pubDate>Thu, 10 Jan 2008 06:21:52 -0500</pubDate>
        </item>
    </channel>
</rss>
