Skip to content

Releases: dotnet/docfx

Version 2.1.0-alpha

22 Jun 10:21
Compare
Choose a tag to compare
Version 2.1.0-alpha Pre-release
Pre-release
Merge pull request #415 from dotnet/EncodeAttributeValue

Html encode to the text that will be used as attributes value.

Version 2.0.2

22 Jun 09:48
Compare
Choose a tag to compare
  1. Support localization tokens in DFM.

Version 2.0.1

07 Jun 05:26
Compare
Choose a tag to compare
  1. Fix bug that file links can't be resolved in overwrite file

Version 2.0

06 Jun 07:19
Compare
Choose a tag to compare
  1. Breaking Change Add line info for markdown parser.
  2. Allow Markdown reference at the end of overwrite file.
  3. Provide more information for API reference documentation
  4. display inherited members
  5. display overridden members
  6. display implemented interface
  7. seperate category for Explicit Interface Implementation
  8. Rest api - Enable Tag in Swagger file to organize the APIs.

Version 1.9.4

19 May 03:14
Compare
Choose a tag to compare
  1. Fix Bug that may cause missing exception type in API reference documentation.

Version 1.10.0-alpha

18 May 12:18
Compare
Choose a tag to compare
Version 1.10.0-alpha Pre-release
Pre-release

Support .NET Command Line Interface Project

Version 1.9.3

18 May 11:52
Compare
Choose a tag to compare
  1. Fix OP template for metadata.

Version 1.9.2

18 May 10:11
Compare
Choose a tag to compare
  1. Fix OP template for metadata.

Version 1.9.1

17 May 03:21
Compare
Choose a tag to compare
  1. Fix OP template.

Version 1.9

16 May 06:26
Compare
Choose a tag to compare
  1. Breaking Change Refactor template system:

    1. 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 use docfx build --exportRawModel to view the data model.
    2. Preprocessor's transform function signature changes to:
    exports.transform = function (model){
        // transform the model 
        return model;
    }
  2. 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.

  3. Allow switch markdown engine.

  4. Allow export metadata to manifest file.

  5. Improve exclude logic to help avoid PathTooLongException. (#156)

  6. Provide with a config file named search-stopwords.json to customise full-text search stop-words. (#279)

  7. Bug fixes:

  8. Fix bug when cref contains loop. (#289)

  9. Make sure id is unique for each HTML in markdown transforming. (#224)

  10. Fix index range bugs in YamlHeaderParser. (#265)