Changeset 917
- Timestamp:
- 02/26/08 21:46:36 (9 months ago)
- Files:
-
- bbcode-lite/trunk/BBcode-lite.php (modified) (1 diff)
- bbcode-lite/trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
bbcode-lite/trunk/BBcode-lite.php
r916 r917 13 13 */ 14 14 15 add_filter('post_text', 'bbcode_lite',7); // to store bbcode as html permanently, change 'post_text' to 'pre_ text' which is faster but harder for users to edit15 add_filter('post_text', 'bbcode_lite',7); // to store bbcode as html permanently, change 'post_text' to 'pre_post' which is faster but harder for users to edit 16 16 add_filter( 'bb_allowed_tags', 'bbcode_lite_extra_tags' ); // unfortunately to make bbcode fast we need to allow some extra tags like "font" 17 17 bbcode-lite/trunk/readme.txt
r916 r917 26 26 == Installation == 27 27 28 * Add the `bbcode-li ght.php` file to bbPress' `my-plugins/` directory and activate.28 * Add the `bbcode-lite.php` file to bbPress' `my-plugins/` directory and activate. 29 29 30 30 == Frequently Asked Questions == … … 48 48 * there may be others, periodically updated based upon request 49 49 50 = now ignores BBcode inbetween backticks or `<code>`=50 = What if I want to show BBcode examples and not have them evaluated? = 51 51 52 = There are still some weird special circumstances where the BBcode may not work properly, 53 be sure to let me know if you find some and I will address them as time permits. = 52 * BBcode inbetween backticks or `code` is ignored and will not be processed 54 53 55 = If you have an extremely active forum or overloaded server you can change `pre_text` to `post_text` within the plugin to permanently save changes = 54 = some BBcode is not working? = 55 56 * There are still some weird special circumstances where the BBcode may not work properly, 57 be sure to let me know if you find some and I will address them as time permits. 58 59 = It's fast but my forum is huge and it's still too slow? = 60 61 * If you have an extremely active forum or overloaded server you can change 62 `post_text` to `pre_post` within the plugin filter to permanently save bbcode as html. 63 (however this makes it a bit harder for users to re-edit a post as the bbcode will then appear as html) 56 64 57 65 == License ==
