[functional-tests] s/-/_/ in tag names
This commit is contained in:
parent
d3c8ae4f35
commit
93c8ebf896
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
(define (%open-tag sym attrs end)
|
(define (%open-tag sym attrs end)
|
||||||
(cat (dsp "<")
|
(cat (dsp "<")
|
||||||
(dsp sym)
|
(dsp (to-attribute-name sym))
|
||||||
(dsp " ")
|
(dsp " ")
|
||||||
(apply cat (intersperse (dsp " ")
|
(apply cat (intersperse (dsp " ")
|
||||||
(map attribute attrs)))
|
(map attribute attrs)))
|
||||||
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
(define (close-tag sym)
|
(define (close-tag sym)
|
||||||
(cat (dsp "</")
|
(cat (dsp "</")
|
||||||
(dsp sym)
|
(dsp (to-attribute-name sym))
|
||||||
(dsp ">")))
|
(dsp ">")))
|
||||||
|
|
||||||
(define (tag sym attrs . body)
|
(define (tag sym attrs . body)
|
||||||
|
Loading…
Reference in New Issue
Block a user