Heleonix.Docfx.Plugins.XmlDoc
The Docfx plugin to generate documentation from xml-based files via intermediate template transformations into Markdown.
Install
https://www.nuget.org/packages/Heleonix.Docfx.Plugins.XmlDoc
Usage
- Install the plugin and make it accessible for
Docfx
as a custom template. See How to enable plugins - If needed, configure the plugin in the
Heleonix.Docfx.Plugins.XmlDoc.settings.json
located in the same folder as theHeleonix.Docfx.Plugins.XmlDoc.dll
:
By default,{ "SupportedFormats": [ ".xml", ".xsd", ".yourformat" ] }
.xml
and.xsd
file formats are recognized. - Configure the
docfx.json
with the plugin features. See the docfx.json.
Examples
docfx.json
{
"build": {
"content": [
{
"files": [ "**/*.{md,yml}" ],
"exclude": [ "_site/**" ]
},
{
"files": [ "*.xsd" ],
"src": "../../some-external-location"
},
{
"files": [ "internal-store-folder/*.xsd" ]
}
],
"resource": [
{
"files": [ "images/**" ]
}
],
"output": "_site",
"template": [
"default",
"templates/template-with-xmldoc-plugin"
],
"fileMetadata": {
"hx.xmldoc.template": { "**.xsd": "./xml-to-md.xslt" },
"hx.xmldoc.store": { "../../some-external-location/*.xsd": "internal-store-folder" }
"hx.xmldoc.toc": {
"**/*-some.xsd": { "action": "InsertAfter", "key": "~/articles/introduction.md" },
"**/*-other.xsd": { "action": "AppendChild", "key": "Namespace.Class.whatever.uid" }
}
}
}
}
input xml-based file, i.e. Hx_NetBuild.xsd
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:msb="http://schemas.microsoft.com/developer/msbuild/2003"
elementFormDefault="qualified"
targetNamespace="http://schemas.microsoft.com/developer/msbuild/2003"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Hx_NetBuild_ArtifactsDir" type="msb:StringPropertyType" substitutionGroup="msb:Property">
<xs:annotation>
<xs:documentation>A path to the NetBuild artifacts directory.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hx_NetBuild_SlnFile" type="msb:StringPropertyType" substitutionGroup="msb:Property">
<xs:annotation>
<xs:documentation>A path to the solution file to build. Default is a .sln file found in the $Hx_WS_Dir.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Hx_NetBuild_SnkFile" type="msb:StringPropertyType" substitutionGroup="msb:Property">
<xs:annotation>
<xs:documentation>The file with public/private keys pair to sign assemblies.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>
xslt template
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:msb="http://schemas.microsoft.com/developer/msbuild/2003">
<xsl:output method="text" indent="no"/>
<xsl:strip-space elements="*"/>
<xsl:param name="filename"/>
<xsl:template match="/">
# <xsl:value-of select="$filename"/>
### Properties
<xsl:for-each select="xs:schema/xs:element[@substitutionGroup='msb:Property']">
#### <xsl:value-of select="@name"/>
<xsl:text>

</xsl:text>
<xsl:value-of select="normalize-space(xs:annotation/xs:documentation)"/>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
cshtml template
@using System
@using System.IO
@using System.Xml.Linq
@inherits RazorEngineCore.RazorEngineTemplateBase<XDocument>
@{
XDocument model = Model;
XNamespace xs = "http://www.w3.org/2001/XMLSchema";
var fileName = Path.GetFileNameWithoutExtension(model.Document.BaseUri);
var elements = model.Document.Element(xs + "schema").Elements(xs + "element");
var props = elements.Where(e => e.Attribute("substitutionGroup")?.Value == "msb:Property");
}
---
uid: @fileName
---
# @fileName
@if (props.Count() > 0)
{
<text>## Properties</text>
@:
foreach (var prop in props)
{
<text>#### @prop.Attribute("name").Value</text>
@:
<text>@prop.Element(xs + "annotation").Element(xs + "documentation").Value.Trim()</text>
@:
}
}
markdown output
# Hx_NetBuild
### Properties
#### Hx_NetBuild_ArtifactsDir
A path to the NetBuild artifacts directory.
#### Hx_NetBuild_SlnFile
A path to the solution file to build. Default is a .sln file found in the $Hx_WS_Dir.
#### Hx_NetBuild_SnkFile
The file with public/private keys pair to sign assemblies.
File Metadata
hx.xmldoc.template
- path to a template .cshtml
or .xslt
file to transform xml-based file to Markdown, which is then converted into output HTML by Docfx.
hx.xmldoc.store
- a folder inside your documentation proejct, where the corresponding xml-based files are copied to
and then used as source files to transform to intermediate markdown and generate output HTML from.
This is useful, when original files are not always available, i.e. when your single documentation project is applied
to different dotnet projects simultaneously to support multi-project documentation.
It works like metadata files generated from .NET projects/dlls/xml documentation, where generated yaml
metadata could
be commited as part of your documentation project for future re-builds, when the original .NET project is not available.
Hrefs to such files can be specified as internal-store-folder/your-file.xsd
.
hx.xmldoc.toc
- specifies where and how the your xml-based files should be added into Table Of Contents.
hx.xmldoc.toc / action
- one of the TreeItemActionType
hx.xmldoc.toc / key
- a TOC item key to apply the action. If the key starts with ~
, then it is used as Href, otherwise as Uid.
Contribution Guideline
- Create a fork from the main repository
- Implement whatever is needed
- Create a Pull Request. Make sure the assigned Checks pass successfully. You can watch the progress in the PR: .NET GitHub workflows
- Request review from the code owner
- Once approved, merge your Pull Request via Squash and merge
IMPORTANT
While merging, enter a Conventional Commits commit message. This commit message will be used in automatically generated Github Release Notes and NuGet Release Notes - Monitor the Release: .NET / NuGet GitHub workflow to make sure your changes are delivered successfully
- In case of any issues, please contact heleonix.sln@gmail.com