banchan86 / docfx-tools_dev

The standard docfx template for package documentation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docfx-tools

A docfx template for package documentation, patching the modern template to provide stylesheets and scripts for rendering custom workflow containers with copy functionality.

How to use

To include this template in a docfx website, first clone this repository as a submodule:

git submodule add https://github.com/bonsai-rx/docfx-tools bonsai

Then modify docfx.json to include the template immediately after the modern template:

    "template": [
      "default",
      "modern",
      "bonsai/template",
      "template"
    ],

Finally, import and call the modules inside your website template/public folder.

main.css

@import "workflow.css";

main.js

import WorkflowContainer from "./workflow.js"

export default {
    start: () => {
        WorkflowContainer.init();
    }
}

Powershell Scripts

This repository also provides helper scripts to automate several content generation steps for package documentation websites.

Exporting workflow images

Exporting SVG images for all example workflows can be automated by placing all .bonsai files in a workflows folder and calling the below script pointing to the bin directory to include. A bonsai environment is assumed to be available in the .bonsai folder in the repository root.

.\modules\Export-Image.ps1 "..\src\PackageName\bin\Release\net472"

About

The standard docfx template for package documentation

License:MIT License


Languages

Language:PowerShell 55.6%Language:JavaScript 39.9%Language:CSS 4.5%