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.

rest.tmpl.partial 1.1 KiB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
  2. <h1 id="{{htmlId}}" data-uid="{{uid}}" class="text-capitalize">{{name}}</h1>
  3. {{#summary}}
  4. <div class="markdown level0 summary">{{{summary}}}</div>
  5. {{/summary}}
  6. {{#description}}
  7. <div class="markdown level0 description">{{{description}}}</div>
  8. {{/description}}
  9. {{#conceptual}}
  10. <div class="markdown level0 conceptual">{{{conceptual}}}</div>
  11. {{/conceptual}}
  12. {{#tags}}
  13. <h2 id="{{htmlId}}">{{name}}</h2>
  14. {{#description}}
  15. <div class="markdown level0 description">{{{description}}}</div>
  16. {{/description}}
  17. {{#conceptual}}
  18. <div class="markdown level0 conceptual">{{{conceptual}}}</div>
  19. {{/conceptual}}
  20. {{#children}}
  21. {{>partials/rest.child}}
  22. {{/children}}
  23. {{/tags}}
  24. {{!if some children are not tagged while other children are tagged, add default title}}
  25. {{#children.0}}
  26. {{#isTagLayout}}
  27. <h2 id="other-apis">Other APIs</h2>
  28. {{/isTagLayout}}
  29. {{/children.0}}
  30. {{#children}}
  31. {{>partials/rest.child}}
  32. {{/children}}
  33. {{#footer}}
  34. <div class="markdown level0 api-footer">{{{footer}}}</div>
  35. {{/footer}}