You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
thanks again for this wonderful hugo theme (and it has become actually quite more), and also for maintaining and updating it. I really appreciate all the hard work that you have put into this documentation theme.
Just encountered a minor bug after upgrading to Doks 1.8.0 (or is thulite now?):
I am using the shortcode <tabs> and <tab name="xx"> in my markdown.
Works fine so far, but after updating (and perhaps it was there before as well) I saw this console exception was thrown:
It was only thrown after clicking on the tab itself (so changing the active tab). I am using the latest Edge browser.
After removing the space in the names, the error disappeared. I guess that Chromium now complains if spaces are used in Ids.
In this case , the tabs.html shortcode contains this: data-toggle-tab="{{ $tab.Name }}" which is the root cause of the error (if the name contains spaces).
So, for the next version, could you strip off the spaces of the name when using them as Id's in the shortcode? I am not quite sure how this is translated into the hugo syntax, just assuming a function like this exists, and that it will be a quick fix?
Thanks again for your support,
Andreas
The text was updated successfully, but these errors were encountered:
Hi,
thanks again for this wonderful hugo theme (and it has become actually quite more), and also for maintaining and updating it. I really appreciate all the hard work that you have put into this documentation theme.
Just encountered a minor bug after upgrading to Doks 1.8.0 (or is thulite now?):
I am using the shortcode
<tabs>
and<tab name="xx">
in my markdown.Works fine so far, but after updating (and perhaps it was there before as well) I saw this console exception was thrown:
Here is the code for the tabs:
It was only thrown after clicking on the tab itself (so changing the active tab). I am using the latest Edge browser.
After removing the space in the names, the error disappeared. I guess that Chromium now complains if spaces are used in Ids.
In this case , the
tabs.html
shortcode contains this:data-toggle-tab="{{ $tab.Name }}"
which is the root cause of the error (if the name contains spaces).So, for the next version, could you strip off the spaces of the name when using them as Id's in the shortcode? I am not quite sure how this is translated into the hugo syntax, just assuming a function like this exists, and that it will be a quick fix?
Thanks again for your support,
Andreas
The text was updated successfully, but these errors were encountered: