Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
e4c72b348f | |||
08652832ed |
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
/coverage.out
|
||||
/test/out
|
||||
/mark2web
|
||||
/tmp/
|
@ -55,7 +55,7 @@ func buildNavigationRecursive(tree *TreeNode, curNavMap *map[string]*NavElement,
|
||||
subMap := make(map[string]*NavElement)
|
||||
subSlice := make([]*NavElement, 0)
|
||||
navEl := NavElement{
|
||||
Active: strings.HasPrefix(activeNav, elPath),
|
||||
Active: strings.HasPrefix(activeNav, elPath+"/") || activeNav == elPath,
|
||||
Data: el.Config.Data,
|
||||
ColMap: el.ColMap,
|
||||
SubMap: &subMap,
|
||||
|
@ -37,10 +37,10 @@ graph TD
|
||||
class M,C,D,A in
|
||||
class W out
|
||||
|
||||
click C "../benutzung/konfiguration" "Doku: Benutzung/Konfiguration"
|
||||
click M "../benutzung/inhalte" "Doku: Benutzung/Inhalte"
|
||||
click A "../benutzung/inhalte" "Doku: Benutzung/Inhalte"
|
||||
click D "../benutzung/templates" "Doku: Benutzung/Templates"
|
||||
click C "../dokumentation/konfiguration" "Doku: Konfiguration"
|
||||
click M "../dokumentation/inhalte" "Doku: Inhalte"
|
||||
click A "../dokumentation/inhalte" "Doku: Inhalte"
|
||||
click D "../dokumentation/templates" "Doku: Templates"
|
||||
```
|
||||
|
||||
<script defer>
|
||||
|
Loading…
Reference in New Issue
Block a user