-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
417d277
commit f1b4c9b
Showing
4 changed files
with
73 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
<nav class="menu" aria-labelledby="topics-header"> | ||
<h2 class="title is-5" id="topics-header">Manual topics</h2> | ||
<ul class="menu-list"> | ||
<li *ngFor="let page of manifest | async"> | ||
<a [routerLink]="['/manual', page.id]" | ||
routerLinkActive="is-active" | ||
ariaCurrentWhenActive="page"> | ||
{{page.title}} | ||
</a> | ||
</li> | ||
</ul> | ||
<ng-container *ngFor="let section of (manifest | async)"> | ||
<h3 class="menu-label">{{section.title}}</h3> | ||
<ul class="menu-list"> | ||
<li *ngFor="let page of section.pages"> | ||
<a [routerLink]="['/manual', page.id]" | ||
routerLinkActive="is-active" | ||
ariaCurrentWhenActive="page"> | ||
{{page.title}} | ||
</a> | ||
</li> | ||
</ul> | ||
</ng-container> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,56 @@ | ||
[ | ||
{ | ||
"id": "main", | ||
"title": "I-Analyzer User Manual" | ||
}, | ||
{ "id": "privacy", | ||
"title": "Terms of use and privacy" | ||
}, | ||
{ | ||
"id": "query", | ||
"title": "Search Query" | ||
}, | ||
{ "id": "numberofresults", | ||
"title": "Number of results visualisation" | ||
}, | ||
{ "id": "termfrequency", | ||
"title": "Search term frequency visualisation" | ||
}, | ||
{ "id": "wordcloud", | ||
"title": "Word cloud visualisation" | ||
}, | ||
{ "id": "ngrams", | ||
"title": "Common n-grams visualisation" | ||
}, | ||
{ | ||
"id": "relatedwords", | ||
"title": "Related words visualisation" | ||
}, | ||
{ | ||
"id": "comparesimilarity", | ||
"title": "Compare similarity visualisation" | ||
"title": "Using I-analyzer", | ||
"pages": [ | ||
{ | ||
"id": "main", | ||
"title": "I-Analyzer user manual" | ||
}, | ||
{ "id": "privacy", | ||
"title": "Terms of use and privacy" | ||
}, | ||
{ | ||
"id": "query", | ||
"title": "Search query" | ||
}, | ||
{ | ||
"id": "download", | ||
"title": "Downloading data" | ||
}, | ||
{ | ||
"id": "citation", | ||
"title": "Citing I-analyzer" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "download", | ||
"title": "Downloading data" | ||
"title": "Visualising documents", | ||
"pages": [ | ||
{ "id": "numberofresults", | ||
"title": "Number of results" | ||
}, | ||
{ "id": "termfrequency", | ||
"title": "Frequency of the search term" | ||
}, | ||
{ "id": "wordcloud", | ||
"title": "Most frequent words" | ||
}, | ||
{ "id": "ngrams", | ||
"title": "Neighbouring words" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "citation", | ||
"title": "Citing I-analyzer" | ||
"title": "Word models", | ||
"pages": [ | ||
{ | ||
"id": "relatedwords", | ||
"title": "Related words" | ||
}, | ||
{ | ||
"id": "comparesimilarity", | ||
"title": "Compare similarity" | ||
} | ||
] | ||
} | ||
] |