using ZelWiki.Library;
namespace ZelWiki.Engine.Library.Interfaces
{
///
/// 处理内链
///
public interface IInternalLinkHandler
{
///
///
///
///
///
///
///
///
///
///
public HandlerResult Handle(IZelEngineState state, NamespaceNavigation pageNavigation, string pageName,
string linkText, string? image, int imageScale);
}
}