pskordilakis / vuepress-plugin-tabs

Vuepress plugin - markdown custom container to display content in tabs
MIT License
59 stars 2 forks source link

The ref attribute gets removed #8

Open GijsGoudzwaard opened 5 years ago

GijsGoudzwaard commented 5 years ago

When I use the tabs example from the readme and add ref="tabs" to the tabs container, it gets removed when I load the page.

:::: tabs ref="tabs"

::: tab title
__markdown content__
:::

::: tab javascript
``` javascript
() => {
  console.log('Javascript code example')
}
```
:::

::::