1. <aside>
  2. <!-- related information about this post -->
  3. <?php the_meta(); ?>
  4. </aside>
  5.  
  6. that's it!
  7.  
  8. // it makes this code:
  9.  
  10. <aside>
  11. <!-- related information about this post -->
  12. <ul class="post-meta">
  13. <li><span class="post-meta-key">currently reading:</span> alice in wonderland, another book</li>
  14. </ul>
  15. </aside>
  16.  
  17. // i want it to output this:
  18.  
  19. <aside>
  20. <!-- related information about this post -->
  21. <ul class="post-meta">
  22. <li><span class="post-meta-key">currently reading:</span> alice in wonderland<br />another book</li>
  23. </ul>
  24. </aside>