Arc Forumnew | comments | leaders | submitlogin
2 points by conanite 5550 days ago | link | parent

A quick way to figure out what's going wrong is to try it at the repl ...

  arc> (= routes* '(10a 10b 15a 20a 20b 30a 30b 30c 40a 59u))
  (10a 10b 15a 20a 20b 30a 30b 30c 40a 59u)
  arc> (each r routes* (link r (nbsp)))
  &nbsp;<a href="&nbsp;">10a</a>&nbsp;<a href="&nbsp;">10b</a>&nbsp;<a href="&nbsp;">15a</a>&nbsp;<a href="&nbsp;">20a</a>&nbsp;<a href="&nbsp;">20b</a>&nbsp;<a href="&nbsp;">30a</a>&nbsp;<a href="&nbsp;">30b</a>&nbsp;<a href="&nbsp;">30c</a>&nbsp;<a href="&nbsp;">40a</a>&nbsp;<a href="&nbsp;">59u</a>nil
  arc> 
The <a href="&nbsp;"> stands out like a sore thumb in this case.