From 299f93f8f0ab8bf9c936142d0ce40f53cc260f14 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Wed, 28 Feb 2007 04:42:08 +0000 Subject: [PATCH] Add initial version of advanced API specification, also add tag fix. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@768 48356398-32a2-884e-a903-53898d9a118a --- docs/dev-advanced-api.html | 39 ++++++++++++++++++++++++++++++++++++++ docs/fixquotes.htc | 6 ++++++ docs/style.css | 11 +++++++++++ 3 files changed, 56 insertions(+) create mode 100644 docs/dev-advanced-api.html create mode 100644 docs/fixquotes.htc 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