| match-substitute-sosofo | ||
|---|---|---|
| Prev | Next | |
(match-substitute-sosofo string assoc-list)
Given a string and an associative list of strings and sosofos, return the sosofo of the matching string, or return the literal string as a sosofo.
(This function is used for a particular task in the DocBook stylesheets. It may not be particularly general, but its in dblib.dsl' because there is nothing DTD-specific about it.)
Norman Walsh, <ndw@nwalsh.com>
(define (match-substitute-sosofo string assoc-list)
;; Return matching sosofo from associative list
(if (assoc string assoc-list)
(car (cdr (assoc string assoc-list)))
(literal string)))| Prev | Home | Next |
| match-split | Up | measurement-to-length |