[
https://issues.apache.org/jira/browse/GEODE-7033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16898205#comment-16898205
]
ASF subversion and git services commented on GEODE-7033:
--------------------------------------------------------
Commit c349e981934eca9f7f677c026cbeec0ca01cf21f in geode's branch
refs/heads/develop from Joey McAllister
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=c349e98 ]
Merge pull request #3874 from Nordix/feature/GEODE-7033
GEODE-7033: User Guide - Balance lists in left-hand nav panel
> User Guide - Balance lists in left-hand nav panel
> -------------------------------------------------
>
> Key: GEODE-7033
> URL: https://issues.apache.org/jira/browse/GEODE-7033
> Project: Geode
> Issue Type: Bug
> Components: docs
> Reporter: Dave Barnes
> Assignee: Alberto Bustamante Reyes
> Priority: Minor
> Labels: pull-request-available
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> In the source file for the left-hand navigation panel
> (geode-book/master_middleman/source/subnavs/geode-subnav.erb, the <li> tags
> outnumber the </li> tags 709 to 702. Not sure if this manifests as a visible
> error, but it's error-prone for maintenance going forward. Number of opening
> tags should match the number of closing tags, as with the pairs "<div>
> </div>" and "<ul> </ul>".
> ```
> 64:subnavs$ grep "<div" geode-subnav.erb | wc -l
> 2
> 65:subnavs$ grep "</div" geode-subnav.erb | wc -l
> 2
> 66:subnavs$ grep "<ul" geode-subnav.erb | wc -l
> 125
> 67:subnavs$ grep "</ul" geode-subnav.erb | wc -l
> 125
> 68:subnavs$ grep "<li" geode-subnav.erb | wc -l
> 709
> 69:subnavs$ grep "</li" geode-subnav.erb | wc -l
> 702
> ```
>
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)