namespace ZelWiki.Engine.Library.Interfaces
{
///
/// Handles wiki comments. These are generally removed from the result.
///
public interface ICommentHandler
{
///
/// Handles a wiki comment.
///
/// Reference to the wiki state object
/// The comment text
public HandlerResult Handle(IZelEngineState state, string text);
}
}