Releases: dotnet/docfx
Releases · dotnet/docfx
Version 2.1.0-alpha
Merge pull request #415 from dotnet/EncodeAttributeValue Html encode to the text that will be used as attributes value.
Version 2.0.2
- Support localization tokens in DFM.
Version 2.0.1
- Fix bug that file links can't be resolved in overwrite file
Version 2.0
- Breaking Change Add line info for markdown parser.
- Allow Markdown reference at the end of overwrite file.
- Provide more information for API reference documentation
- display inherited members
- display overridden members
- display implemented interface
- seperate category for Explicit Interface Implementation
- Rest api - Enable Tag in Swagger file to organize the APIs.
Version 1.9.4
- Fix Bug that may cause missing exception type in API reference documentation.
Version 1.10.0-alpha
Support .NET Command Line Interface Project
Version 1.9.3
- Fix OP template for metadata.
Version 1.9.2
- Fix OP template for metadata.
Version 1.9.1
- Fix OP template.
Version 1.9
-
Breaking Change Refactor template system:
- The input data model now contains all the properties including system generated metadata starting with underscore
_
and globally shared variables stored in__global
. You can usedocfx build --exportRawModel
to view the data model. - Preprocessor's
transform
function signature changes to:
exports.transform = function (model){ // transform the model return model; }
- The input data model now contains all the properties including system generated metadata starting with underscore
-
Provide a new embedded template
statictoc
with TOC generated in build time. Webpages generated by this template is PURE static and you can simply open the generated webpage file to take a preview, no local server is needed. -
Allow switch markdown engine.
-
Allow export metadata to manifest file.
-
Improve
exclude
logic to help avoidPathTooLongException
. (#156) -
Provide with a config file named
search-stopwords.json
to customise full-text search stop-words. (#279) -
Bug fixes:
-
Fix bug when cref contains loop. (#289)
-
Make sure id is unique for each HTML in markdown transforming. (#224)
-
Fix index range bugs in
YamlHeaderParser
. (#265)