mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2025-12-06 07:12:04 +01:00
14 lines
387 B
PowerShell
14 lines
387 B
PowerShell
[cmdletbinding()]
|
|
param([string]$Path)
|
|
|
|
function FixApiLinks([string]$path)
|
|
{
|
|
$files = Get-ChildItem -Path $path -Recurse -Include *.html
|
|
foreach ($file in $files)
|
|
{
|
|
$content = Get-Content -Path $file
|
|
$newContent = $content -replace "../(android|ios|uwp|netcore|netstd|netfx)/", ''
|
|
$newContent | Set-Content -Path $file
|
|
}
|
|
}
|
|
FixApiLinks -path $Path |