Skip to content

Manually link page next-prev across child borders #1985

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions book/advanced.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: How Nushell Code Gets Run
link: /book/how_nushell_code_gets_run.md
next:
text: Standard Library (Preview)
link: /book/standard_library.md
---
# (Not so) Advanced

While the "Advanced" title might sound daunting and you might be tempted to skip this chapter, in fact, some of the most interesting and powerful features can be found here.
Expand Down
5 changes: 5 additions & 0 deletions book/background_jobs.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Coming to Nu
link: /book/coming_to_nu.md
---
# Background Jobs

Nushell currently has experimental support for thread-based background jobs.
Expand Down
5 changes: 5 additions & 0 deletions book/cheat_sheet.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Nu Fundamentals
link: /book/nu_fundamentals.md
---
# Nushell Cheat Sheet

## Data Types
Expand Down
5 changes: 5 additions & 0 deletions book/coming_from_bash.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: Coming to Nu
link: /book/coming_to_nu.md
---
# Coming from Bash

::: tip
Expand Down
8 changes: 8 additions & 0 deletions book/coming_to_nu.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Background Jobs
link: /book/background_jobs.md
next:
text: Coming from Bash
link: /book/coming_from_bash.md
---
# Coming to Nu

If you are familiar with other shells or programming languages, you might find this chapter useful to get up to speed.
Expand Down
5 changes: 5 additions & 0 deletions book/configuration.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: Nu as a Shell
link: /book/nu_as_a_shell.md
---
# Configuration

## Quickstart
Expand Down
5 changes: 5 additions & 0 deletions book/custom_commands.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: Programming in Nu
link: /book/programming_in_nu.md
---
# Custom Commands

As with any programming language, you'll quickly want to save longer pipelines and expressions so that you can call them again easily when needed.
Expand Down
8 changes: 8 additions & 0 deletions book/design_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Nushell operator map
link: /book/nushell_operator_map.md
next:
text: How Nushell Code Gets Run
link: /book/how_nushell_code_gets_run.md
---
# Design Notes

This chapter intends to give more in-depth overview of certain aspects of Nushell's design. The topics are not necessary for a basic usage, but reading them will help you understand how Nushell works and why.
Expand Down
5 changes: 5 additions & 0 deletions book/getting_started.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Quick Tour
link: /book/quick_tour.md
---
# Getting Started

Let's get started! :elephant:
Expand Down
8 changes: 8 additions & 0 deletions book/how_nushell_code_gets_run.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Design Notes
link: /book/design_notes.md
next:
text: (Not so) Advanced
link: /book/advanced.md
---
# How Nushell Code Gets Run

In [Thinking in Nu](./thinking_in_nu.md#think-of-nushell-as-a-compiled-language), we encouraged you to _"Think of Nushell as a compiled language"_ due to the way in which Nushell code is processed. We also covered several code examples that won't work in Nushell due that process.
Expand Down
8 changes: 8 additions & 0 deletions book/nu_as_a_shell.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Best Practices
link: /book/style_guide.md
next:
text: Configuration
link: /book/configuration.md
---
# Nu as a Shell

The [Nu Fundamentals](nu_fundamentals.md) and [Programming in Nu](programming_in_nu.md) chapter focused mostly on the language aspects of Nushell.
Expand Down
8 changes: 8 additions & 0 deletions book/nu_fundamentals.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Nushell Cheat Sheet
link: cheat_sheet.md
next:
text: Types of Data
link: /book/types_of_data.md
---
# Nu Fundamentals

This chapter explains some of the fundamentals of the Nushell programming language.
Expand Down
5 changes: 5 additions & 0 deletions book/nushell_operator_map.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Design Notes
link: /book/design_notes.md
---
# Nushell operator map

The idea behind this table is to help you understand how Nu operators relate to other language operators. We've tried to produce a map of all the nushell operators and what their equivalents are in other languages. Contributions are welcome.
Expand Down
8 changes: 8 additions & 0 deletions book/programming_in_nu.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
---
prev:
text: Special Variables
link: /book/special_variables.md
next:
text: Custom Commands
link: /book/custom_commands.md
---
# Programming in Nu

This chapter goes into more detail of Nushell as a programming language.
Expand Down
5 changes: 5 additions & 0 deletions book/quick_tour.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: Getting Started
link: /book/getting_started.md
---
# Quick Tour

[[toc]]
Expand Down
5 changes: 5 additions & 0 deletions book/special_variables.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Programming in Nu
link: /book/programming_in_nu.md
---
# Special Variables

Nushell makes available and uses a number of special variables and constants. Many of these are mentioned or documented in other places in this Book, but this page
Expand Down
5 changes: 5 additions & 0 deletions book/standard_library.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: (Not so) Advanced
link: /book/advanced.md
---
# Standard Library (Preview)

Nushell ships with a standard library of useful commands written in native Nu. By default, the standard library is loaded into memory (but not automatically imported) when Nushell starts.
Expand Down
5 changes: 5 additions & 0 deletions book/style_guide.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
next:
text: Nu as a Shell
link: /book/nu_as_a_shell.md
---
# Best Practices

This page is a working document collecting syntax guidelines and best practices we have discovered so far.
Expand Down
5 changes: 5 additions & 0 deletions book/types_of_data.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
prev:
text: Nu Fundamentals
link: /book/nu_fundamentals.md
---
# Types of Data

Traditional Unix shell commands communicate with each other using strings of text -- One command writes text to standard output (often abbreviated `stdout`) and the other reads text from standard input (or `stdin`). This allows multiple commands to be combined together to communicate through what is called a "pipeline".
Expand Down