You are here

function biblio_get_allowed_tags in Bibliography Module 6

Same name and namespace in other branches
  1. 5 biblio.module \biblio_get_allowed_tags()
  2. 6.2 biblio.module \biblio_get_allowed_tags()
  3. 7 biblio.module \biblio_get_allowed_tags()
  4. 7.2 biblio.module \biblio_get_allowed_tags()
13 calls to biblio_get_allowed_tags()
biblio_block in ./biblio.module
Implementation of hook_block().
biblio_nodeapi in ./biblio.module
biblio_style_ama in ./biblio_style_ama.inc
biblio_style_apa in ./biblio_style_apa.inc
Apply a bibliographic style to the node
biblio_style_chicago in ./biblio_style_chicago.inc
Apply a bibliographic style to the node

... See full list

File

./biblio.module, line 2418

Code

function biblio_get_allowed_tags() {
  return array(
    'a',
    'b',
    'i',
    'u',
    'sub',
    'sup',
    'span',
  );
}