更新客户端渲染,更新了壳

This commit is contained in:
QWQLwToo
2026-07-06 23:05:40 +08:00
parent e7dd87bf7e
commit 31d778710b
1311 changed files with 172662 additions and 1582 deletions
@@ -0,0 +1,73 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace RtfDocumentProcessors
{
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Composition;
using System.IO;
using Microsoft.DocAsCode.Common;
using Microsoft.DocAsCode.Plugins;
[Export(typeof(IDocumentProcessor))]
public class RtfDocumentProcessor : IDocumentProcessor
{
#region BuildSteps
[ImportMany(nameof(RtfDocumentProcessor))]
public IEnumerable<IDocumentBuildStep> BuildSteps { get; set; }
#endregion
#region Name
public string Name => nameof(RtfDocumentProcessor);
#endregion
#region GetProcessingPriority
public ProcessingPriority GetProcessingPriority(FileAndType file)
{
if (
file.Type == DocumentType.Article
&& ".rtf".Equals(Path.GetExtension(file.File), StringComparison.OrdinalIgnoreCase)
)
{
return ProcessingPriority.Normal;
}
return ProcessingPriority.NotSupported;
}
#endregion
#region Load
public FileModel Load(FileAndType file, ImmutableDictionary<string, object> metadata)
{
var content = new Dictionary<string, object>
{
["conceptual"] = File.ReadAllText(Path.Combine(file.BaseDir, file.File)),
["type"] = "Conceptual",
["path"] = file.File,
};
var localPathFromRoot = PathUtility.MakeRelativePath(
EnvironmentContext.BaseDirectory,
EnvironmentContext.FileAbstractLayer.GetPhysicalPath(file.File)
);
return new FileModel(file, content) { LocalPathFromRoot = localPathFromRoot };
}
#endregion
#region Save
public SaveResult Save(FileModel model)
{
return new SaveResult
{
DocumentType = "Conceptual",
FileWithoutExtension = Path.ChangeExtension(model.File, null),
};
}
#endregion
#region UpdateHref
public void UpdateHref(FileModel model, IDocumentBuildContext context) { }
#endregion
}
}