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
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
I initially commented on #1170 (comment) and this is also related to #321, but I felt this might be better tracked as a separate issue since 321 is closed and what I've found (described below) isn't directly related to 1170.
If I have my footer.md as
# Best Practices## Additional Information
Then the code gets rendered as:
<divid="sidenav" class="span2"><navid="scrollingNav"><divclass="sidenav-search"><inputclass="form-control search" data-action="filter-search" type="text" placeholder="Filter..."><spanclass="search-reset">x</span></div><ulclass="sidenav nav nav-list list"><liclass="nav-fixed nav-header navbar-btn nav-list-item" data-group="_header"><ahref="#api-_header" data-name="show-api-_header" class="show-api api-_header-init">Introduction</a></li><liclass="nav-header nav-list-item" data-group="ConvertTo"><ahref="#api-ConvertTo" data-group="show-api-ConvertTo" class="show-group api-ConvertTo-init">ConvertTo</a></li><!-- Removed most li elements --><liclass="nav-fixed nav-header navbar-btn nav-list-item active" data-group="_footer"><ahref="#api-_footer" data-name="show-api-_footer" class="show-api api-_footer-init">Best Practices</a></li></ul></nav></div>
But when I change my footer.md to be:
# Best Practices## <spanid="api-_footer-additional-information">Additional Information</span>
To try and get
It gets rendered as:
<divid="sidenav" class="span2"><navid="scrollingNav"><divclass="sidenav-search"><inputclass="form-control search" data-action="filter-search" type="text" placeholder="Filter..."><spanclass="search-reset">x</span></div><ulclass="sidenav nav nav-list list"><liclass="nav-fixed nav-header navbar-btn nav-list-item" data-group="_header"><ahref="#api-_header" data-name="show-api-_header" class="show-api api-_header-init">Introduction</a></li><liclass="nav-header nav-list-item" data-group="ConvertTo"><ahref="#api-ConvertTo" data-group="show-api-ConvertTo" class="show-group api-ConvertTo-init">ConvertTo</a></li><!-- Removed most li elements --><liclass="nav-fixed nav-header navbar-btn nav-list-item active" data-group="_footer"><ahref="#api-_footer" data-name="show-api-_footer" class="show-api api-_footer-init">Best Practices</a></li><!-- New li element appears, but has the class 'hide'. If I manually remove that class in the browser dev tools, it appears --><liclass="hide" data-group="_footer" data-name="additional-information" data-version="1.0"><ahref="#api-_footer-additional-information" title="" data-group="show-api-_footer" data-name="show-api-_footer-additional-information" class="nav-list-item show-api api-_footer-additional-information-init">Additional Information<divclass="nav-list-url-item hide"></div></a></li></ul></nav></div>
In that HTML code snippet, I added a comment above the new <li> element that was added because of the <span>. I just need to know how to get rid of the class="hide" attribute on that last element. Manually removing it using the browser dev tools enables the features I'm after.
The text was updated successfully, but these errors were encountered:
I initially commented on #1170 (comment) and this is also related to #321, but I felt this might be better tracked as a separate issue since 321 is closed and what I've found (described below) isn't directly related to 1170.
If I have my
footer.md
asThen the code gets rendered as:
But when I change my
footer.md
to be:To try and get
It gets rendered as:
In that HTML code snippet, I added a comment above the new <li> element that was added because of the <span>. I just need to know how to get rid of the
class="hide"
attribute on that last element. Manually removing it using the browser dev tools enables the features I'm after.The text was updated successfully, but these errors were encountered: