ITextTransformer Interface

Namespace
Kampute.DocToolkit.Formatters
Assembly
  • Kampute.DocToolkit.dll

Definition

Defines a contract for transforming text from one format to another.
public interface ITextTransformer
Implemented by

Remarks

The ITextTransformer interface provides a standardized way to convert text content from one format to another, such as converting Markdown to HTML.

Implementations of this interface handle the specific transformation logic for different source and target formats. They are typically used by IDocumentFormatter implementations to transform content between formats during documentation generation.

Methods

Transform(TextReader, TextWriter, IUrlTransformer)Transforms the text from the source format to the target format.

See Also