GitHub
github.com › ovasquez › docfx-material
GitHub - ovasquez/docfx-material: A simple material theme for DocFX · GitHub
A simple material theme for DocFX. This is an override of the modern template so you need to enable both in the docfx.json.
Author: ovasquez
Ovasquez
ovasquez.github.io › docfx-material
DocFX Material | DocFX Material
A simple material theme for DocFX. This is an override of the modern template so you need to enable both in the docfx.json.
.NEXT
dotnet.github.io › docfx › extensions › templates.html
Templates | docfx
Customizable responsive DocFX template designed with memberpage plugin compatibility to produce docs similar to Microsoft .NET docs.
Ovasquez
ovasquez.github.io › docfx-material › changelog.html
Changelog | DocFX Material
June 7, 2023 - Added support for the modern docfx template, including: Light and dark mode. Simplified color customization. Improved hover effects. Updated styles to new material theme: https://m3.material.io/get-started.
OpenWeaver
kandi.openweaver.com › css › ovasquez › docfx-material
docfx-material | A simple material theme for DocFX | Theme library
docfx-material is a CSS library typically used in User Interface, Theme applications. docfx-material has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support.
.NEXT
dotnet.github.io › docfx › docs › template.html
Template | docfx
Docfx ships several built-in templates. We recommend using the modern template that matches the look and feel of this site.
Steffen-wilke
steffen-wilke.github.io › darkfx
darkFX - A dark theme for DocFX! | darkFX
Update the docfx.json configuration to include the material template: json { "template": [ "default", "templates/darkfx" ], }
Starred by 55 users
Forked by 9 users
Languages: CSS 88.7% | JavaScript 11.3% | CSS 88.7% | JavaScript 11.3%
Top answer 1 of 2
24
- Export template:
- Run
docfx template export default, then you'll see default template in_exported_templates\default
- Run
- Change themes in default template, e.g:
- Adding external resource: modify
styles\head.tmpl.partial - CSS change: modify
styles\docfx.cssorstyles\main.css
- Adding external resource: modify
- Use customized template:
- Run
docfx -t _exported_templates\default, which will use your customized template!
- Run
NOTE: It is possible that DocFX updates its embedded templates when releasing new version. So please make sure to re-export the template if you overwrite or dependent on that template in your custom template.
2 of 2
0
By setting "template" docfx.json, the last templates override the first ones if the file name inside the template matches. Therefore, it is enough to create a new folder for your template, copy the changed files into it, adhering to the folder structure of the original template. Include the custom template in the config file. The "default" template is required. Look at the example template default(zh-cn)
Ovasquez
ovasquez.github.io › docfx-material › api › index.html
Petstore API | DocFX Material
This is a sample server Petstore server. You can find out more about Swagger at http://swagger.io or on irc.freenode.net, #swagger. For this sample, you can use the api key special-key to test the authorization filters · Add a new pet to the store
Platform Uno
platform.uno › docs › articles › uno-development › docfx.html
The Uno docs website and DocFX
Uno Platform's docs website uses DocFX to convert Markdown files in the articles folder into html files.
.NEXT
dotnet.github.io › docfx › docs › table-of-contents.html
Table of Contents | docfx
The toc.yml file in the docfx.json folder will be used to fill the content of the navigation bar at the top of the page.
GitHub
github.com › dotnet › docfx › issues › 1862
Create a material style theme · Issue #1862 · dotnet/docfx
July 12, 2017 - dotnet / docfx Public · Notifications · You must be signed in to change notification settings · Fork 865 · Star 4.1k · New issueCopy link · New issueCopy link · Closed · Closed · Create a material style theme#1862 · Copy link · the layout of Google API theme looks quite similar to docfx's ·
Author: dotnet
2sxc
docs.2sxc.org › abyss › contribute › docs.html
How to contribute to this documentation | 2sxc 16 / EAV 16
DocFX uses templates to transform the structured data model into the final static website. It is configured in 2sxc Docs Generator\docfx.json in the template section: "template": [ "default", "statictoc", "material/material", "templates/2sxc" ],
.NEXT
dotnet.github.io › docfx › docs › basic-concepts.html
Basic Concepts | docfx
Docfx can be used as a static site generator, but the real value of the tool is in bringing together static documentation pages and .NET API documentation. Docfx supports both C# and VB projects (although currently the output of tool is limited to C# syntax), and relies on the long-established XML comment syntax for C# (and similarly for VB).
2sxc
docs.2sxc.org › abyss › contribute › docs › implementation › docfx-templates.html
Implementation: DocFx Templates | 2sxc 22 for Dnn and Oqtane
DocFX uses templates to transform the structured data model into the final static website.
Stack Overflow
stackoverflow.com › questions › 64395539 › docfx-generation-with-preprocessor-directives-symbols-constants
c# - docfx generation with preprocessor directives (symbols/constants) - Stack Overflow
Update The TargetFramework appears to be ignored when I use **.cs instead of **.csproj. A 'docfxfix.cs' file just with #define NET48 appears to be a workaround when not using a project file.