You are here

function biblio_get_allowed_tags in Bibliography Module 5

Same name and namespace in other branches
  1. 6.2 biblio.module \biblio_get_allowed_tags()
  2. 6 biblio.module \biblio_get_allowed_tags()
  3. 7 biblio.module \biblio_get_allowed_tags()
  4. 7.2 biblio.module \biblio_get_allowed_tags()
4 calls to biblio_get_allowed_tags()
biblio_style_ama in ./biblio_style_ama.inc
biblio_style_chicago in ./biblio_style_chicago.inc
Apply a bibliographic style to the node
biblio_style_mla in ./biblio_style_mla.inc
Apply a bibliographic style to the node
biblio_style_vancouver in ./biblio_style_vancouver.inc

File

./biblio.module, line 4149

Code

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