-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make all pages accessible without going through the navigation menu (#…
…131) On many browsers, if the window is too small the navigation menus at the top and on the left just don't display. Instead, there is just a single button in the top-left corner which is easy to miss. Hence, all pages should be accessible without going through the generated navigation menu. This PR adds more links on the front page and creates top-level pages with links for "How-to guides", "Reference" and "Tutorials".
- Loading branch information
Showing
6 changed files
with
119 additions
and
13 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
icon: material/label-outline | ||
comments: false | ||
search: | ||
boost: 4 | ||
hide: | ||
- toc | ||
--- | ||
|
||
- [Installing Juvix](./installing.md) | ||
- [Compiling programs](./compilation.md) | ||
- [Setting up a project](./project.md) | ||
- [Contributing](./contributing.md) | ||
- [Judoc documentation tool](./judoc.md) |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
icon: material/label-outline | ||
comments: false | ||
search: | ||
boost: 4 | ||
hide: | ||
- toc | ||
--- | ||
|
||
## Language reference | ||
|
||
- [Functions](./language/functions.html) | ||
- [Builtins](./language/builtins.html) | ||
- [Data types](./language/datatypes.html) | ||
- [Records](./language/records.html) | ||
- [Traits](./language/traits.html) | ||
- [Modules](./language/modules.md) | ||
- [Local definitions](./language/lets.html) | ||
- [Control structures](./language/control.html) | ||
- [Comments](./language/comments.md) | ||
- [Pragmas](./language/pragmas.html) | ||
- [Axioms](./language/axioms.html) | ||
|
||
### Syntax extensions | ||
|
||
- [Aliases](./language/aliases.html) | ||
- [Iterators](./language/iterators.md) | ||
- [Fixities](./language/fixity.html) | ||
- [Operators](./language/operators.html) | ||
|
||
### Libraries and projects | ||
|
||
- [Standard library](./stdlib.md) | ||
- [Example programs](./examples.md) | ||
|
||
## Tooling | ||
|
||
- [Documentation tool](./judoc.md) | ||
- [Command line interface](./tooling/CLI.md) | ||
- [Doctor](./tooling/doctor.md) | ||
- [Emacs mode](./tooling/emacs.md) | ||
- [Haskell test suite](./tooling/testing.md) | ||
|
||
## Compiler implementation | ||
|
||
- [Compiler pipeline](./compiler.md) |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
icon: material/label-outline | ||
comments: false | ||
search: | ||
boost: 4 | ||
hide: | ||
- toc | ||
--- | ||
|
||
- [Functional programming with Juvix](./learn.html) | ||
- [Juvix VSCode extension](./vscode.html) | ||
- [Juvix Emacs mode](./emacs.html) |
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