Re: [pollen] Is there a nice way to display a hash table in my document?

2017-09-17 Thread Matthew Butterick
> On Sep 17, 2017, at 10:02 AM, 飛羽如月 wrote: > > Now I want to feed each element of this list into a tag function, basically > something like > ◊(map p (hash-map references (lambda (x y) (string-append x ": " y > if it actually works. How do I make this work? Which part isn't working? Your

[pollen] Is there a nice way to display a hash table in my document?

2017-09-17 Thread 飛羽如月
I've been struggling with this for two hours. I want to have a nice overview of all links at the bottom of my document, so I defined a mutable hash table and made my link function add an entry to it every time it's called. (define references (make-hash)) (define (link url text [class ""]) (has