aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLudovic Court`es2005-06-15 13:33:39 +0000
committerLudovic Court`es2005-06-15 13:33:39 +0000
commitd75461bc06e1cba0f29990a2604a4a86cd1c0679 (patch)
treec74b4eec97f8f0c41c10c0a5ab789a0274471e19 /tools
parentfc42fe56a57eace2dbdb31574c2e161f0eacf839 (diff)
downloadskribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.tar.gz
skribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.tar.lz
skribilo-d75461bc06e1cba0f29990a2604a4a86cd1c0679.zip
Various bugfixes; new `file-name-proc' custom for the HTML engine.
* tools/skribebibtex/bigloo/skribebibtex.scm (skribebibtex): Don't enclose `ident' in double quotes. * doc/user/user.skb: Made "Introduction" a chapter rather than a section; likewise for its subsections. * skr/html.skr (itemize): Produce an anchor if `ident' is not false. (enumerate): Likewise. (html-file-default): New procedure. (file-name-proc): New custom. * src/bigloo/color.scm (*color-parser*): Fixed the "black" and "white" colors (were inverted). git-archimport-id: lcourtes@laas.fr--2004-libre/skribilo--devel--1.2--patch-1
Diffstat (limited to 'tools')
-rw-r--r--tools/skribebibtex/bigloo/skribebibtex.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/skribebibtex/bigloo/skribebibtex.scm b/tools/skribebibtex/bigloo/skribebibtex.scm
index b581537..25f3e16 100644
--- a/tools/skribebibtex/bigloo/skribebibtex.scm
+++ b/tools/skribebibtex/bigloo/skribebibtex.scm
@@ -33,7 +33,7 @@
((?kind ?ident . ?fields)
(display* "("
(string-downcase (symbol->string kind))
- " \"" ident "\"")
+ ident)
(for-each (lambda (f)
(display* "\n (" (car f) " ")
(write (cdr f))