Files
modern-cv/scripts/format_typst.ps1
2024-04-05 17:48:54 -07:00

5 lines
196 B
PowerShell

# 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 }