Skip to content

Commit

Permalink
Updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Yomguithereal committed Feb 20, 2024
0 parents commit bcf7478
Show file tree
Hide file tree
Showing 44 changed files with 7,654 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
Gemfile.lock
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source 'https://rubygems.org'

gem "jekyll"
gem "just-the-docs"
7 changes: 7 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: Graphology
remote_theme: pmarsceill/just-the-docs
color_scheme: 'light'
search_enabled: false
aux_links:
GitHub Repository: https://github.com/graphology/graphology
aux_links_new_tab: false
173 changes: 173 additions & 0 deletions _includes/nav.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
<ul class="nav-list">
{%- assign titled_pages = include.pages | where_exp:"item", "item.title !=
nil" -%} {%- comment -%} The values of `title` and `nav_order` can be numbers
or strings. Jekyll gives build failures when sorting on mixtures of different
types, so numbers and strings need to be sorted separately. Here, numbers are
sorted by their values, and come before all strings. An omitted `nav_order`
value is equivalent to the page's `title` value (except that a numerical
`title` value is treated as a string). The case-sensitivity of string sorting
is determined by `site.nav_sort`. {%- endcomment -%} {%- assign
string_ordered_pages = titled_pages | where_exp:"item", "item.nav_order ==
nil" -%} {%- assign nav_ordered_pages = titled_pages | where_exp:"item",
"item.nav_order != nil" -%} {%- comment -%} The nav_ordered_pages have to be
added to number_ordered_pages and string_ordered_pages, depending on the
nav_order value. The first character of the jsonify result is `"` only for
strings. {%- endcomment -%} {%- assign nav_ordered_groups = nav_ordered_pages
| group_by_exp:"item", "item.nav_order | jsonify | slice: 0" -%} {%- assign
number_ordered_pages = "" | split:"X" -%} {%- for group in nav_ordered_groups
-%} {%- if group.name == '"' -%} {%- assign string_ordered_pages =
string_ordered_pages | concat: group.items -%} {%- else -%} {%- assign
number_ordered_pages = number_ordered_pages | concat: group.items -%} {%-
endif -%} {%- endfor -%} {%- assign sorted_number_ordered_pages =
number_ordered_pages | sort:"nav_order" -%} {%- comment -%} The
string_ordered_pages have to be sorted by nav_order, and otherwise title
(where appending the empty string to a numeric title converts it to a string).
After grouping them by those values, the groups are sorted, then the items of
each group are concatenated. {%- endcomment -%} {%- assign
string_ordered_groups = string_ordered_pages | group_by_exp:"item",
"item.nav_order | default: item.title | append:''" -%} {%- if site.nav_sort ==
'case_insensitive' -%} {%- assign sorted_string_ordered_groups =
string_ordered_groups | sort_natural:"name" -%} {%- else -%} {%- assign
sorted_string_ordered_groups = string_ordered_groups | sort:"name" -%} {%-
endif -%} {%- assign sorted_string_ordered_pages = "" | split:"X" -%} {%- for
group in sorted_string_ordered_groups -%} {%- assign
sorted_string_ordered_pages = sorted_string_ordered_pages | concat:
group.items -%} {%- endfor -%} {%- assign pages_list =
sorted_number_ordered_pages | concat: sorted_string_ordered_pages -%} {%- for
node in pages_list -%} {%- if node.parent == nil -%} {%- unless
node.nav_exclude -%}
<li
class="
nav-list-item{%
if
page.url
==
node.url
or
page.parent
==
node.title
or
page.grand_parent
==
node.title
%}
active{%
endif
%}
">
{%- if node.has_children -%}
<a href="#" class="nav-list-expander"
><svg viewBox="0 0 24 24"><use xlink:href="#svg-arrow-right"></use></svg
></a>
{%- endif -%}
<a
href="{{ node.url | absolute_url }}"
class="nav-list-link{% if page.url == node.url %} active{% endif %}"
>{{ node.title }}</a
>
{%- if node.has_children -%} {%- assign children_list = pages_list | where:
"parent", node.title -%}
<ul class="nav-list">
{%- for child in children_list -%} {%- unless child.nav_exclude -%}
<li
class="
nav-list-item
{%
if
page.url
==
child.url
or
page.parent
==
child.title
%}
active{%
endif
%}
">
{%- if child.has_children -%}
<a href="#" class="nav-list-expander"
><svg viewBox="0 0 24 24">
<use xlink:href="#svg-arrow-right"></use></svg
></a>
{%- endif -%}
<a
href="{{ child.url | absolute_url }}"
class="nav-list-link{% if page.url == child.url %} active{% endif %}"
>{{ child.title }}</a
>
{%- if child.has_children -%} {%- assign grand_children_list =
pages_list | where: "parent", child.title | where: "grand_parent",
node.title -%}
<ul class="nav-list">
{%- for grand_child in grand_children_list -%} {%- unless
grand_child.nav_exclude -%}
<li
class="
nav-list-item
{%
if
page.url
==
grand_child.url
%}
active{%
endif
%}
">
<a
href="{{ grand_child.url | absolute_url }}"
class="
nav-list-link{%
if
page.url
==
grand_child.url
%}
active{%
endif
%}
"
>{{ grand_child.title }}</a
>
</li>
{%- endunless -%} {%- endfor -%}
</ul>
{%- endif -%}
</li>
{%- endunless -%} {%- endfor -%}
</ul>
{%- endif -%} {%- if node.menu_toc -%}
<ul class="nav-list anchored">
{%- for child in node.menu_toc -%} {%- assign anchored_url = child |
slugify | prepend: "#" | prepend: node.url | absolute_url -%}
<li class="nav-list-item">
<a href="{{ anchored_url }}" class="nav-list-link">{{ child }}</a>
</li>
{%- endfor -%}
</ul>
{%- endif -%} {%- if node.detailed_menu_toc -%}
<ul class="nav-list anchored">
{%- for child in node.detailed_menu_toc -%} {%- assign anchored_url =
child.label | slugify | prepend: "#" | prepend: node.url | absolute_url
-%} {%- if child.id -%}{%- assign anchored_url = child.id | prepend: "#" |
prepend: node.url | absolute_url -%} {%- endif -%}
<li class="{%- unless child.subtitle -%}nav-list-item{%- endunless -%}">
<a href="{{ anchored_url }}" class="nav-list-link">{{ child.label }}</a>
</li>
{%- endfor -%}
</ul>
{%- endif -%}
</li>
{%- endunless -%} {%- endif -%} {%- endfor -%}
</ul>
<script>
var nav = document.getElementById('site-nav');
var activeItem = document.querySelector('.nav-list > .nav-list-item.active');

if (activeItem) {
nav.scrollTo(0, activeItem.offsetTop - 60);
}
</script>
Loading

0 comments on commit bcf7478

Please sign in to comment.