Skip to content

Release Notes

Upgrading

To upgrade Code Tabs to the latest version, use pip:

pip install --upgrade markdown-fenced-code-tabs

To inspect the currently installed version, use the following command:

pip show markdown-fenced-code-tabs

Code Tabs 0.x to 1.x

To keep everything working smoothly, you need to choose the bootstrap3 template:

markdown_extensions:
  - markdown_fenced_code_tabs:
      template: 'bootstrap3'

Changelog

1.0.5 _ Nov 14, 2018

  • FIX: Custom label capitalization issue.

1.0.4 _ Nov 14, 2018

1.0.3 _ May 27, 2018

  • Avoid adding the <div class="md-fenced-code-tabs"></div> structure for single code blocks if the single_block_as_tab option is True.

1.0.2 _ May 27, 2018

  • FIX: Fixed the Bootsrap templates

1.0.1 _ May 25, 2018

  • FIX: Fixed the missing resources

1.0.0 _ May 25, 2018

  • NEW: Added the active_class option support in the configuration
  • NEW: Added the template option support in the configuration
  • FIX: Fixed the tab id issue for code blocks with same language #12

0.2.0 _ June 16, 2017

  • Added the custom tab label option
  • Fixed the missing active class of the first tab
  • Fixed the missing string import

0.1.0 _ March 1, 2017

  • Initial release