Why does Bootstrap theme remove <table>, <thead>, <tbody> tages?

How can I insert a simple table?
I got a look at the Bootstrap documentation (http://getbootstrap.com/css/#tables).

is there a function in the Bootstrap theme for Drupal that removes it?

Comments

markhalliwell’s picture

Status: Active » Closed (works as designed)
Related issues: +#2224487: Support "footer" in tables

It doesn't...

theme('table', array(
'header' => array(),
'rows' => array(),
'footer' => array(),
));

The last footer ability was added in the related issue (which introduced bootstrap_table() as a theme override).