mirror of
https://github.com/lleene/hugo-site.git
synced 2025-01-23 12:02:22 +01:00
16 lines
136 B
Awk
16 lines
136 B
Awk
|
#!/bin/awk
|
||
|
BEGIN{style_flag=0}
|
||
|
|
||
|
/<style>/{
|
||
|
style_flag=1
|
||
|
}
|
||
|
|
||
|
//{
|
||
|
if(style_flag == 0) print $0
|
||
|
}
|
||
|
|
||
|
/<\/style>/{
|
||
|
style_flag=0
|
||
|
print f1
|
||
|
}
|