Letters to the Editor

Letters to the editor are enclosed by <div> elements of the first level, which get the attribute value pair @type="jReadersLetters". The respective letter is enclosed by a <div> element of lower level, which gets the @type value "letter".

Category @type Value Hierarchy Level (recommended)
letters to the Editor jReadersLetters 1
letter letter 2 | 3 | ...
<div type="jReadersLetters">
      <div type="letter">[letter]</div>
      <div type="letter">[further letter]</div>
</div>

If individual letters are again grouped within the category "Letters to the editor", several <div type="jReadersLetters"> elements can be nested into each other.

<div type="jReadersLetters"> <!-- category letters to the editor -->
          <div type="jReadersLetters"> <!-- first group of letters to the editor -->
          <div type="letter">[letter to the editor]</div>
          <div type="letter">[further letter to the editor]</div>
  </div>
  <div type="jReadersLetters"> <!-- second group of letters to the editor -->
  <div type="letter">[letter to the editor]</div>
  <div type="letter">[further letter to the editor]</div>
  </div>
</div>