namespace ZelWiki.Engine.Library.Interfaces
{
///
/// Handles wiki headings. These are automatically added to the table of contents.
///
public interface IHeadingHandler
{
///
/// Handles wiki headings. These are automatically added to the table of contents.
///
/// Reference to the wiki state object
/// The size of the header, also used for table of table of contents indentation.
/// The self link reference.
/// The text for the self link.
public HandlerResult Handle(IZelEngineState state, int depth, string link, string text);
}
}