mirror of
https://github.com/VincentWei/minigui-docs.git
synced 2025-10-16 14:36:45 +08:00
15 lines
249 B
Awk
15 lines
249 B
Awk
BEGIN { }
|
|
|
|
{
|
|
if (match ($0, /^<img /)) {
|
|
for (i = 2; i <= NF; i++) {
|
|
if (match ($i, /^(alt)="(.+)"/, fields)) {
|
|
print ""
|
|
}
|
|
}
|
|
}
|
|
else
|
|
print $0
|
|
}
|
|
|