From 56df2f7b6ec6f19ecd98124b368a9ed00d96b1cb Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Fri, 27 Sep 2024 22:33:04 +0300 Subject: [PATCH] fix: update ConceptualDocumentProcessor reference Signed-off-by: Emmanuel Ferdman --- ..._build_your_own_type_of_documentation_with_custom_plug-in.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md b/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md index 8d70d6af0a0..561f217c7e6 100644 --- a/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md +++ b/docs/tutorial/howto_build_your_own_type_of_documentation_with_custom_plug-in.md @@ -57,7 +57,7 @@ Create a document processor 3. Load our rtf file by reading all text: [!Code-csharp[Load](../codesnippet/Rtf/RtfDocumentProcessor.cs?name=Load)] - We use `Dictionary` as the data model, similar to how [ConceptualDocumentProcessor](https://github.com/dotnet/docfx/blob/dev/src/Docfx.Build.ConceptualDocuments/ConceptualDocumentProcessor.cs) + We use `Dictionary` as the data model, similar to how [ConceptualDocumentProcessor](https://github.com/dotnet/docfx/blob/main/src/Docfx.Build/Conceptual/ConceptualDocumentProcessor.cs) stores the content of markdown files. 4. Implement `Save` method as follows: