diff -r 45e887f23282 -r 7152ca0a0ce9 includes/constants.php --- a/includes/constants.php Mon Feb 16 16:04:54 2009 -0500 +++ b/includes/constants.php Mon Feb 16 16:17:25 2009 -0500 @@ -103,6 +103,43 @@ define('THIRD_SUNDAY', 3); define('LAST_SUNDAY', 4); +// Rendering options! + +/** + * Render using the default engine (Text_Wiki + Enano pre- and post-processing). + * @const int + */ + +define('RENDER_WIKI_DEFAULT', 1); + +/** + * Render using template/wiki hybrid syntax (Enano processing + template variable/logic access) + * @const int + */ + +define('RENDER_WIKI_TEMPLATE', 2); + +/** + * Only render block-level things, like paragraphs, divs, etc. + * @const int + */ + +define('RENDER_BLOCKONLY', 4); + +/** + * Only render inline-level things, like links. + * @const int + */ + +define('RENDER_INLINEONLY', 8); + +/** + * Disable smilies when rendering. + * @const int + */ + +define('RENDER_NOSMILIES', 16); + // // User types - don't touch these //