mirror of
https://github.com/VincentWei/minigui-docs.git
synced 2025-10-19 11:44:14 +08:00
17 lines
277 B
Awk
17 lines
277 B
Awk
BEGIN { }
|
|
|
|
{
|
|
if (match ($0, /^##### (\w+) ([0-9])(.*)$/, fields) && match ($0, /^!\[/) == 0) {
|
|
type = fields[1]
|
|
number = fields[2]
|
|
title = fields[3]
|
|
|
|
line = "__" type " " number "__" title
|
|
}
|
|
else
|
|
line = $0
|
|
|
|
print line
|
|
}
|
|
|