namespace ZelWiki.Engine.Library.Interfaces { /// /// Handles basic markup/style instructions like bole, italic, underline, etc. /// public interface IMarkupHandler { /// /// Handles basic markup instructions like bole, italic, underline, etc. /// /// Reference to the wiki state object /// The sequence of symbols that were found to denotate this markup instruction, /// The body of text to apply the style to. public HandlerResult Handle(IZelEngineState state, char sequence, string scopeBody); } }