mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2022 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {ApiModel} from '@microsoft/api-extractor-model';
|
|
|
|
import {MarkdownDocumenter} from './custom_markdown_documenter.js';
|
|
|
|
export function docgen(jsonPath: string, outputDir: string): void {
|
|
const apiModel = new ApiModel();
|
|
apiModel.loadPackage(jsonPath);
|
|
|
|
const markdownDocumenter: MarkdownDocumenter = new MarkdownDocumenter({
|
|
apiModel: apiModel,
|
|
documenterConfig: undefined,
|
|
outputFolder: outputDir,
|
|
});
|
|
markdownDocumenter.generateFiles();
|
|
}
|
|
|
|
export function spliceIntoSection(
|
|
sectionName: string,
|
|
content: string,
|
|
sectionContent: string
|
|
): string {
|
|
const lines = content.split('\n');
|
|
const offset =
|
|
lines.findIndex(line => {
|
|
return line.includes(`<!-- ${sectionName}-start -->`);
|
|
}) + 1;
|
|
const limit = lines.slice(offset).findIndex(line => {
|
|
return line.includes(`<!-- ${sectionName}-end -->`);
|
|
});
|
|
lines.splice(offset, limit, ...sectionContent.split('\n'));
|
|
return lines.join('\n');
|
|
}
|