forked from nushell/nu_scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_readme_table.nu
32 lines (28 loc) · 1.44 KB
/
make_readme_table.nu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# A Script to try and create the table for the readme.md file
# | Category | File |
# | ---------------- | ----------------------------------------------------------------------------- |
# | coloring | [24bit-1.nu](./coloring\24bit-1.nu) |
# | coloring | [color_table.nu](./coloring\color_table.nu) |
# | coloring | [color_tables.nu](./coloring\color_tables.nu) |
# | coloring | [gradient.nu](./coloring\gradient.nu) |
# Right now there is still manual manipulation in order to update the README.md
# Hopefully, in the future someone will contribute a script to make this automatic.
let nu_files = (ls **/*.nu)
let nu_table = ($nu_files |
get name |
wrap File |
insert Category { |it|
let cat = ($it.File | path dirname)
if $cat == "" {
"not assigned yet"
} else {
$cat
}
} | where Category !~ ".git" | select Category File | sort-by Category)
# Let's fix the file now
let nu_table = ($nu_table | update File { |it|
let file_path = ($it.File | into string | str replace '\' '/' --all)
let file_name = ($file_path | path basename)
$"[($file_name)](char lparen)./($file_path)(char rparen)"
})
echo $nu_table | to md --pretty