mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
* add docfx and gh action to build docs * kick off build from feature branch * Fix LGTM linting * update az pipeline to win22 & remove nuget install * remove azure ci changes * fix implicit using to support 5.0 * fix more js issues * remove resource designer changes * remove space * fix linting misspellings in autogenerated js temp * fix misspellings in generated code * delete log file
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
var extension = require('./toc.extension.js')
|
|
|
|
exports.transform = function (model) {
|
|
|
|
if (extension && extension.preTransform) {
|
|
model = extension.preTransform(model);
|
|
}
|
|
|
|
transformItem(model, 1);
|
|
if (model.items && model.items.length > 0) model.leaf = false;
|
|
model.title = "Table of Content";
|
|
model._disableToc = true;
|
|
|
|
if (extension && extension.postTransform) {
|
|
model = extension.postTransform(model);
|
|
}
|
|
|
|
return model;
|
|
|
|
function transformItem(item, level) {
|
|
// set to null incase mustache looks up
|
|
item.topicHref = item.topicHref || null;
|
|
item.tocHref = item.tocHref || null;
|
|
item.name = item.name || null;
|
|
|
|
item.level = level;
|
|
if (item.items && item.items.length > 0) {
|
|
var length = item.items.length;
|
|
for (var i = 0; i < length; i++) {
|
|
transformItem(item.items[i], level + 1);
|
|
};
|
|
} else {
|
|
item.items = [];
|
|
item.leaf = true;
|
|
}
|
|
}
|
|
}
|