本文整理匯總了TypeScript中@argdown/core.ArgdownApplication.run方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ArgdownApplication.run方法的具體用法?TypeScript ArgdownApplication.run怎麽用?TypeScript ArgdownApplication.run使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@argdown/core.ArgdownApplication
的用法示例。
在下文中一共展示了ArgdownApplication.run方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it("sanity test", function() {
const source = `[T1]: Hello World`;
const result = app.run({
process: ["parse-input", "build-model", "export-symbols"],
input: source,
logLevel: "error"
});
expect(result.documentSymbols).to.exist;
expect(result.documentSymbols!.length).to.equal(1);
expect(result.documentSymbols![0].name).to.equal("[T1]");
});
示例2: VizJsMap
const createVizJsMap = (container: HTMLElement) => {
container.innerHTML = "";
const vizJsMap = new VizJsMap(container, "/full.render.js");
const response = app.run({
input: `
# G1
<a1>
- <a2>
`,
process: exportDot
});
vizJsMap.render({ dot: response.dot! });
};
示例3: DagreMap
const createDagreMap = (container: HTMLElement) => {
container.innerHTML = "";
const svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
svg.setAttribute("style", "width: 100%; height: 100%;");
container.appendChild(svg);
const dagreMap = new DagreMap(svg);
const response = app.run({
input: `
# G1
<a1>
- <a2>
`,
process: exportMap
});
dagreMap.render({ settings: {}, map: response.map!, tags: response.tags! });
};