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):
+
+
+
Easily switch from one doctype to another,
+
Create own doctype, possibly non-HTML based,
+
Select a custom set of tags and attributes,
+
Select XHTML 1.1 style modules,
+
Switch on/off dangerous tags,
+
Define custom behavior for pre-existing tags,
+
Define custom tags for their own use,
+
Define custom attribute type / override existing one,
+
Change the root node which fragment will be inserted in.
+
+
+
$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