namespace TightWiki.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(ITightEngineState state, string text); } }