<template name="Tutorial" category="miscellaneous">
  <description>This report contains tutorial examples.</description>
  <section name="Echo">
    <description>Print the value of the input.</description>
    <usage>Enter a string and see it in a report section.</usage>
    <input name="echostr" type="string" label="String" required="true" />
    <script>
var r = new Report();
r.paragraph(echostr);
    </script>
  </section>
</template>
