in src/VscHtmlGenerator.ts [36:56]
public getInstallOptions(): string {
let installCommand: string = (() => {
if (this.packageData.name) {
return `ext install ${this.packageData.name}`
}
return "";
})();
return `<div class="vscode-copy-command-wrapper " id="2">
<div class="vscode-item-action ">
<div class="vscode-install-title ">Installation</div>
<div class="vscode-install-instructions ">Launch VS Code Quick Open (<code>Ctrl+P</code>), paste the following command, and type enter.</div>
<div class="vscode-install-info-container ">
<div class="vscode-command-container ">
<input type="text" class="vscode-command-input " readonly="" value="${installCommand}" id="vscode-command-input">
<button class="copy-to-clipboard-button " title="Copy to clipboard" id="copy-to-clipboard-button">Copy</button>
</div>
<a class="vscode-moreinformation ux-section-banner-custom-bg " href="" target="">More Info</a>
</div>
</div>
</div>`
}