diff --git a/make_release/this_week_in_nu_release.nu b/make_release/this_week_in_nu_release.nu index fcb9c2f..83dc2c3 100644 --- a/make_release/this_week_in_nu_release.nu +++ b/make_release/this_week_in_nu_release.nu @@ -4,13 +4,12 @@ def do-work [] { let site_table = [ - [site repo - ]; [Nushell nushell - ] [Extension vscode-nushell-lang - ] [Documentation nushell.github.io - ] [Wasm demo - ] [Nu_Scripts nu_scripts - ] [RFCs rfcs] + [site repo]; + [Nushell nushell] + [Extension vscode-nushell-lang] + [Documentation nushell.github.io] + [Wasm demo] + [Nu_Scripts nu_scripts] [RFCs rfcs] # ] [Jupyter jupyter] ] diff --git a/make_release/this_week_in_nu_weekly.nu b/make_release/this_week_in_nu_weekly.nu index 69bc509..10af45e 100644 --- a/make_release/this_week_in_nu_weekly.nu +++ b/make_release/this_week_in_nu_weekly.nu @@ -4,13 +4,13 @@ def do-work [] { let site_table = [ - [site repo - ]; [Nushell nushell - ] [Extension vscode-nushell-lang - ] [Documentation nushell.github.io - ] [Wasm demo - ] [Nu_Scripts nu_scripts - ] [RFCs rfcs] + [site repo]; + [Nushell nushell] + [Extension vscode-nushell-lang] + [Documentation nushell.github.io] + [Wasm demo] + [Nu_Scripts nu_scripts] + [RFCs rfcs] # ] [Jupyter jupyter] ] diff --git a/table_grouping.nu b/table_grouping.nu index 2ab7ac9..ec8148f 100644 --- a/table_grouping.nu +++ b/table_grouping.nu @@ -1,12 +1,12 @@ let table = (echo [ - [url user_login title - ]; [https://api.github.com/repos/nushell/nushell/issues/3382 ammkrn 'Dont unwrap rustyline helper in cli' - ] [https://api.github.com/repos/nushell/nushell/issues/3379 jonathandturner 'Simplify down to one type of context' - ] [https://api.github.com/repos/nushell/nushell/issues/3377 kubouch 'Port range to engine-p' - ] [https://api.github.com/repos/nushell/nushell/issues/3375 fdncred 'added check for endian-ness, added a bytes and skip' - ] [https://api.github.com/repos/nushell/nushell/issues/3374 fdncred 'added ability to change "#" color using header_color' - ] [https://api.github.com/repos/nushell/nushell/issues/3370 fdncred 'add nu-pretty-hex, add into binary, update binaryview' - ] [https://api.github.com/repos/nushell/nushell/issues/3367 fdncred 'tweaked the error handling to show specific errors'] + [url user_login title]; + [https://api.github.com/repos/nushell/nushell/issues/3382 ammkrn 'Dont unwrap rustyline helper in cli'] + [https://api.github.com/repos/nushell/nushell/issues/3379 jonathandturner 'Simplify down to one type of context'] + [https://api.github.com/repos/nushell/nushell/issues/3377 kubouch 'Port range to engine-p'] + [https://api.github.com/repos/nushell/nushell/issues/3375 fdncred 'added check for endian-ness, added a bytes and skip'] + [https://api.github.com/repos/nushell/nushell/issues/3374 fdncred 'added ability to change "] + [https://api.github.com/repos/nushell/nushell/issues/3370 fdncred 'add nu-pretty-hex, add into binary, update binaryview'] + [https://api.github.com/repos/nushell/nushell/issues/3367 fdncred 'tweaked the error handling to show specific errors'] ]) # Show what the table looks like