You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
412 B
15 lines
412 B
10 years ago
|
module Jekyll
|
||
|
module SidebarItemFilter
|
||
|
def sidebar_item_link(item)
|
||
|
pageID = @context.registers[:page]["id"]
|
||
|
itemID = item["id"]
|
||
|
href = item["href"] || "/react/docs/#{itemID}.html"
|
||
|
className = pageID == itemID ? ' class="active"' : ''
|
||
|
|
||
|
return "<a href=\"#{href}\"#{className}>#{item["title"]}</a>"
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Liquid::Template.register_filter(Jekyll::SidebarItemFilter)
|