diff options
author | Stas Boukarev <stassats@gmail.com> | 2019-01-12 14:30:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-12 14:30:07 +0300 |
commit | 7587277caca732849964a6e150693ca221b44eae (patch) | |
tree | 556fa7e7a5ef3d88f7a834f734464689d6c8d3f8 | |
parent | bfdd686f9e3769a86c45d192d76ddadbcd520f51 (diff) | |
download | tl-who-7587277caca732849964a6e150693ca221b44eae.tar.gz tl-who-7587277caca732849964a6e150693ca221b44eae.tar.bz2 tl-who-7587277caca732849964a6e150693ca221b44eae.zip |
Stop listing users
Can't keep up with them going away and listing new ones.
-rw-r--r-- | docs/index.html | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/docs/index.html b/docs/index.html index f64dc10..5bc1e5b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ <html> <head> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> + <meta http-equiv="Content-Type" content="text/html"> <title>CL-WHO - Yet another Lisp markup language</title> <style type="text/css"> pre { padding:5px; background-color:#e0e0e0 } @@ -72,11 +72,8 @@ problems. It comes with a <a href="http://www.opensource.org/licenses/bsd-license.php">BSD-style license</a> so you can basically do with it whatever you want. -<p> -CL-WHO is for example used by <a href="http://clutu.com/">clutu</a> and <a href="http://heikestephan.de/">Heike Stephan</a>. -<p> -<font color=red>Download shortcut:</font> <a href="http://weitz.de/files/cl-who.tar.gz">http://weitz.de/files/cl-who.tar.gz</a>. +<font color=red>Download shortcut:</font> <a href="https://github.com/edicl/cl-who/releases">https://github.com/edicl/cl-who/releases</a>. </blockquote> <br> <br><h3><a class=none name="contents">Contents</a></h3> @@ -209,7 +206,7 @@ together with the Lisp code generated by CL-WHO and the resulting HTML output. (<a class=noborder href="#with-html-output">with-html-output</a> (*http-stream*) (:h4 "Look at the character entities generated by this example") (loop for i from 0 - for string in '("Fête" "Sørensen" "naïve" "Hühner" "Straße") + for string in '("Fête" "Sørensen" "naïve" "Hühner" "Straße") do (<a class=noborder href="#htm">htm</a> (:p :style (<a href="#conc">conc</a> "background-color:" (case (mod i 3) ((0) "red") @@ -232,7 +229,7 @@ together with the Lisp code generated by CL-WHO and the resulting HTML output. (write-string "<h4>Look at the character entities generated by this example</h4>" *http-stream*) - (loop for i from 0 for string in '("Fête" "Sørensen" "naïve" "Hühner" "Straße") + (loop for i from 0 for string in '("Fête" "Sørensen" "naïve" "Hühner" "Straße") do (progn (write-string "<p style='" *http-stream*) (princ (<a class=noborder href="#conc">conc</a> "background-color:" @@ -622,10 +619,10 @@ Setting it to HTML5 sets the <a href="#*prologue*"><code>*prologue*</code></a> t This function will accept a string <code><i>string</i></code> and will replace every character for which <code><i>test</i></code> returns <em>true</em> with its character entity. The numeric character entities use decimal instead of hexadecimal values when <a href="#html-mode"><code>HTML-MODE</code></a> is set to <code>:SGML</code> because of compatibility reasons with old clients. <code><i>test</i></code> must be a function of one argument which accepts a character and returns a <a href="http://www.lispworks.com/reference/HyperSpec/Body/26_glo_g.htm#generalized_boolean">generalized boolean</a>. The default is the value of <a href="#*escape-char-p*"><code>*ESCAPE-CHAR-P*</code></a>. Note the <a href="#esc"><code>ESC</code></a> shortcut described in <a href="#syntax"><em>Syntax and Semantics</em></a>. <pre> -* (escape-string "<Hühner> 'naïve'") +* (escape-string "<Hühner> 'naïve'") "&lt;H&#xFC;hner&gt; &#x27;na&#xEF;ve&#x27;" * (with-html-output-to-string (s) - (:b (esc "<Hühner> 'naïve'"))) + (:b (esc "<Hühner> 'naïve'"))) "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"<b>&lt;H&#xFC;hner&gt; &#x27;na&#xEF;ve&#x27;</b>" </pre> </blockquote> |