I actually just deleted templates-sdk/ then made a copy of templates-sdk-dev/ and then renamed it to templates-sdk/. So this is a clean copy. Once this goes through cleanly, I'll delete templates-sdk-dev/ and update all doc targets to use templates-sdk/. Change-Id: I276695969e02fcf718370564e84b077a9d43725e
9 lines
385 B
C#
9 lines
385 B
C#
var <?cs
|
|
if:reference.testSupport ?>SUPPORT_TEST_<?cs
|
|
elif: reference.wearableSupport ?>SUPPORT_WEARABLE_<?cs
|
|
/if ?>DATA = [
|
|
<?cs each:page = docs.pages
|
|
?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
|
|
<?cs /each ?>
|
|
];
|