diff --git a/scripts/format_typst.ps1 b/scripts/format_typst.ps1 new file mode 100644 index 0000000..6976b59 --- /dev/null +++ b/scripts/format_typst.ps1 @@ -0,0 +1,5 @@ +# requires typstyle to be installed +# cargo install typstyle + +# get all *.typ files and format them +Get-ChildItem -Path $PSScriptRoot/../*.typ -Recurse | ForEach-Object { typstyle -i $_.FullName } \ No newline at end of file