You are here

README.txt in Extensible BBCode 8.2

Same filename and directory in other branches
  1. 8 README.txt
  2. 5 README.txt
  3. 6 README.txt
  4. 7 README.txt
-- SUMMARY --

The Extensible BBCode provides a BBCode parser that can be extended
with custom tag macros. If you install it on your Drupal site, 
it will create a text format 
named "BBCode" that can generate HTML out of user-entered text markup like this:

    This text is [b]bold[/b] and [i]italic[/i].

Activating the "Basic" submodule will add the most commonly available 
markup tags. Beyond that, it is also possible to create new tags
that either generate static output or use PHP code to determine how
the tag is rendered.

-- REQUIREMENTS --

None. However, the core PHP module must be enabled in order to create
tags that use PHP code.

File

README.txt
View source
  1. -- SUMMARY --
  2. The Extensible BBCode provides a BBCode parser that can be extended
  3. with custom tag macros. If you install it on your Drupal site,
  4. it will create a text format
  5. named "BBCode" that can generate HTML out of user-entered text markup like this:
  6. This text is [b]bold[/b] and [i]italic[/i].
  7. Activating the "Basic" submodule will add the most commonly available
  8. markup tags. Beyond that, it is also possible to create new tags
  9. that either generate static output or use PHP code to determine how
  10. the tag is rendered.
  11. -- REQUIREMENTS --
  12. None. However, the core PHP module must be enabled in order to create
  13. tags that use PHP code.