Set the name of the Nav attribute to select
authorNoah Campbell <noahcampbell@gmail.com>
Tue, 1 Oct 2013 19:51:00 +0000 (12:51 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Tue, 8 Oct 2013 16:37:49 +0000 (18:37 +0200)
transform/nav.go
transform/nav_test.go

index c3dfe7900ced3c938b87c9ebd03a84e823344490..b085c39a225770ac18074eacf403b708ee1b316b 100644 (file)
@@ -8,6 +8,7 @@ import (
 
 type NavActive struct {
        Section string
+       AttrName string
 }
 
 func (n *NavActive) Apply(r io.Reader, w io.Writer) (err error) {
@@ -22,7 +23,11 @@ func (n *NavActive) Apply(r io.Reader, w io.Writer) (err error) {
                return
        }
 
-       tr.Apply(htmltran.ModifyAttrib("class", "active"), fmt.Sprintf("li[data-nav=%s]", n.Section))
+       if n.AttrName == "" {
+               n.AttrName = "hugo-nav"
+       }
+
+       tr.Apply(htmltran.ModifyAttrib("class", "active"), fmt.Sprintf("li[%s=%s]", n.AttrName, n.Section))
 
        return tr.Render(w)
 }
index 997fe33f6f21822f20f1e6eb38d9268843e865f3..78e00f7df01eb287c4141fa77bf569816182f750 100644 (file)
@@ -12,8 +12,8 @@ const HTML_WITH_NAV = `<!DOCTYPE html>
 <body>
 <nav>
        <ul class="nav navbar-nav">
-               <li data-nav="section_1"><a href="#">Section 1</a></li>
-               <li data-nav="section_2"><a href="#">Section 2</a></li>
+               <li hugo-nav="section_1"><a href="#">Section 1</a></li>
+               <li hugo-nav="section_2"><a href="#">Section 2</a></li>
        </ul>
 </nav>
 </body>
@@ -23,8 +23,8 @@ const EXPECTED_HTML_WITH_NAV_1 = `<!DOCTYPE html><html><head></head>
 <body>
 <nav>
        <ul class="nav navbar-nav">
-               <li data-nav="section_1"><a href="#">Section 1</a></li>
-               <li data-nav="section_2" class="active"><a href="#">Section 2</a></li>
+               <li hugo-nav="section_1"><a href="#">Section 1</a></li>
+               <li hugo-nav="section_2" class="active"><a href="#">Section 2</a></li>
        </ul>
 </nav>