From 8fbadc12cd29d4e44b5bd686010b48ed80776c96 Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Sat, 11 Nov 2023 15:34:08 +0100 Subject: [PATCH] add a few fixes for the release note of 0.86.0 (#1115) * remove the useless note * use real Nushell code blocks * remove paths to personal directories --- blog/2023-10-17-nushell_0_86.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/blog/2023-10-17-nushell_0_86.md b/blog/2023-10-17-nushell_0_86.md index d3ffa27f224..bde80eca296 100644 --- a/blog/2023-10-17-nushell_0_86.md +++ b/blog/2023-10-17-nushell_0_86.md @@ -176,11 +176,6 @@ compiled artifact. ![Animation showing shorthand directory expansion](../assets/images/0_86_completions.gif) -> :bulb: **Note** -> please have a look at -> [this comment on GitHub](https://github.com/nushell/nushell/issues/10543#issuecomment-1740451687) -> for a preview of this feature. - ::: warning Breaking change See a full overview of the [breaking changes](#breaking-changes) ::: @@ -478,14 +473,14 @@ In 0.86, we now differentiate between a switch `--x` and a flag with a boolean a ## Before -``` -G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str camel-case +```nushell +> [UserID ABCdefGHI foo123bar] | str camel-case ╭───┬───────────╮ │ 0 │ userID │ │ 1 │ abcdefGHI │ │ 2 │ foo123Bar │ ╰───┴───────────╯ -G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case +> [UserID ABCdefGHI foo123bar] | str snake-case ╭───┬─────────────╮ │ 0 │ user_id │ │ 1 │ ab_cdef_ghi │ @@ -495,14 +490,14 @@ G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case ## After -``` -G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str camel-case +```nushell +> [UserID ABCdefGHI foo123bar] | str camel-case ╭───┬───────────╮ │ 0 │ userId │ │ 1 │ abCdefGhi │ │ 2 │ foo123bar │ ╰───┴───────────╯ -G:/Dev/nu-itself/nushell> [UserID ABCdefGHI foo123bar] | str snake-case +> [UserID ABCdefGHI foo123bar] | str snake-case ╭───┬─────────────╮ │ 0 │ user_id │ │ 1 │ ab_cdef_ghi │