aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Boukarev <stassats@gmail.com>2019-01-12 14:30:07 +0300
committerGitHub <noreply@github.com>2019-01-12 14:30:07 +0300
commit7587277caca732849964a6e150693ca221b44eae (patch)
tree556fa7e7a5ef3d88f7a834f734464689d6c8d3f8
parentbfdd686f9e3769a86c45d192d76ddadbcd520f51 (diff)
downloadtl-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.html15
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>&nbsp;<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
&quot;&lt;h4&gt;Look at the character entities generated by this example&lt;/h4&gt;&quot;
*http-stream*)
- (loop for i from 0 for string in '(&quot;Fête&quot; &quot;Sørensen&quot; &quot;naïve&quot; &quot;Hühner&quot; &quot;Straße&quot;)
+ (loop for i from 0 for string in '(&quot;Fête&quot; &quot;Sørensen&quot; &quot;naïve&quot; &quot;Hühner&quot; &quot;Straße&quot;)
do (progn
(write-string &quot;&lt;p style='&quot; *http-stream*)
(princ (<a class=noborder href="#conc">conc</a> &quot;background-color:&quot;
@@ -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 &quot;&lt;Hühner&gt; 'naïve'&quot;)
+* (escape-string &quot;&lt;Hühner&gt; 'naïve'&quot;)
&quot;&amp;lt;H&amp;#xFC;hner&amp;gt; &amp;#x27;na&amp;#xEF;ve&amp;#x27;&quot;
* (with-html-output-to-string (s)
- (:b (esc &quot;&lt;Hühner&gt; 'naïve'&quot;)))
+ (:b (esc &quot;&lt;Hühner&gt; 'naïve'&quot;)))
&quot;&lt;!DOCTYPE html PUBLIC \&quot;-//W3C//DTD XHTML 1.0 Strict//EN\&quot; \&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\&quot;&lt;b&gt;&amp;lt;H&amp;#xFC;hner&amp;gt; &amp;#x27;na&amp;#xEF;ve&amp;#x27;&lt;/b&gt;&quot;
</pre>
</blockquote>