Skip to content

The standard docfx template for package documentation

License

Notifications You must be signed in to change notification settings

bonsai-rx/docfx-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published