docfx_project 1.0.99

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package docfx_project --version 1.0.99
NuGet\Install-Package docfx_project -Version 1.0.99
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="docfx_project" Version="1.0.99" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add docfx_project --version 1.0.99
#r "nuget: docfx_project, 1.0.99"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install docfx_project as a Cake Addin
#addin nuget:?package=docfx_project&version=1.0.99

// Install docfx_project as a Cake Tool
#tool nuget:?package=docfx_project&version=1.0.99

DocFx MermaidJS

Mission Statement

To provide a plugin to convert MermaidJS notations to diagrams during the build of a DocFX project.

Introduction

This DocFX MermaidJS plugin is a wrapper around the mermaid-cli NPM package. It is aimed at doing build time generation of the mermaid diagram so:

  • The syntax can be validated at build time.
  • The image is only built once.
  • The image can be embedded in a pdf.

Credits

Getting Started

Pre-requisites

You will need:

  • NodeJS
  • NPM
  • A docfx project

The instructions below assume the DocFX project is called "docfx_project"

Setting up NodeJS

In your docfx project folder create a package.json file with content similar to:

{
    "name": "docfx",
    "version": "1.0.0",
    "devDependencies": {
        "@mermaid-js/mermaid-cli": "9.2.2"
    }
}

Script and\or carry out a package restore using the following command

pushd docfx_project && npm install && popd

Setting up DocFX

Add a nuget package reference to "Dhgms.DocFX.Mermaid.Plugin" in your docfx_project

Update your docfx.json to include the template. This assumes you are using the default templates for the process. You need to put this plugin BEFORE your output template.

For HTML output:

    "build": {
        "template": [
            "markdownmermaidjs",
            "default"
        ]
    }

For PDF output:

    "pdf": {
        "template": [
            "markdownmermaidjs",
            "pdf.default"
        ]
    }

By default the plugin has the following behaviour:

  • Uses inline emdedding in the HTML
  • Creates png images
  • Runs the mermaid-cli externally

You can adjust the settings by viewing the detailed documentation.

Adding a diagram

In your markdown files add a code block with a mermaid descriptor like so:

```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
```

Then you can run the build and you should see the image output in place of the mermaid markdown syntax.

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

Viewing the documentation

The documentation can be found at https://dpvreony.github.io/docfx-mermaidjs/

Contributing to the code

See the contribution guidelines.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated