Replace escape <,> with <, >

for i in *.html.docuwiki; do perl -pi -e "s/&gt;/>/g" $i; done
for i in *.html.docuwiki; do perl -pi -e "s/&lt;/</g" $i; done
This commit is contained in:
2021-03-11 23:50:37 +00:00
parent 11889ecf9e
commit c81979dcbf
63 changed files with 573 additions and 573 deletions
+8 -8
View File
@@ -32,20 +32,20 @@ By default ECL starts up in interactive mode. Log into SDF host //miku// and typ
under certain conditions; see file 'Copyright' for details.
Type :h for Help.
Top level.
&gt;
>
The default ECL prompt is "&gt;". Enter Common-Lisp commands in the usual way:
The default ECL prompt is ">". Enter Common-Lisp commands in the usual way:
&gt; (+ 1 2 3)
> (+ 1 2 3)
6
&gt; (* 4 5)
> (* 4 5)
20
&gt; (format t "hello SDF~&amp;")
> (format t "hello SDF~&amp;")
hello SDF
NIL
&gt;
>
In-line help is available ; type :h for options. The debugger can be entered using "(break)" ; once entered typed :h to see options. To exit the ECL interactive session type ":exit" .
@@ -55,7 +55,7 @@ To use ECL as a script executor (ie. CGI) the //-shell// and/or //-eval// option
ex: hello.lsp
% echo '(format t "~&amp;Hello SDF~&amp;")' &gt; hello.lsp
% echo '(format t "~&amp;Hello SDF~&amp;")' > hello.lsp
% ecl -norc -script hello.lsp
Hello SDF
@@ -125,7 +125,7 @@ The following outlines the process, using the //ecl-readline// module (adds GNU
(asdf:operate 'asdf:load-op 'ecl-readline)
(ecl-readline::enable)
The next time you startup ECL it will compile the ecl-readline module and launch an interactive session. With ecl-readline enabled the default ECL prompt is "//CL-USER[n]&gt;//" and you should then be able to use Emacs-style command editing and history recall. If you don't like the provided prompt you can change it by editing the //ecl-readline.lisp// file.
The next time you startup ECL it will compile the ecl-readline module and launch an interactive session. With ecl-readline enabled the default ECL prompt is "//CL-USER[n]>//" and you should then be able to use Emacs-style command editing and history recall. If you don't like the provided prompt you can change it by editing the //ecl-readline.lisp// file.
===== Customizations =====