diff --git a/docs/dev-advanced-api.html b/docs/dev-advanced-api.html new file mode 100644 index 00000000..a7aff0a2 --- /dev/null +++ b/docs/dev-advanced-api.html @@ -0,0 +1,39 @@ + + + + + + + +Advanced API - HTML Purifier + + + +

Advanced API

+ +
Filed under Development
+
Return to the index.
+
HTML Purifier End-User Documentation
+ +

It makes no sense to adopt a one-size-fits-all approach to +filtersets: therefore, users must be able to define their own sets of +allowed elements, as well as switch in-between doctypes of HTML.

+ +

Our goals (pending reorganization):

+ + + +
$Id: dev-optimization.html 655 2007-01-18 22:38:40Z Edward $
+ + \ No newline at end of file diff --git a/docs/fixquotes.htc b/docs/fixquotes.htc new file mode 100644 index 00000000..bf2e7842 --- /dev/null +++ b/docs/fixquotes.htc @@ -0,0 +1,6 @@ + + diff --git a/docs/style.css b/docs/style.css index 811b0103..772577ee 100644 --- a/docs/style.css +++ b/docs/style.css @@ -46,3 +46,14 @@ blockquote .label {font-weight:bold; font-size:1em; margin:0 0 .1em; #toc ol ol {list-style-type:lower-roman;} #toc ol {list-style-type:decimal;} #toc {list-style-type:upper-alpha;} + +q { + behavior: url(fixquotes.htc); /* IE fix */ + quotes: '\201C' '\201D' '\2018' '\2019'; +} +q:before { + content: open-quote; +} +q:after { + content: close-quote; +} \ No newline at end of file