Skip to content

Commit 042810a

Browse files
committed
A few more blockquotes found
1 parent 329bf65 commit 042810a

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

book/aliases.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,16 @@ displaying all listed files and folders in a grid.
6262

6363
## Replacing Existing Commands Using Aliases
6464

65-
> Caution! When replacing commands it is best to "back up" the command first and avoid recursion error.
65+
::: warning Caution!
66+
When replacing commands it is best to "back up" the command first and avoid recursion error.
67+
:::
6668

6769
How to back up a command like `ls`:
70+
6871
```nu
6972
alias core-ls = ls # This will create a new alias core-ls for ls
7073
```
74+
7175
Now you can use `core-ls` as `ls` in your nu-programming. You will see further down how to use `core-ls`.
7276

7377
The reason you need to use alias is because, unlike `def`, aliases are position-dependent. So, you need to "back up" the old command first with an alias, before re-defining it.

book/custom_completions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,11 @@ External completers can also be integrated, instead of relying solely on Nushell
165165
For this, set the `external_completer` field in `config.nu` to a [closure](types_of_data.md#closures) which will be evaluated if no Nushell completions were found.
166166

167167
```nu
168-
> $env.config.completions.external = {
169-
> enable: true
170-
> max_results: 100
171-
> completer: $completer
172-
> }
168+
$env.config.completions.external = {
169+
enable: true
170+
max_results: 100
171+
completer: $completer
172+
}
173173
```
174174

175175
You can configure the closure to run an external completer, such as [carapace](https://github.com/rsteube/carapace-bin).

book/dataframes.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ Pandas](https://pandas.pydata.org/) commands. For the time being don't pay too
3737
much attention to the [`Dataframe` commands](/commands/categories/dataframe.md). They will be explained in later
3838
sections of this page.
3939

40-
> System Details: The benchmarks presented in this section were run using a
41-
> Macbook with a processor M1 pro and 32gb of ram
42-
>
43-
> All examples were run on Nushell version 0.97 using `nu_plugin_polars 0.97`
40+
::: tip System Details
41+
The benchmarks presented in this section were run using a Macbook with a processor M1 pro and 32gb of ram. All examples were run on Nushell version 0.97 using `nu_plugin_polars 0.97`.
42+
:::
4443

4544
### File Information
4645

0 commit comments

Comments
 (0)