view dottes.html.tuneindex @ 735:68f926e61d16

Revise Markdown handling of character entities. Ideally I'd like the ABC character entities to survive Markdown and then get converted. But because they start with '\', they don't. So I have no alternative but to convert them to HTML entities, which Markdown then converts to UTF-8.
author Jim Hague <jim.hague@acm.org>
date Thu, 12 Oct 2017 13:32:24 +0100
parents 833e6185b6a2
children d6e2a281cceb
line wrap: on
line source

<div class="dottes-tune-list-item">
  <div class="dottes-tune-list-item-link">
    <a class="dottes-tune-link" href="${name}.html">${fulltitle}</a>
  </div>
  <div class="dottes-tune-list-item-learner-link">
    <a class="dottes-tune-link" href="learner-${name}.html">
      <img class="dottes-tune-table-image" src="../img/learner.png" alt="Learner page" title="Learner page for ${fulltitle}">
    </a>
  </div>
  <div class="dottes-tune-list-item-image">
    <a href="${name}.html">
      <img class="dottes-tune-table-image" src="firstline-${name}.png"
           alt="${fulltitle} first line" title="${fulltitle} first line">
    </a>
  </div>
</div>