diff --git a/.docfx/template/ManagedReference.extension.js b/.docfx/template/ManagedReference.extension.js new file mode 100644 index 0000000..8bf65c0 --- /dev/null +++ b/.docfx/template/ManagedReference.extension.js @@ -0,0 +1,19 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. + +/** + * This method will be called at the start of exports.transform in ManagedReference.html.primary.js + */ +exports.preTransform = function (model) { + return model; +} + +/** + * This method will be called at the end of exports.transform in ManagedReference.html.primary.js + */ +exports.postTransform = function (model) { + + model.sourceurl += 'xxx'; + + return model; +}