0.02
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
Separate language snippets with fenced code tabs for documentation pages
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 11.0
~> 3.5
~> 0.52

Runtime

~> 3.0
 Project Readme

jekyll-code-tabs

💎 Separate language snippets with fenced code tabs for documentation pages

Usage

{% codetabs %}

{% codetab C %}
```c
printf("Hello, world!");
```
{% endcodetab %}

{% codetab Go %}
```go
fmt.Println("Hello, world!")
```
{% endcodetab %}

{% codetab Python %}
```python
print("Hello, world!")
```
{% endcodetab %}

{% endcodetabs %}

This will create a tabbed-view (hardcoded to UIkit classes for now) that will allow the user to toggle between content.

alt text