You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1011 B

  1. <div id="example_{{.Name}}" class="toggle">
  2. <div class="collapsed">
  3. <p class="exampleHeading toggleButton"><span class="text">Example{{example_suffix .Name}}</span></p>
  4. </div>
  5. <div class="expanded">
  6. <p class="exampleHeading toggleButton"><span class="text">Example{{example_suffix .Name}}</span></p>
  7. {{with .Doc}}<p>{{html .}}</p>{{end}}
  8. {{$output := .Output}}
  9. {{with .Play}}
  10. <div class="play">
  11. <div class="input"><textarea class="code" spellcheck="false">{{html .}}</textarea></div>
  12. <div class="output"><pre>{{html $output}}</pre></div>
  13. <div class="buttons">
  14. <a class="run" title="Run this code [shift-enter]">Run</a>
  15. <a class="fmt" title="Format this code">Format</a>
  16. {{if not $.GoogleCN}}
  17. <a class="share" title="Share this code">Share</a>
  18. {{end}}
  19. </div>
  20. </div>
  21. {{else}}
  22. <p>Code:</p>
  23. <pre class="code">{{.Code}}</pre>
  24. {{with .Output}}
  25. <p>Output:</p>
  26. <pre class="output">{{html .}}</pre>
  27. {{end}}
  28. {{end}}
  29. </div>
  30. </div>