I downloaded it and copied it to plugins folder and then enabled this plugin. But it does not seem to work. Cannot post using textile language. Please let me know do it need anything else to get textile working with vanilla 2.
@jozee@oinkfu This plugin doesn't allow post using textile markup. Plugin only FORMAT your comment. This plugin doesn't provide choice of format type of comment. Format type is stored in "Format" field in GDN_Comment table. However, you may force change format type by overriding function WriteComment() in applications\vanilla\views\discussion\helper_functions.php (in your custom theme for example), replace <div class="Body"><?php echo Format::To($Comment->Body, $Comment->Format); ?></div> to <div class="Body"><?php echo Format::To($Comment->Body, 'Textile'); ?></div>
I dont' recomend that. Need create plugin that provide to choose of format of a comment...
Comments
This plugin doesn't allow post using textile markup. Plugin only FORMAT your comment. This plugin doesn't provide choice of format type of comment. Format type is stored in "Format" field in GDN_Comment table.
However, you may force change format type by overriding function WriteComment() in applications\vanilla\views\discussion\helper_functions.php (in your custom theme for example), replace
<div class="Body"><?php echo Format::To($Comment->Body, $Comment->Format); ?></div>
to
<div class="Body"><?php echo Format::To($Comment->Body, 'Textile'); ?></div>
I dont' recomend that. Need create plugin that provide to choose of format of a comment...