mirror of
https://github.com/VincentWei/minigui-docs.git
synced 2025-10-18 18:02:15 +08:00
12 lines
205 B
Awk
12 lines
205 B
Awk
BEGIN { }
|
|
|
|
{
|
|
if (match ($0, /^<p align=center>List p[0-9]c[0-9]{1,2}-(\w+)(.*)<\/p>$/, fields)) {
|
|
line = "##### List " fields[1] fields[2]
|
|
print line
|
|
}
|
|
else
|
|
print $0
|
|
}
|
|
|